/* ============================================================
   The Emotion Palette — design system
   Ivory & bronze editorial. Cormorant Garamond + Jost.
   ============================================================ */

:root {
  --ivory: #f7f2e8;
  --ecru: #efe6d4;
  --ink: #241b10;
  --ink-soft: #5c4f3f;
  --gold: #b08542;        /* logo bronze — rules, numerals, large type */
  --gold-deep: #84602e;   /* darker bronze — small text, AA contrast   */
  --hairline: rgba(176, 133, 66, 0.38);
  --hairline-ink: rgba(36, 27, 16, 0.32);
  --dark: #211809;
  --dark-2: #2b2113;
  --ivory-on-dark: #efe6d4;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Century Gothic", "Avenir Next", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

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

::selection { background: var(--gold); color: var(--ivory); }

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ---------- typography ---------- */

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0.005em;
}

.display em, h2 em { font-style: italic; font-weight: 400; color: var(--gold-deep); }

h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
}

h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.2;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.lead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink-soft);
}

.body-col p + p { margin-top: 1.4em; }

.small-caps {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- links & buttons ---------- */

.text-link {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 4px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.text-link:hover { color: var(--ink); border-color: var(--ink); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 17px 34px;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn:hover { background: var(--ink); color: var(--ivory); }

.btn--gold {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ivory); }

.dark .btn { color: var(--ivory-on-dark); border-color: var(--hairline); }
.dark .btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 242, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.brand img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
  list-style: none;
}

.nav-links a {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-links a:hover { color: var(--gold-deep); }

.nav-links a.active { color: var(--gold-deep); border-color: var(--hairline); }

.nav-links .nav-cta a {
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  padding: 11px 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links .nav-cta a:hover { background: var(--gold-deep); color: var(--ivory); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0 12px 12px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--ink);
  margin: 7px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* mobile menu */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100vh - 78px);
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    z-index: 55;
  }
  .nav-open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a {
    font-family: var(--serif);
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    text-transform: none;
    font-weight: 500;
  }
  .nav-links .nav-cta a { border: none; padding: 0; color: var(--gold-deep); }
  .nav-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-open { overflow: hidden; }
}

/* ---------- sections ---------- */

.section { padding-block: clamp(76px, 10vw, 132px); }

.section--tight { padding-block: clamp(56px, 7vw, 88px); }

.sect-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.sect-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
}

/* ---------- grid ---------- */

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 3vw, 44px);
}

@media (max-width: 900px) {
  .grid-12 { grid-template-columns: 1fr; }
  .grid-12 > * { grid-column: 1 / -1 !important; }
}

/* ---------- video hero ---------- */

.hero-video {
  position: relative;
  height: calc(100svh - 78px);
  min-height: 540px;
  max-height: 980px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 12, 5, 0.82) 0%, rgba(18, 12, 5, 0.28) 55%, rgba(18, 12, 5, 0.34) 100%);
}

.hero-video .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(44px, 6vw, 84px);
}

.hero-video .display { color: var(--ivory-on-dark); }
.hero-video .display em { color: var(--gold); }

.hero-video .hero-lead {
  max-width: 36ch;
  color: rgba(239, 230, 212, 0.85);
}

.hero-video .hero-caption {
  position: absolute;
  right: clamp(20px, 5vw, 48px);
  bottom: clamp(44px, 6vw, 84px);
  z-index: 1;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(239, 230, 212, 0.55);
}

@media (max-width: 900px) {
  .hero-video { min-height: 480px; }
  .hero-video .hero-caption { display: none; }
}

/* ---------- hero (interior split, kept for reuse) ---------- */

.hero { padding-block: clamp(48px, 7vw, 104px); }

.hero-grid { align-items: center; }

.hero-copy { grid-column: 1 / 7; }

.hero-media { grid-column: 8 / 13; position: relative; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 40px;
}

.hero-meta .line { width: 56px; height: 1px; background: var(--gold); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

.hero-media figcaption {
  position: absolute;
  top: 0;
  right: -14px;
  transform: translateX(100%) rotate(90deg);
  transform-origin: top left;
  white-space: nowrap;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 1300px) { .hero-media figcaption { display: none; } }

@media (max-width: 900px) {
  .hero-media { margin-top: 44px; }
}

/* ---------- figures ---------- */

.frame { position: relative; overflow: hidden; }

.frame img { width: 100%; }

.frame--45 { aspect-ratio: 4 / 5; }
.frame--45 img { height: 100%; object-fit: cover; }

.caption {
  margin-top: 12px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.dark .caption { color: rgba(239, 230, 212, 0.62); }

/* ---------- editorial split (sticky heading + copy) ---------- */

.split-head { grid-column: 1 / 5; }
.split-body { grid-column: 6 / 12; }

@media (min-width: 901px) {
  .split-head .sticky { position: sticky; top: 120px; }
}

/* ---------- collection rows ---------- */

.collection-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  border-top: 1px solid var(--hairline);
  padding-block: clamp(28px, 4vw, 44px);
}

.collection-row:last-of-type { border-bottom: 1px solid var(--hairline); }

.collection-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}

.collection-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.collection-desc { color: var(--ink-soft); max-width: 46ch; }

.collection-cta { text-align: right; }

.collection-cta .price {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .collection-row { grid-template-columns: 48px 1fr; }
  .collection-desc { grid-column: 2; }
  .collection-cta { grid-column: 2; text-align: left; }
}

/* ---------- portfolio story cards ---------- */

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 56px);
}

@media (max-width: 720px) { .story-grid { grid-template-columns: 1fr; } }

.story-card { display: block; }

.story-card .frame {
  overflow: hidden;
}

.story-card .frame img {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-card:hover .frame img { transform: scale(1.04); }

.story-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
}

.story-note {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.story-names {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.1;
}

.story-names em { font-style: italic; font-weight: 400; color: var(--gold-deep); }

.story-link {
  margin-top: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hairline);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.story-link::after { content: " \2192"; }

.story-card:hover .story-link { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ---------- gallery strips & plates ---------- */

.strip { align-items: start; }

.plates { align-items: start; }

.plate { margin: 0; }

.plate--push { margin-top: clamp(28px, 6vw, 104px); }

@media (max-width: 900px) {
  .plate--push { margin-top: 0; }
}

/* ---------- dark section ---------- */

.dark {
  background: var(--dark);
  color: var(--ivory-on-dark);
}

.dark .eyebrow { color: var(--gold); }
.dark .lead { color: rgba(239, 230, 212, 0.78); }
.dark .sect-head { border-color: rgba(176, 133, 66, 0.5); }
.dark .text-link { color: var(--gold); }
.dark .text-link:hover { color: var(--ivory-on-dark); border-color: var(--ivory-on-dark); }
.dark ::selection { background: var(--ivory-on-dark); color: var(--dark); }

/* ---------- place list (MP cities) ---------- */

.place {
  border-top: 1px solid var(--hairline);
  padding-block: clamp(28px, 4vw, 44px);
}

.place:last-of-type { border-bottom: 1px solid var(--hairline); }

.place-grid { align-items: baseline; }

.place-name { grid-column: 1 / 5; }

.place-copy { grid-column: 5 / 12; color: var(--ink-soft); }

/* ---------- forms ---------- */

.enquiry-form { max-width: 720px; }

.field { margin-bottom: 34px; }

.field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.dark .field label { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-ink);
  border-radius: 0;
  padding: 10px 2px 12px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  color: inherit;
  transition: border-color 0.3s ease;
}

.dark .field input,
.dark .field select,
.dark .field textarea { border-bottom-color: rgba(239, 230, 212, 0.35); }

.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }

.field select option { color: var(--ink); background: var(--ivory); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.field textarea { min-height: 120px; resize: vertical; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.form-note {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 18px;
}

.dark .form-note { color: rgba(239, 230, 212, 0.6); }

/* ---------- contact strip ---------- */

.contact-ways {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: center;
}

/* ---------- FAQ ---------- */

.faq-item { border-top: 1px solid var(--hairline); }
.faq-item:last-of-type { border-bottom: 1px solid var(--hairline); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-block: 26px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.3;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  flex: none;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body { padding: 0 0 30px; color: var(--ink-soft); max-width: 62ch; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--dark);
  color: var(--ivory-on-dark);
  padding-top: clamp(76px, 9vw, 120px);
}

.footer-cta { padding-bottom: clamp(56px, 7vw, 96px); border-bottom: 1px solid rgba(176, 133, 66, 0.4); }

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(48px, 6vw, 72px);
}

@media (max-width: 900px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }

.footer-brand img { height: 60px; width: auto; }

.footer-brand p { margin-top: 20px; font-size: 0.9375rem; color: rgba(239, 230, 212, 0.65); max-width: 34ch; }

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(239, 230, 212, 0.85);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(176, 133, 66, 0.4);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239, 230, 212, 0.55);
}

.footer-bottom span:nth-child(2) { flex: 1 1 320px; text-align: center; }

.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 760px) {
  .footer-bottom { justify-content: flex-start; }
  .footer-bottom span:nth-child(2) { text-align: left; flex-basis: 100%; order: 3; }
}

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(176, 133, 66, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.wa-float:hover { background: var(--gold-deep); transform: translateY(-2px); }

.wa-float svg { width: 24px; height: 24px; fill: var(--ivory-on-dark); }

/* ---------- page hero (interior pages) ---------- */

.page-hero { padding: clamp(64px, 8vw, 110px) 0 clamp(40px, 5vw, 64px); }

.page-hero .lead { max-width: 56ch; margin-top: 26px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.breadcrumb a:hover { color: var(--gold-deep); }

.breadcrumb .sep { color: var(--gold); }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- utility ---------- */

.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mt-4 { margin-top: 64px; }
.measure { max-width: 62ch; }
.center { text-align: center; }
