:root {
  --ink: #0b0b0b;
  --ink-soft: #171714;
  --ivory: #f4efe6;
  --paper: #faf7f0;
  --gold: #b89a5a;
  --gold-light: #d3b778;
  --line: rgba(184, 154, 90, 0.55);
  --body: "Segoe UI", Arial, sans-serif;
  --display: "Bodoni MT", Didot, "Times New Roman", serif;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.concept-bar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 28px;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  padding: 0 clamp(24px, 4.2vw, 72px);
  color: #fff;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, transform .3s ease;
}
.site-header.is-sticky {
  position: fixed;
  top: 0;
  background: rgba(11, 11, 11, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.brand__name {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(25px, 3vw, 52px); }
.site-nav a, .header-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-nav a { position: relative; padding: 12px 0; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.header-cta {
  justify-self: end;
  padding: 14px 22px;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  transition: background .2s ease, color .2s ease;
}
.header-cta:hover, .header-cta:focus-visible { background: var(--gold); color: var(--ink); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(920px, calc(100vh - 28px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.hero__image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.9) 25%, rgba(8,8,8,.36) 52%, rgba(8,8,8,.03) 78%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(650px, 50vw);
  margin-top: 100px;
  padding-left: clamp(36px, 5vw, 84px);
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.eyebrow span { margin: 0 .4em; }
.eyebrow--dark { color: #76561c; }
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 7.1vw, 128px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero__copy {
  max-width: 520px;
  margin: 28px 0 32px;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button--gold { background: var(--gold-light); color: var(--ink); }
.button--outline { color: var(--gold-light); }
.button--outline:hover, .button--outline:focus-visible { background: var(--gold); color: var(--ink); }

.trust-strip {
  min-height: 122px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 0 clamp(36px, 8vw, 160px);
  background: #090909;
  color: #fff;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.trust-item:last-child { border-right: 0; }
.trust-item svg, .delivery-note svg {
  width: 38px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
}

.section { padding: clamp(90px, 10vw, 150px) clamp(24px, 4vw, 64px); }
.collections { background: var(--ivory); }
.section-heading { max-width: 1050px; margin: 0 auto clamp(56px, 6vw, 90px); text-align: center; }
.section-heading h2, .order-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 1460px; margin: 0 auto; }
.collection-card { text-align: center; }
.collection-card__image {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  background: transparent;
}
.collection-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity .35s ease;
}
.collection-card__image img { aspect-ratio: 4 / 5; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.collection-card__image span {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  padding: 13px 17px;
  background: var(--ivory);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, -30%);
  transition: opacity .25s ease, transform .25s ease;
}
.collection-card__image:hover::after, .collection-card__image:focus-visible::after { opacity: 1; }
.collection-card__image:hover img, .collection-card__image:focus-visible img { transform: scale(1.025); }
.collection-card__image:hover span, .collection-card__image:focus-visible span { opacity: 1; transform: translate(-50%, -50%); }
.collection-card h3 {
  margin: 22px 0 2px;
  font-family: var(--display);
  font-size: clamp(30px, 2.7vw, 42px);
  font-weight: 500;
  text-transform: uppercase;
}
.collection-card p { margin: 0 0 16px; color: #49453f; }
.text-link {
  position: relative;
  padding: 8px 0;
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: #6f5017;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section--dark { background: var(--ink); color: #fff; }
.section-heading--dark { margin-bottom: 65px; }
.process-list {
  max-width: 1460px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto 48px;
  padding: 0;
  list-style: none;
}
.process-list li {
  min-height: 180px;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 44px;
  border-right: 1px solid var(--line);
}
.process-list li:first-child { padding-left: 0; }
.process-list li:last-child { padding-right: 0; border-right: 0; }
.process-list__number { color: var(--gold-light); font-family: var(--display); font-size: 72px; line-height: .8; }
.process-list h3 { margin: 0 0 12px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.process-list p { max-width: 300px; margin: 0; color: #aaa69f; font-size: 14px; line-height: 1.8; }
.process > .text-link { display: table; margin: 0 auto; }
.text-link--light { color: var(--gold-light); }

.delivery { display: grid; grid-template-columns: 1fr 1.05fr; background: var(--ink); }
.delivery__image-wrap { min-height: 840px; overflow: hidden; }
.delivery__image-wrap img { height: 100%; object-fit: cover; object-position: center; }
.order-panel { display: flex; align-items: center; padding: clamp(70px, 7vw, 112px) clamp(32px, 6vw, 92px); background: var(--paper); }
.order-panel__inner { width: 100%; max-width: 760px; margin: 0 auto; }
.order-panel__intro { max-width: 630px; margin: 24px 0 36px; color: #49453f; font-size: 17px; line-height: 1.7; }
.order-form fieldset { margin: 0 0 20px; padding: 0; border: 0; }
.order-form legend, .date-field span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.option-grid button {
  min-height: 50px;
  cursor: pointer;
  border: 1px solid rgba(155, 121, 59, .7);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.option-grid button[aria-pressed="true"] { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.date-field { display: block; margin: 0 0 22px; }
.date-field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(155,121,59,.7);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-transform: uppercase;
}
.whatsapp-button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.whatsapp-button:hover, .whatsapp-button:focus-visible { background: var(--gold); color: var(--ink); }
.whatsapp-button svg, .instagram-link svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.delivery-note { display: flex; gap: 14px; align-items: center; margin-top: 20px; font-size: 14px; }
.delivery-note svg { flex: 0 0 auto; width: 32px; }
.instagram-link {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  margin-top: 22px;
  padding-bottom: 4px;
  color: #6f5017;
  border-bottom: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr auto;
  gap: 40px;
  align-items: center;
  padding: 46px clamp(26px, 5vw, 84px) 28px;
  background: #080808;
  color: var(--gold-light);
  border-top: 1px solid var(--gold);
}
.footer-brand { font-family: var(--display); font-size: clamp(35px, 4vw, 58px); line-height: .72; text-transform: uppercase; }
.footer-brand span { display: block; margin-top: 16px; font-family: var(--body); font-size: 10px; letter-spacing: .55em; text-align: center; }
.site-footer nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 46px); color: #e3d3ae; }
.site-footer nav a, .footer-phone { font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.footer-phone { padding-left: 32px; border-left: 1px solid var(--gold); white-space: nowrap; }
.site-footer > p { grid-column: 1 / -1; margin: 24px 0 0; color: #817966; font-size: 9px; letter-spacing: .15em; text-align: center; text-transform: uppercase; }

.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 24px;
  max-width: calc(100vw - 30px);
  padding: 13px 18px;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity .25s ease, transform .25s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }
.collections :focus-visible,
.order-panel :focus-visible { outline-color: #5d420f; }
h2[tabindex="-1"]:focus-visible { outline-offset: 10px; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav, .header-cta { display: none; }
  .menu-toggle {
    justify-self: end;
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 8px;
    cursor: pointer;
    border: 1px solid rgba(184,154,90,.6);
    background: rgba(0,0,0,.2);
  }
  .menu-toggle span:not(.sr-only) { width: 22px; height: 1px; background: var(--gold-light); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav.is-open {
    position: fixed;
    inset: 82px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    background: rgba(11,11,11,.98);
  }
  .site-nav.is-open a { font-family: var(--display); font-size: 40px; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .hero__content { width: min(680px, 64vw); }
  .hero__shade { background: linear-gradient(90deg, rgba(8,8,8,.96), rgba(8,8,8,.68) 54%, rgba(8,8,8,.08)); }
  .process-list li { grid-template-columns: 70px 1fr; padding: 20px 25px; }
  .process-list__number { font-size: 58px; }
  .delivery { grid-template-columns: .85fr 1.15fr; }
  .delivery__image-wrap { min-height: 760px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer nav { order: 3; grid-column: 1 / -1; justify-content: flex-start; }
  .site-footer > p { order: 4; }
}

@media (max-width: 760px) {
  :root { --header-height: 68px; }
  .concept-bar { height: 24px; font-size: 8px; }
  .site-header { top: 24px; padding: 0 18px; }
  .site-header.is-sticky { top: 0; }
  .brand__name { font-size: 23px; }
  .menu-toggle { width: 42px; height: 42px; }
  .site-nav.is-open { inset: 68px 0 0; }
  .hero { min-height: 780px; align-items: flex-end; }
  .hero__image { object-position: 62% center; }
  .hero__shade { background: linear-gradient(0deg, rgba(8,8,8,.99) 0%, rgba(8,8,8,.86) 45%, rgba(8,8,8,.2) 78%); }
  .hero__content { width: 100%; margin-top: 0; padding: 0 20px 46px; }
  .hero h1 { font-size: clamp(58px, 17vw, 74px); line-height: .84; letter-spacing: -.055em; }
  .hero__copy { max-width: 510px; margin: 22px 0; font-size: 15px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .button { min-height: 54px; }
  .trust-strip { grid-template-columns: 1fr; padding: 0 26px; }
  .trust-item { justify-content: flex-start; min-height: 78px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 80px 18px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2, .order-panel h2 { font-size: clamp(48px, 14vw, 66px); }
  .collection-grid { grid-template-columns: 1fr; gap: 58px; }
  .collection-card__image img { aspect-ratio: 4 / 4.65; }
  .collection-card h3 { font-size: 36px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li:first-child, .process-list li:last-child { min-height: 150px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list li:last-child { border-bottom: 0; }
  .delivery { grid-template-columns: 1fr; }
  .delivery__image-wrap { min-height: 460px; }
  .delivery__image-wrap img { object-position: 44% center; }
  .order-panel { padding: 76px 18px; }
  .option-grid { gap: 7px; }
  .option-grid button { min-height: 48px; padding: 0 5px; font-size: 10px; }
  .delivery-note { align-items: flex-start; font-size: 13px; }
  .site-footer { grid-template-columns: 1fr; gap: 34px; padding: 54px 22px 28px; text-align: center; }
  .footer-brand { justify-self: center; }
  .site-footer nav { grid-column: auto; flex-wrap: wrap; justify-content: center; }
  .footer-phone { padding: 20px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .site-footer > p { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
