/* ============================================================
   ATELIER NORTH — STUDIO SITE
   Vanilla CSS, no preprocessor, no framework.
   ============================================================ */

/* ============================================================
   FONT-FACE (production: replace Google Fonts <link> in HTML
   with these self-hosted declarations and place WOFF2 in /fonts/)

   For now, the @font-face declarations below are commented out
   and we rely on the Google Fonts <link> in index.html. Uncomment
   and remove the <link> tags before final deploy.
   ============================================================ */

/*
@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/Fraunces[wght,opsz,SOFT,WONK].woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/Fraunces-Italic[wght,opsz,SOFT,WONK].woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('/fonts/Switzer-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/fonts/JetBrainsMono-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}
*/

/* Size-adjust fallbacks to prevent CLS when web fonts load */
@font-face {
  font-family: 'Fraunces Fallback';
  src: local('Georgia');
  size-adjust: 105.5%;
  ascent-override: 92%;
  descent-override: 23%;
  line-gap-override: normal;
}
@font-face {
  font-family: 'Switzer Fallback';
  src: local('Inter'), local('-apple-system'), local('BlinkMacSystemFont');
  size-adjust: 100%;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colour — warm editorial system */
  --ink:        #1F1A14;
  --ink-soft:   #4A3F2E;
  --ink-muted:  #8E8576;

  --paper:      #F8F2E8;
  --paper-deep: #EFE7DA;

  --brass:        #8B6B3D;
  --brass-light:  #A87832;
  --brass-bright: #B88440;

  --rule:       #C9B786;
  --rule-soft:  #E5E0D5;

  --positive:   #6B7F4E;
  --warn:       #B8732A;

  /* Typography */
  --font-display: 'Fraunces', 'Fraunces Fallback', Georgia, serif;
  --font-body:    'Switzer', 'Switzer Fallback', Inter, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', Menlo, Consolas, monospace;

  /* Motion — research-derived sweet spots */
  --motion-quick:      200ms;
  --motion-base:       300ms;
  --motion-considered: 400ms;
  --motion-slow:       500ms;
  --ease-base: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.0, 0, 0.2, 1);

  /* Layout */
  --container:        1200px;
  --container-narrow: 720px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Type curves */
  --type-body:     clamp(1.0625rem, 0.95rem + 0.5vw, 1.25rem);
  --type-body-sm:  clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  --type-eyebrow:  clamp(0.6875rem, 0.625rem + 0.125vw, 0.8125rem);

  --type-h1:       clamp(3rem,    6vw + 1rem,  9rem);
  --type-h2:       clamp(2rem,    4vw + 0.5rem, 3.75rem);
  --type-h3:       clamp(1.625rem, 2.5vw,        2rem);
  --type-pull:     clamp(1.75rem,  3vw + 0.5rem, 2.75rem);
  --type-tier-h:   clamp(1.375rem, 1.5vw + 0.5rem, 1.75rem);
  --type-tier-price: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  --type-process-num: clamp(4rem,  6vw, 7rem);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--ink); margin: 0; line-height: 1.04; letter-spacing: -0.02em; }
p { margin: 0; }

::selection { background: var(--brass); color: var(--paper); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 4px;
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

/* ============================================================
   TYPE PRIMITIVES
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--type-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.5rem;
}

.section__headline {
  font-size: var(--type-h2);
  font-variation-settings: "opsz" 96;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.section__subhead,
.section__preamble {
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--ink-muted);
  max-width: 60ch;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.section__preamble { max-width: 64ch; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-soft);
  transition: transform var(--motion-base) var(--ease-base);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}
@media (max-width: 1023px) {
  .header__inner { height: 56px; }
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 24;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  white-space: nowrap;
}
.wordmark__mark {
  color: var(--brass);
  font-size: 0.85em;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-nav ul {
  display: flex;
  gap: 1.25rem;
}
.site-nav a {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
  transition: color var(--motion-quick) var(--ease-base);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-base) var(--ease-base);
}
.site-nav a:hover {
  color: var(--ink);
}
.site-nav a:hover::after {
  transform: scaleX(1);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
  background: var(--paper-deep);
  padding: 0.5rem 0.875rem;
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
}
.availability__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  animation: breathe 2s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* Below 1300px: hide availability pill to give nav breathing room */
@media (max-width: 1299px) {
  .availability { display: none; }
}
@media (max-width: 1023px) {
  .site-nav { display: none; }
}

.hamburger {
  display: none;
  width: 28px;
  height: 28px;
  position: relative;
  margin-left: auto;
}
.hamburger span {
  position: absolute;
  left: 4px;
  width: 20px;
  height: 1.5px;
  background: var(--brass);
  transition: transform var(--motion-base) var(--ease-base),
              opacity var(--motion-quick);
}
.hamburger span:nth-child(1) { top: 8px; }
.hamburger span:nth-child(2) { top: 13px; }
.hamburger span:nth-child(3) { top: 18px; }
@media (max-width: 1023px) {
  .hamburger { display: block; }
}

/* ============================================================
   CTAs
   ============================================================ */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 100px;
  transition: transform var(--motion-base) var(--ease-base),
              background var(--motion-base) var(--ease-base),
              color var(--motion-base) var(--ease-base);
  white-space: nowrap;
}
.cta--small {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  background: var(--brass);
  color: var(--paper);
}
.cta--small:hover {
  background: var(--brass-light);
  transform: translateY(-1px);
}
.cta--primary {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  background: var(--brass);
  color: var(--paper);
  margin-top: 2rem;
}
.cta--primary:hover {
  background: var(--brass-light);
  transform: translateY(-1px);
}
.cta--inverted {
  background: var(--brass);
  color: var(--ink);
}
.cta--inverted:hover {
  background: var(--brass-bright);
}
.cta__number {
  font-family: var(--font-mono);
  font-size: 0.875em;
  opacity: 0.85;
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid currentColor;
  border-color: rgba(248, 242, 232, 0.3);
}
.cta--inverted .cta__number {
  border-color: rgba(31, 26, 20, 0.25);
}
.arrow {
  display: inline-block;
  transition: transform var(--motion-base) var(--ease-base);
}
.cta:hover .arrow {
  transform: translateX(4px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 6rem;
}
@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
    padding: 3rem 0 4rem;
  }
}
.hero__rule {
  height: 1px;
  background: var(--rule-soft);
  margin-bottom: 2rem;
  max-width: 880px;
}
.hero .container {
  max-width: 1080px;
}
.hero .eyebrow {
  margin-top: 1rem;
}
.hero__headline {
  font-size: var(--type-h1);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 2.5rem;
  max-width: 18ch;
  color: var(--ink);
}
.hero__italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  font-weight: 500;
  color: var(--ink);
}
.hero__subhead {
  font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.375rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.hero__scroll {
  margin-top: 2.5rem;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.chevron {
  display: inline-block;
  animation: chevron 2.4s ease-in-out infinite;
  color: var(--brass);
}
@keyframes chevron {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: 2rem 0;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0 1.5rem;
  position: relative;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.4;
}
.trust__item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--rule-soft);
}
.trust__icon {
  width: 24px;
  height: 24px;
  color: var(--brass);
}
@media (max-width: 768px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .trust__item:not(:first-child)::before { display: none; }
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section {
  padding: clamp(4rem, 9vw, 9rem) 0;
}
.section--studio {
  background: var(--paper);
}
.section--tiers {
  background: var(--paper-deep);
}
.section--work {
  background: var(--paper);
}
.section--process {
  background: var(--paper-deep);
}
.section--answers {
  background: var(--paper);
}
.section--colophon {
  background: var(--paper-deep);
  padding: clamp(3rem, 6vw, 6rem) 0;
}

/* ============================================================
   STUDIO SECTION
   ============================================================ */
.prose p {
  margin-bottom: 1.5rem;
  font-size: var(--type-body);
  line-height: 1.65;
  color: var(--ink-soft);
}
.prose p:last-child {
  margin-bottom: 0;
}

.pullquote {
  margin: 5rem 0 0;
  padding: 0 0 0 1.5rem;
  border-left: 4px solid var(--brass);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 350;
  font-size: var(--type-pull);
  font-variation-settings: "opsz" 72;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 32ch;
}

/* ============================================================
   TIERS
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 1023px) {
  .tiers { grid-template-columns: 1fr; gap: 2rem; }
}

.tier {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--motion-base) var(--ease-base),
              border-color var(--motion-base) var(--ease-base);
}
.tier:hover {
  transform: translateY(-1px);
  border-color: var(--brass);
}
.tier--primary {
  border: 2px solid var(--brass);
  padding: 2.5rem;
}

.tier__badge {
  position: absolute;
  top: -0.625rem;
  left: 2.5rem;
  background: var(--brass);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
}

.tier__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1rem;
}
.tier__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 36;
  font-size: var(--type-tier-h);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.tier__price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 1.5rem;
}
.tier__price-main {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 72;
  font-size: var(--type-tier-price);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.tier__price-unit {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--ink-muted);
}
.tier__price-note {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--ink-muted);
}

.tier__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.tier__list {
  margin-bottom: 2rem;
  flex-grow: 1;
}
.tier__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.tier__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brass);
  font-weight: 600;
}

.tier__cta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--brass);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.125rem;
  align-self: flex-start;
  transition: color var(--motion-quick);
}
.tier__cta:hover {
  color: var(--brass-light);
}
.tier__cta .arrow {
  display: inline-block;
  transition: transform var(--motion-base) var(--ease-base);
}
.tier__cta:hover .arrow {
  transform: translateX(3px);
}

.tiers__note {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin-top: 4rem;
  max-width: 64ch;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: center;
}
.project:first-child { padding-top: 0; }
@media (max-width: 1023px) {
  .project {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.project__visual {
  background: var(--paper-deep);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 26, 20, 0.10);
  position: relative;
}
.project__screenshot {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Placeholder gradients for the three projects, replaced with real
   screenshots in production. The intent is a faint hint of the
   project's visual character without faking actual imagery. */
.project__screenshot--coorg {
  background:
    linear-gradient(180deg, rgba(31,26,20,0) 60%, rgba(31,26,20,0.08) 100%),
    linear-gradient(135deg, #E8DCC4 0%, #D4B896 100%);
}
.project__screenshot--coorg::after {
  content: "Coorg Heritage Inn";
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  opacity: 0.4;
}
.project__screenshot--dental {
  background:
    linear-gradient(180deg, rgba(31,26,20,0) 60%, rgba(31,26,20,0.08) 100%),
    linear-gradient(135deg, #F0E6D2 0%, #C9B786 100%);
}
.project__screenshot--dental::after {
  content: "Rajkumar's Dentistry";
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  opacity: 0.4;
}
.project__screenshot--beauty {
  background:
    linear-gradient(180deg, rgba(31,26,20,0) 60%, rgba(31,26,20,0.08) 100%),
    linear-gradient(135deg, #EFE7DA 0%, #A87832 100%);
}
.project__screenshot--beauty::after {
  content: "Beauty Island";
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--paper);
  opacity: 0.6;
}
.project__screenshot--img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project__category {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.75rem;
}
.project__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 60;
  font-size: var(--type-h3);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.project__description {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.project__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.project__url {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--brass);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.125rem;
  transition: color var(--motion-quick);
}
.project__url:hover {
  color: var(--brass-light);
}
.project__status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-style: italic;
}
.projects__note {
  font-style: italic;
  color: var(--ink-muted);
  margin-top: 3rem;
  font-size: 0.9375rem;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  position: relative;
  margin-top: 2rem;
}
.process__rail {
  position: absolute;
  left: 60px;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: var(--rule-soft);
}
@media (max-width: 768px) {
  .process__rail { display: none; }
}
.process__block {
  display: grid;
  grid-template-columns: 144px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  align-items: start;
  position: relative;
}
@media (max-width: 768px) {
  .process__block {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.75rem 0;
  }
}
.process__numeral {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  font-size: var(--type-process-num);
  color: var(--brass);
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: var(--paper-deep);
  padding-right: 1rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .process__numeral {
    font-size: 3rem;
    background: transparent;
    padding-right: 0;
  }
}
.process__week {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}
.process__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 60;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) { .process__title { font-size: 1.5rem; } }
.process__body {
  font-size: var(--type-body);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  margin-top: 2rem;
  border-top: 1px solid var(--rule-soft);
}
.faq__item {
  border-bottom: 1px solid var(--rule-soft);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.75rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 36;
  font-size: clamp(1.25rem, 1.5vw + 0.375rem, 1.5rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
  transition: color var(--motion-quick);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--brass); }
.faq__toggle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--brass);
  transition: transform var(--motion-base) var(--ease-base);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item[open] .faq__toggle {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 0 1.75rem;
  max-width: 64ch;
}
.faq__answer p {
  font-size: var(--type-body);
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   COLOPHON
   ============================================================ */
.colophon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 1rem;
}
@media (max-width: 1023px) {
  .colophon { grid-template-columns: 1fr; gap: 2.5rem; }
}
.colophon__heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule-soft);
}
.colophon__lead {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 1.25rem;
}
.colophon__note {
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-top: 1rem;
}
.colophon dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.colophon dt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-top: 0.125rem;
}
.colophon dd {
  margin: 0;
  color: var(--ink-soft);
}

/* ============================================================
   CONTACT (DARK)
   ============================================================ */
.section--contact {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 10rem) 0 4rem;
  text-align: center;
}
.contact__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 96;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}
.contact__subhead {
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--paper-deep);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  opacity: 0.85;
  line-height: 1.55;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(201, 183, 134, 0.15);
  text-align: left;
}
@media (max-width: 1023px) {
  .footer-cols { grid-template-columns: 1fr; gap: 2.5rem; }
}
.footer-col__heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.25rem;
}
.footer-col {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--paper-deep);
  opacity: 0.85;
}
.footer-col p { margin: 0 0 0.75rem; }
.footer-col__lead {
  margin-bottom: 1rem;
}
.footer-col__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 24;
  font-size: 1rem;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.footer-col__wordmark span {
  color: var(--brass);
}
.footer-col__availability {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--paper-deep);
  opacity: 0.7;
}
.footer-col ul li {
  margin-bottom: 0.375rem;
}
.footer-col a {
  color: var(--paper-deep);
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-quick),
              color var(--motion-quick);
}
.footer-col a:hover {
  color: var(--paper);
  border-bottom-color: var(--brass);
}
.footer-col hr {
  border: 0;
  border-top: 1px solid rgba(201, 183, 134, 0.15);
  margin: 1rem 0;
}

.footer-bottom {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--paper-deep);
  opacity: 0.5;
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-bottom__sep { opacity: 0.5; }
.footer-bottom__version {
  font-weight: 500;
}

/* ============================================================
   STICKY WHATSAPP
   ============================================================ */
.sticky-whatsapp {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  width: 56px;
  height: 56px;
  background: var(--brass);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(31, 26, 20, 0.18);
  transition: transform var(--motion-base) var(--ease-base),
              background var(--motion-base) var(--ease-base),
              opacity var(--motion-base) var(--ease-base);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.sticky-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-whatsapp:hover {
  background: var(--brass-light);
  transform: scale(1.04) translateY(-1px);
}
.sticky-whatsapp svg {
  width: 26px;
  height: 26px;
}
@media (min-width: 1024px) {
  .sticky-whatsapp { width: 64px; height: 64px; }
  .sticky-whatsapp svg { width: 30px; height: 30px; }
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-base) var(--ease-base);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}
.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 60;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.mobile-menu nav a:hover { color: var(--brass); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .availability__dot { opacity: 1; }
  .chevron { transform: none; }
}

/* ============================================================
   REVEAL ANIMATIONS
   Removed deliberately. Reveal-on-scroll patterns can fail
   silently — leaving content invisible if IO fires late, or
   if a user with reduced-motion has them disabled. For a
   studio that ships fast, predictable sites, the safer choice
   is to not animate section reveals at all. Motion exists
   in the chevron, the breathing dot, and the hover transitions.
   ============================================================ */
