/* ============================================================
   GAVIN HAMMOND PIANO LESSONS — style.css
   Deep navy + warm gold. Playfair Display + Inter.
   Mobile-first. No frameworks.
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --navy:       #080808;
  --navy-light: #141414;
  --navy-card:  #1C1C1C;
  --gold:       #C9A84C;
  --gold-light: #E2C06A;
  --gold-dim:   rgba(201, 168, 76, 0.15);
  --white:      #FFFFFF;
  --white-dim:  rgba(255, 255, 255, 0.72);
  --white-faint:rgba(255, 255, 255, 0.10);
  --body-bg:    #FFFFFF;
  --text-dark:  #0D0D0D;
  --text-mid:   #555555;

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-gold:0 4px 24px rgba(201, 168, 76, 0.25);

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans:      0.3s var(--ease);

  --section-gap: 5rem;
  --container:   1160px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: inline; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--gold-dim);
  transform: translateY(-1px);
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* ---- Section Scaffolding ---- */
.section { padding-block: var(--section-gap); }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section__header { margin-bottom: 3rem; }
.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section__heading {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section--dark .section__heading { color: var(--white); }
.section__heading::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--gold);
  margin-top: 0.85rem;
}
.text-center .section__heading::after { margin-inline: auto; }
.section__subheading {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-inline: auto;
}
.section--dark .section__subheading { color: var(--white-dim); }

/* ---- Scroll Reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal-delay="75"]  { transition-delay: 75ms; }
[data-reveal-delay="100"] { transition-delay: 100ms; }
[data-reveal-delay="150"] { transition-delay: 150ms; }
[data-reveal-delay="200"] { transition-delay: 200ms; }
[data-reveal-delay="225"] { transition-delay: 225ms; }
[data-reveal-delay="300"] { transition-delay: 300ms; }
[data-reveal-delay="375"] { transition-delay: 375ms; }
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.25rem;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
  background: transparent;
}
.nav--scrolled {
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-block: 0.85rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav__logo-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__links {
  display: none;
  gap: 0.25rem;
  margin-left: auto;
}
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  transition: color var(--trans), background var(--trans);
}
.nav__link:hover, .nav__link:focus-visible {
  color: var(--gold);
  background: var(--gold-dim);
}
.nav__cta { margin-left: 0.5rem; padding: 0.55rem 1.25rem; font-size: 0.82rem; }
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav open */
.nav__links.nav__links--open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 99;
}
.nav__links.nav__links--open .nav__link {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

@media (min-width: 900px) {
  .nav__hamburger { display: none; }
  .nav__links { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

/* Hero background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Dark overlay so text stays readable */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 14, 26, 0.72) 0%,
    rgba(10, 14, 26, 0.58) 50%,
    rgba(10, 14, 26, 0.85) 100%
  );
}

/* Gold glow on top of photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative piano keys at bottom */
.hero__keys {
  position: absolute;
  bottom: 0;
  z-index: 2;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 120px;
  opacity: 0.07;
  pointer-events: none;
}
.piano-keys {
  display: flex;
  height: 120px;
  width: 100%;
  justify-content: center;
}
.key {
  position: relative;
  flex-shrink: 0;
}
.key.white {
  width: 52px;
  height: 120px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-top: none;
  border-radius: 0 0 4px 4px;
  z-index: 1;
}
.key.black {
  width: 32px;
  height: 72px;
  background: #111;
  border-radius: 0 0 3px 3px;
  margin-inline: -16px;
  z-index: 2;
  position: relative;
  top: 0;
  align-self: flex-start;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.hero__logo {
  margin-bottom: 1.5rem;
}
.hero__logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-inline: auto;
  border: 2px solid var(--gold);
  box-shadow: 0 0 32px rgba(201, 168, 76, 0.3);
}
.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__heading em {
  font-style: italic;
  color: var(--gold);
}
.hero__subheading {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-inline: auto;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 5.5rem;
  z-index: 2;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@media (max-width: 600px) { .hero__scroll-hint { display: none; } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gold);
  padding-block: 1.1rem;
}
.stats-bar__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0;
}
.stats-bar__item {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-align: center;
  padding-inline: 1.25rem;
}
.stats-bar__item strong {
  font-weight: 700;
  font-size: 0.88rem;
}
.stats-bar__divider {
  width: 1px;
  height: 1.1rem;
  background: rgba(10, 14, 26, 0.25);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-bar__divider { display: none; }
  .stats-bar__item { padding-block: 0.25rem; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: center;
  }
}
.about__photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 320px;
  margin-inline: auto;
}
.about__photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-dim);
  overflow: hidden;
}
.about__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s var(--ease);
}
.about__photo-placeholder:hover img { transform: scale(1.03); }
.about__photo-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about__award {
  margin-top: 2.75rem;
  display: flex;
  justify-content: center;
}
.about__award img {
  width: 110px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  filter: grayscale(1) contrast(1.1);
}
.about__tagline {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.about__bio {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about__quote {
  margin-block: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 168, 76, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about__quote p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.about__quote cite {
  font-size: 0.82rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ============================================================
   STYLES GRID
   ============================================================ */
.styles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .styles__grid { grid-template-columns: repeat(3, 1fr); } }
.style-card {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.style-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.1);
}
.style-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.style-card__icon svg { width: 100%; height: 100%; }
.style-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.style-card__desc {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ============================================================
   LESSON CARDS
   ============================================================ */
.lessons__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .lessons__grid { grid-template-columns: repeat(3, 1fr); } }
.lesson-card {
  position: relative;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
}
.lesson-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lesson-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.lesson-card__badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.lesson-card__level {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.lesson-card__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.lesson-card__desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.lesson-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  margin-top: 0.25rem;
}
.lesson-card__features li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}
.lesson-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.lessons__note {
  margin-top: 2.5rem;
  font-size: 0.92rem;
  color: var(--text-mid);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--trans);
}
.testimonial-card:hover { border-color: rgba(201, 168, 76, 0.4); }
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-card__quote {
  flex: 1;
}
.testimonial-card__quote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white-dim);
  font-style: italic;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__name {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial-card__source {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.8;
  letter-spacing: 0.05em;
}
.testimonials__badge {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}
.testimonials__badge img {
  width: 90px;
  height: auto;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 4px 12px rgba(201, 168, 76, 0.3));
}
.testimonials__cta { margin-top: 1rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}
@media (min-width: 768px) { .pricing__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.pricing-card {
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
}
.pricing-card:first-child {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.pricing-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pricing-card__price {
  margin-bottom: 1.75rem;
}
.pricing-card__amount {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.pricing-card__amount--contact {
  font-size: 2.2rem;
  line-height: 1.15;
  color: var(--gold);
}
.pricing-card__unit {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-left: 0.25rem;
}
.pricing-card__features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-card__features li {
  font-size: 0.93rem;
  color: var(--text-mid);
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.pricing-card__guarantee {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-style: italic;
}
.pricing-card--info { background: var(--navy-light); border-color: rgba(201,168,76,0.15); }
.pricing-card__info-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.pricing-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.pricing-feature__icon {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.pricing-feature strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}
.pricing-feature p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__container { max-width: 760px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.faq-item:first-of-type { border-top: 1px solid rgba(201, 168, 76, 0.12); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--trans);
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--trans), background var(--trans);
  font-size: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--trans), opacity var(--trans);
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--gold-dim); transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-answer:not([hidden]) { max-height: 500px; }
.faq-answer[hidden] { display: block !important; max-height: 0; }
.faq-answer p {
  padding-bottom: 1.35rem;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) { .contact__grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; } }
.contact__intro {
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-size: 1.02rem;
  line-height: 1.7;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact__detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact__detail-icon svg { width: 100%; height: 100%; }
.contact__detail-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.contact__detail-item p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.5; }
.contact__detail-item a { color: var(--gold); text-decoration: none; }
.contact__detail-item a:hover { text-decoration: underline; }
.contact__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 0.55rem 1rem;
  transition: var(--trans);
}
.social-link svg { width: 1rem; height: 1rem; }
.social-link:hover { color: var(--gold); border-color: var(--gold); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}
.form-label span { color: var(--gold); }
.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #fff;
  border: 1.5px solid #D0D0D0;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.form-input.form-input--error { border-color: #e74c3c; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A6A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-feedback {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-feedback--success {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #1e7e34;
}
.form-feedback--error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #c0392b;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 3.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.footer__inner {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
  }
  .footer__contact { text-align: right; }
}
.footer__logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.footer__logo {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer__logo-sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
  margin-bottom: 0.6rem;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--white-dim);
  font-style: italic;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__nav a {
  font-size: 0.85rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
  transition: color var(--trans);
}
.footer__nav a:hover { color: var(--gold); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__contact a { font-size: 0.93rem; color: var(--gold); }
.footer__contact a:hover { text-decoration: underline; }
.footer__contact span { font-size: 0.82rem; color: var(--white-dim); }
.footer__bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  padding-block: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.35);
}

/* ============================================================
   STUDIO PHOTOS
   ============================================================ */
.studio__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
@media (min-width: 768px) {
  .studio__grid {
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 280px 200px;
  }
  .studio-photo--large { grid-row: 1; grid-column: 1; }
  .studio__side-col    { grid-row: 1; grid-column: 2; display: flex; flex-direction: column; gap: 1rem; }
  .studio-photo--wide  { grid-row: 2; grid-column: 1 / -1; }
}
.studio-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.studio-photo:hover img { transform: scale(1.03); }
@media (min-width: 768px) {
  .studio__side-col .studio-photo { flex: 1; }
}
.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}
@media (min-width: 768px) {
  .studio-photo--large img,
  .studio__side-col .studio-photo img { min-height: unset; height: 100%; }
  .studio-photo--wide img { min-height: unset; height: 200px; }
}
.studio__cta {
  margin-top: 2rem;
}

/* ---- Map ---- */
.contact__map {
  margin-top: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #E0E0E0;
  box-shadow: var(--shadow-sm);
}
.contact__map iframe { display: block; }

/* ============================================================
   FOCUS & ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
