/* ============================================
   FIRST BROW — Design Tokens
   Colors derived from brand identity guide
   ============================================ */
:root {
  --ink: #3f3f3f;
  --plum: #564d4f;
  --gold: #aa987a;
  --gold-light: #c4b599;
  --cream: #f6f3ec;
  --cream-soft: #efe9dc;
  --white: #fffdf9;

  --font-display: 'Cormorant', serif;
  --font-body: 'Jost', sans-serif;

  --max-w: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.9rem;
  display: block;
}
.section-kicker.light { color: var(--gold-light); }

.lead {
  font-size: 1.08rem;
  color: var(--plum);
  max-width: 640px;
}
.lead.light { color: var(--cream-soft); }

h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); max-width: 720px; }
h2.light { color: var(--cream); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.85em 1.8em;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--plum); transform: translateY(-1px); }
.btn-ghost {
  border-color: currentColor;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-ghost-light {
  border: 1px solid rgba(246,243,236,0.55);
  color: var(--cream);
}
.btn-ghost-light:hover {
  background: rgba(246,243,236,0.12);
  border-color: var(--cream);
}

.book-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.btn-book {
  font-size: 1rem;
  padding: 1em 2em;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(63,63,63,0.08);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 34px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.main-nav a {
  color: var(--plum);
  position: relative;
  padding: 0.2rem 0;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.55em 1.3em;
  border-radius: 2px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--plum); }

.header-right { display: flex; align-items: center; gap: 1rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  font-size: 1.05rem;
  line-height: 1;
  opacity: 0.45;
  filter: grayscale(0.6);
  transition: opacity 0.25s var(--ease), filter 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lang-btn:hover { opacity: 0.8; filter: grayscale(0.2); }
.lang-btn[aria-pressed="true"] {
  opacity: 1;
  filter: grayscale(0);
  border-color: var(--gold-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.menu-toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem var(--pad) 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
}
.hero-bg-curve {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.13;
  transform: scale(2.6) rotate(-4deg);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.eyebrow-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 1.4rem;
  font-weight: 500;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  color: var(--ink);
}
.hero-title-accent {
  font-style: italic;
  color: var(--plum);
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--plum);
  margin: 1.6rem auto 2.2rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-meta {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-weight: 500;
}
.hero-meta .dot { margin: 0 0.6em; opacity: 0.6; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-frame {
  background: var(--white);
  border: 1px solid var(--cream-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 6rem;
  aspect-ratio: 3/4;
}
.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 2rem;
  margin-top: 2.2rem;
}
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.pillar p { font-size: 0.92rem; color: var(--plum); margin: 0; }
.pillar-mark {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
  margin-bottom: 0.7rem;
}

/* ============ NANO SECTION (dark feature) ============ */
.nano {
  background: var(--ink);
  color: var(--cream);
}
.nano-head { max-width: 680px; margin-bottom: 3rem; }
.nano-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
  border-top: 1px solid rgba(246,243,236,0.15);
  padding-top: 2.5rem;
}
.nano-step h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
}
.nano-step p { color: rgba(246,243,236,0.78); font-size: 0.94rem; }

.nano-faq { max-width: 760px; }
.nano-faq details {
  border-bottom: 1px solid rgba(246,243,236,0.15);
  padding: 1.1rem 0;
}
.nano-faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nano-faq summary::-webkit-details-marker { display: none; }
.nano-faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  margin-left: 1rem;
}
.nano-faq details[open] summary::after { transform: rotate(45deg); }
.nano-faq p {
  margin-top: 0.8rem;
  color: rgba(246,243,236,0.78);
  font-size: 0.95rem;
  max-width: 620px;
}

/* ============ SERVICES ============ */
.services h2 { margin-bottom: 2.5rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-soft);
  border-radius: 4px;
  padding: 1.8rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -16px rgba(63,63,63,0.25);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; color: var(--plum); margin: 0; }
.service-card.featured {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.service-card.featured h3 { color: var(--cream); }
.service-card.featured p { color: rgba(246,243,236,0.78); }
.service-tag {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.services-note {
  margin-top: 2.2rem;
  font-style: italic;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ============ RESULTS / GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-caption {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--plum);
  font-style: italic;
}

/* ============ JOURNEY ============ */
.journey { background: var(--cream-soft); }
.journey h2 { margin-bottom: 2.5rem; }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.journey-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.journey-step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.journey-step p { font-size: 0.9rem; color: var(--plum); margin: 0; }

/* ============ STUDIO ============ */
.studio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.studio-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.9rem;
}
.studio-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--plum);
  font-size: 0.96rem;
}
.studio-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 1.5px;
  background: var(--gold);
}
.studio-frame {
  background: var(--white);
  border: 1px solid var(--cream-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}
.studio-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ CONTACT ============ */
.contact { background: var(--plum); color: var(--cream); }
.contact-inner { max-width: 760px; }
.contact h2 { margin-bottom: 0.6rem; }
.contact .lead { margin-bottom: 2.5rem; }

.contact-form-toggle {
  margin-bottom: 1rem;
}
.contact-form-toggle summary {
  cursor: pointer;
  color: rgba(246,243,236,0.8);
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
  list-style: none;
  width: fit-content;
}
.contact-form-toggle summary::-webkit-details-marker { display: none; }
.contact-form-toggle[open] summary { margin-bottom: 1.3rem; }

.contact-form {
  display: grid;
  gap: 1.3rem;
  background: rgba(246,243,236,0.06);
  border: 1px solid rgba(246,243,236,0.18);
  border-radius: 6px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--cream-soft);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 0.7em 0.9em;
  border: 1px solid rgba(246,243,236,0.3);
  background: rgba(246,243,236,0.95);
  color: var(--ink);
  border-radius: 3px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold-light);
}
.contact-form .btn { justify-self: start; margin-top: 0.4rem; }
.form-note {
  font-size: 0.78rem;
  color: rgba(246,243,236,0.55);
  margin: 0.6rem 0 0;
}

.contact-alt {
  margin-top: 2.2rem;
  text-align: center;
}
.contact-alt p { color: rgba(246,243,236,0.7); margin-bottom: 0.7rem; font-size: 0.9rem; }
.contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-links a {
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
  font-size: 0.95rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(246,243,236,0.75);
  text-align: center;
  padding: 3rem var(--pad) 2.2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-tagline {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.footer-loc { font-size: 0.85rem; margin-bottom: 1.4rem; }
.footer-copy { font-size: 0.78rem; opacity: 0.6; margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-grid, .studio-grid { grid-template-columns: 1fr; }
  .about-visual, .studio-visual { order: -1; }
  .about-frame, .studio-frame { position: static; }
  .nano-steps { grid-template-columns: 1fr; gap: 1.8rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--pad) 1.2rem;
    border-bottom: 1px solid rgba(63,63,63,0.08);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 0.75rem 0; border-bottom: 1px solid rgba(63,63,63,0.06); }
  .main-nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 0.6rem; }
  .menu-toggle { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .pillars { grid-template-columns: 1fr; }
  .service-grid, .journey-grid, .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
