:root {
  --ivory: #f8f4ec;
  --paper: #fffdf8;
  --beige: #e9dfd1;
  --sand: #d2bea5;
  --gold: #b58a43;
  --brown: #412b24;
  --brown-2: #6f554b;
  --ink: #231815;
  --green: #344b3d;
  --line: rgba(65, 43, 36, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 40px));
  --shadow: 0 18px 55px rgba(57, 38, 30, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: #fff;
  background: var(--brown);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding-block: 120px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(248, 244, 236, .93);
  box-shadow: 0 8px 30px rgba(49, 32, 26, .06);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  min-height: 84px;
  gap: 28px;
}
.brand { display: block; width: 148px; height: 64px; }
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.9) drop-shadow(0 1px 1px rgba(65, 43, 36, .22));
}
.main-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 42px); }
.main-nav a { position: relative; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.main-nav a::after { position: absolute; right: 100%; bottom: -8px; left: 0; height: 1px; content: ""; background: var(--gold); transition: right .25s ease; }
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid var(--brown);
  color: #fff;
  background: var(--brown);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.button:hover { color: var(--brown); background: transparent; transform: translateY(-2px); }
.button-small { min-height: 44px; gap: 12px; padding-inline: 18px; font-size: 11px; }
.button-wide { width: 100%; }
.button-outline { color: var(--brown); background: transparent; }
.button-outline:hover { color: #fff; background: var(--brown); }
.text-link { display: inline-flex; align-items: center; gap: 15px; border-bottom: 1px solid currentColor; padding-bottom: 5px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--brown-2); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 1px; background: var(--gold); }

.hero { position: relative; min-height: 790px; overflow: hidden; padding-top: 84px; }
.hero::before { position: absolute; top: -180px; left: -180px; width: 520px; height: 520px; border: 1px solid rgba(181, 138, 67, .18); border-radius: 50%; content: ""; }
.hero-inner { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; min-height: 700px; gap: 60px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 12px; }
.hero h1 { max-width: 650px; margin: 0; color: var(--brown); font-family: var(--serif); font-size: clamp(58px, 6.2vw, 91px); font-weight: 500; letter-spacing: -.045em; line-height: .9; }
.hero h1 em, .section-heading h2 em, .story-copy h2 em, .orders h2 em, .social-proof h2 em, .faq h2 em { color: var(--gold); font-weight: 500; }
.hero-lead { max-width: 480px; margin: 32px 0 34px; color: var(--brown-2); font-size: 16px; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 56px; color: var(--brown-2); font-family: var(--serif); font-size: 15px; font-style: italic; }
.hero-trust span:nth-child(2) { color: var(--gold); font-size: 8px; }
.hero-visual { position: relative; min-height: 610px; }
.hero-orbit { position: absolute; inset: 60px 0 0 100px; width: 490px; height: 490px; border: 1px solid rgba(181, 138, 67, .35); border-radius: 50%; }
.hero-photo { position: absolute; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.hero-photo:hover img { transform: scale(1.025); }
.hero-photo-main { top: 15px; right: 0; width: min(75%, 470px); height: 550px; border-radius: 240px 240px 12px 12px; }
.hero-photo-main img { object-position: center 45%; }
.hero-photo-small { bottom: 5px; left: 0; width: 210px; height: 265px; border: 8px solid var(--ivory); border-radius: 110px 110px 8px 8px; }
.made-mark { position: absolute; right: -10px; bottom: 4px; display: grid; width: 118px; height: 118px; place-items: center; color: var(--brown); }
.made-mark svg { position: absolute; width: 100%; height: 100%; animation: rotateMark 24s linear infinite; }
.made-mark text { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 2.1px; fill: var(--brown); }
.made-mark span { font-family: var(--serif); font-size: 28px; }
@keyframes rotateMark { to { transform: rotate(360deg); } }

.craft-strip { border-block: 1px solid var(--line); background: rgba(255, 253, 248, .45); }
.craft-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.craft-item { display: flex; align-items: flex-start; min-height: 164px; gap: 16px; padding: 38px 28px; border-left: 1px solid var(--line); }
.craft-item:last-child { border-right: 1px solid var(--line); }
.craft-number { color: var(--gold); font-family: var(--serif); font-size: 13px; }
.craft-item h2 { margin: 0; color: var(--brown); font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.1; }
.craft-item p { margin: 9px 0 0; color: var(--brown-2); font-size: 12px; line-height: 1.6; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 58px; }
.section-heading h2, .story-copy h2, .orders h2, .social-proof h2, .faq h2 { margin: 0; color: var(--brown); font-family: var(--serif); font-size: clamp(46px, 5vw, 70px); font-weight: 500; letter-spacing: -.035em; line-height: .95; }
.section-heading > p { max-width: 355px; margin: 0 0 4px; color: var(--brown-2); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 56px 24px; }
.product-card-tall { align-self: start; }
.product-image { position: relative; display: block; height: 390px; overflow: hidden; background: var(--beige); }
.product-card-tall .product-image { height: 580px; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,.61,.36,1); }
.product-image:hover img { transform: scale(1.04); }
.product-arrow { position: absolute; right: 16px; bottom: 16px; display: grid; width: 48px; height: 48px; border-radius: 50%; color: var(--brown); background: rgba(255,253,248,.9); place-items: center; transition: color .25s ease, background .25s ease, transform .25s ease; }
.product-image:hover .product-arrow { color: #fff; background: var(--brown); transform: rotate(45deg); }
.product-info { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding-top: 19px; border-top: 1px solid var(--line); margin-top: 13px; }
.product-info p { margin: 0 0 3px; color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.product-info h3 { margin: 0; color: var(--brown); font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1; }
.product-info > a { flex: 0 0 auto; border-bottom: 1px solid var(--brown); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.collection-footer { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 75px; }
.collection-footer p { margin: 0; color: var(--brown-2); font-family: var(--serif); font-size: 20px; font-style: italic; }

.story { position: relative; overflow: hidden; color: var(--paper); background: var(--brown); }
.story::before { position: absolute; top: -300px; right: -260px; width: 750px; height: 750px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.story-inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; }
.story-collage { position: relative; min-height: 650px; }
.story-collage figure { position: absolute; margin: 0; overflow: hidden; }
.story-collage img { width: 100%; height: 100%; object-fit: cover; }
.story-photo-main { inset: 0 80px 20px 0; border-radius: 230px 230px 4px 4px; }
.story-photo-detail { right: 0; bottom: 0; width: 220px; height: 285px; border: 8px solid var(--brown); }
.story-caption { position: absolute; top: 34px; right: -16px; color: var(--sand); font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.1; transform: rotate(90deg); transform-origin: left bottom; }
.eyebrow-light { color: var(--sand); }
.story-copy h2 { color: var(--paper); }
.story-intro { margin: 34px 0 18px; color: #fff; font-family: var(--serif); font-size: 23px; line-height: 1.45; }
.story-copy > p:not(.eyebrow):not(.story-intro) { color: rgba(255,255,255,.65); }
.signature { margin-top: 38px; color: var(--sand); font-family: var(--serif); font-size: 42px; font-style: italic; }
.signature span { font-size: 26px; }

.orders { background: var(--paper); }
.orders-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; }
.orders-heading { position: sticky; top: 140px; align-self: start; }
.order-steps { border-top: 1px solid var(--line); }
.order-step { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.order-step > span { color: var(--gold); font-family: var(--serif); }
.order-step h3 { margin: 0 0 6px; color: var(--brown); font-family: var(--serif); font-size: 25px; font-weight: 600; }
.order-step p { margin: 0; color: var(--brown-2); font-size: 13px; }
.order-steps .button { margin-top: 34px; }
.contact-fallback { margin: 12px 0 0; color: var(--brown-2); font-size: 11px; text-align: center; }

.social-proof { padding-block: 90px; background: var(--beige); }
.social-proof-inner { display: grid; grid-template-columns: 290px 1fr; align-items: center; gap: 80px; max-width: 920px; }
.social-monogram { display: grid; width: 250px; height: 250px; border: 1px solid rgba(181,138,67,.55); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 150px; line-height: 1; place-items: center; }
.social-proof h2 { font-size: clamp(42px, 4.5vw, 62px); }
.social-proof p:not(.eyebrow) { max-width: 560px; color: var(--brown-2); }

.faq-inner { display: grid; grid-template-columns: .75fr 1.25fr; gap: 120px; }
.faq-heading > p:not(.eyebrow) { color: var(--brown-2); }
.faq-heading .button { margin-top: 18px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 27px 0; color: var(--brown); font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.2; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { flex: 0 0 auto; color: var(--gold); font-family: var(--sans); font-size: 22px; font-weight: 400; transition: transform .25s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 650px; margin: -5px 0 28px; color: var(--brown-2); font-size: 13px; }
.accordion details p a { border-bottom: 1px solid var(--gold); }

.final-cta { padding: 65px 0; color: #fff; background: var(--green); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta p { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 54px); font-style: italic; line-height: 1; }
.final-cta a { display: inline-flex; align-items: center; gap: 50px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.65); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

.site-footer { color: var(--beige); background: #251915; }
.footer-top { display: grid; grid-template-columns: 1.8fr .7fr .7fr; gap: 90px; padding-block: 70px; }
.footer-brand img {
  width: 190px;
  height: 106px;
  object-fit: contain;
  object-position: left center;
  filter: saturate(.92) brightness(1.08) drop-shadow(0 0 8px rgba(181, 138, 67, .18));
}
.footer-brand p { max-width: 330px; color: rgba(255,255,255,.55); font-size: 13px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links p { margin: 0 0 10px; color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 18px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; align-items: center; gap: 9px; min-height: 50px; padding: 0 17px; border: 1px solid rgba(255,255,255,.25); border-radius: 30px; color: #fff; background: var(--green); box-shadow: 0 9px 30px rgba(36,29,24,.22); font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: transform .25s ease; }
.floating-contact:hover { transform: translateY(-3px); }
.floating-contact svg { width: 20px; height: 20px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal-delay { transition-delay: .15s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 760px); }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { position: relative; z-index: 2; display: grid; width: 46px; height: 46px; padding: 12px; border: 1px solid var(--line); background: transparent; place-content: center; gap: 7px; }
  .menu-toggle span { display: block; width: 20px; height: 1px; background: var(--brown); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; visibility: hidden; opacity: 0; background: var(--ivory); transition: opacity .25s ease, visibility .25s ease; }
  .main-nav.is-open { visibility: visible; opacity: 1; }
  .main-nav a { font-family: var(--serif); font-size: 32px; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .hero { min-height: auto; padding-block: 130px 70px; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 55px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { min-height: 660px; }
  .hero-photo-main { right: 2%; width: 72%; }
  .hero-photo-small { left: 5%; }
  .hero-orbit { left: 12%; }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-item:nth-child(3) { border-top: 1px solid var(--line); }
  .craft-item:nth-child(4) { border-top: 1px solid var(--line); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; gap: 70px; }
  .story-collage { max-width: 630px; width: 100%; }
  .story-copy { max-width: 620px; }
  .orders-inner, .faq-inner { grid-template-columns: 1fr; gap: 60px; }
  .orders-heading { position: static; }
  .social-proof-inner { grid-template-columns: 210px 1fr; gap: 45px; }
  .social-monogram { width: 200px; height: 200px; font-size: 120px; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 32px); }
  .section { padding-block: 82px; }
  .header-inner { min-height: 72px; }
  .brand { width: 126px; height: 54px; }
  .hero { padding-top: 110px; }
  .hero h1 { font-size: clamp(51px, 15vw, 68px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-trust { align-items: flex-start; flex-wrap: wrap; gap: 9px; margin-top: 40px; font-size: 13px; }
  .hero-visual { min-height: 490px; }
  .hero-orbit { inset: 35px auto auto 12%; width: 360px; height: 360px; }
  .hero-photo-main { top: 0; right: 0; width: 82%; height: 430px; }
  .hero-photo-small { bottom: 0; left: 0; width: 145px; height: 190px; border-width: 6px; }
  .made-mark { right: -3px; bottom: -4px; width: 92px; height: 92px; }
  .made-mark text { font-size: 8px; letter-spacing: 1.5px; }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-item { min-height: auto; padding: 27px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .craft-item:last-child { border-bottom: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 24px; margin-bottom: 42px; }
  .section-heading h2, .story-copy h2, .orders h2, .social-proof h2, .faq h2 { font-size: 47px; }
  .product-grid { grid-template-columns: 1fr; gap: 46px; }
  .product-card-tall { align-self: start; }
  .product-image, .product-card-tall .product-image { height: min(118vw, 500px); }
  .product-info h3 { font-size: 22px; }
  .collection-footer { align-items: flex-start; flex-direction: column; }
  .story-inner { gap: 58px; }
  .story-collage { min-height: 500px; }
  .story-photo-main { inset: 0 35px 20px 0; border-radius: 180px 180px 4px 4px; }
  .story-photo-detail { width: 140px; height: 190px; }
  .story-caption { display: none; }
  .story-intro { font-size: 20px; }
  .orders-inner, .faq-inner { gap: 48px; }
  .order-step { grid-template-columns: 32px 1fr; gap: 12px; }
  .social-proof { padding-block: 75px; }
  .social-proof-inner { grid-template-columns: 1fr; gap: 36px; }
  .social-monogram { width: 150px; height: 150px; font-size: 90px; }
  .accordion summary { font-size: 21px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .floating-contact { right: 14px; bottom: 14px; width: 50px; padding: 0; justify-content: center; }
  .floating-contact span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
}

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