:root {
  --black: #090808;
  --black-soft: #121011;
  --charcoal: #201c1d;
  --tobacco: #4a3025;
  --gold: #b89345;
  --gold-bright: #e0c46d;
  --copper: #b86d3a;
  --blue: #37a6c3;
  --cream: #f1ead8;
  --muted: #aaa18d;
  --line: rgba(190, 153, 74, 0.28);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 7% 32%, rgba(74, 48, 37, 0.3), transparent 32rem),
    linear-gradient(180deg, #0b0909 0%, #110e0f 51%, #080707 100%);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 90;
  border: 1px solid rgba(224, 196, 109, 0.22);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--cream);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-frame::before,
.page-frame::after {
  position: fixed;
  z-index: 89;
  top: 0;
  width: 1px;
  height: 100vh;
  background: linear-gradient(transparent, rgba(184, 147, 69, 0.38) 15%, rgba(55, 166, 195, 0.16) 62%, transparent);
  content: "";
  pointer-events: none;
}

.page-frame::before { left: 1rem; }
.page-frame::after { right: 1rem; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: min(calc(100% - 3rem), 88rem);
  min-height: 6.4rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(241, 234, 216, 0.14);
  transform: translateX(-50%);
}

.header-emblem {
  width: 5.2rem;
  transition: opacity 180ms ease;
}

.header-emblem:hover { opacity: 0.76; }

.origin-mark,
.adult-mark {
  margin: 0;
  color: rgba(241, 234, 216, 0.74);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.origin-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.origin-mark span { color: var(--gold-bright); }
.origin-mark i { width: 2rem; height: 1px; background: var(--line); }

.adult-mark {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.65rem;
}

.adult-mark span {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 0.72rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 69% 44%, rgba(55, 166, 195, 0.14), transparent 17rem),
    radial-gradient(circle at 20% 62%, rgba(184, 109, 58, 0.16), transparent 34rem),
    #0b0909;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 8, 0.98) 0%, rgba(9, 8, 8, 0.9) 34%, rgba(9, 8, 8, 0.25) 67%, rgba(9, 8, 8, 0.42) 100%),
    linear-gradient(180deg, rgba(9, 8, 8, 0.12), rgba(9, 8, 8, 0.34));
  content: "";
}

.hero-photo {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: 61%;
  height: 100%;
  overflow: hidden;
}

.hero-photo::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #0b0909 0%, transparent 38%),
    linear-gradient(180deg, rgba(8, 7, 7, 0.25), transparent 36%, rgba(8, 7, 7, 0.62));
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.72) contrast(1.1) brightness(0.66);
  transform: scale(1.045);
  animation: hero-drift 16s ease-out both;
}

.hero-noise {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  width: min(calc(100% - 3rem), 88rem);
  min-height: 100%;
  margin: 0 auto;
  padding: 9.5rem 0 6.2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(19rem, 0.78fr) auto;
  align-items: center;
  gap: clamp(1rem, 4vw, 5rem);
}

.hero-copy {
  align-self: center;
  animation: rise-in 900ms 120ms cubic-bezier(.2,.75,.22,1) both;
}

.overline {
  display: flex;
  margin: 0 0 1.25rem;
  align-items: center;
  gap: 0.8rem;
  color: rgba(241, 234, 216, 0.65);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.overline span { color: var(--gold-bright); }
.overline::after { width: 2.8rem; height: 1px; background: var(--line); content: ""; }

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 8.7vw, 8rem);
}

h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-summary {
  max-width: 33rem;
  margin: 1.8rem 0 0;
  color: rgba(241, 234, 216, 0.72);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 2.4rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.7rem;
}

.button {
  position: relative;
  display: flex;
  min-width: 18.5rem;
  min-height: 5rem;
  padding: 0.8rem 1.15rem;
  align-items: center;
  gap: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(224, 196, 109, 0.42);
  color: var(--cream);
  background: rgba(20, 16, 15, 0.8);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.34);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform 200ms ease, border-color 200ms ease;
}

.button::before {
  position: absolute;
  top: -90%;
  left: -35%;
  width: 30%;
  height: 280%;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 160, 0.17), transparent);
  content: "";
  transform: rotate(22deg);
  transition: left 700ms ease;
}

.button:hover { border-color: var(--gold-bright); transform: translateY(-3px); }
.button:hover::before { left: 115%; }

.button svg {
  width: 1.55rem;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.4;
}

.button .icon-fill { fill: var(--gold-bright); stroke: none; }
.button > span { display: grid; }
.button small { color: var(--muted); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.button strong { font-size: 1rem; }
.button b { margin-left: auto; color: var(--gold-bright); font-size: 1.2rem; font-weight: 400; }

.discover-link {
  padding: 0.7rem 0;
  color: rgba(241, 234, 216, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration-color: rgba(184, 147, 69, 0.6);
  text-underline-offset: 0.45rem;
  text-transform: uppercase;
}

.discover-link span { margin-left: 0.45rem; color: var(--gold-bright); }

.hero-seal {
  position: relative;
  z-index: 2;
  width: min(100%, 36rem);
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 2.3rem 2.2rem rgba(0, 0, 0, 0.68));
  animation: seal-in 1.15s 300ms cubic-bezier(.18,.78,.2,1) both;
}

.hero-seal img { position: relative; z-index: 2; width: 100%; }

.seal-halo {
  position: absolute;
  z-index: 0;
  inset: 17% 9%;
  background: radial-gradient(circle, rgba(224, 196, 109, 0.25), rgba(55, 166, 195, 0.11) 35%, transparent 70%);
  filter: blur(24px);
}

.hero-index {
  display: grid;
  align-self: end;
  padding-bottom: 1rem;
  gap: 0.65rem;
  animation: rise-in 850ms 520ms ease both;
}

.hero-index p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 0.75rem;
  color: rgba(241, 234, 216, 0.54);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-index span { color: var(--gold); font-family: var(--serif); font-size: 0.82rem; }

.scroll-cue {
  position: absolute;
  z-index: 7;
  bottom: 0;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  color: rgba(241, 234, 216, 0.48);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 3rem;
  background: linear-gradient(var(--gold), transparent);
}

.signature-section,
.reserve-section,
.craft-section,
.contact-section,
.site-footer {
  width: min(calc(100% - 3rem), 88rem);
  margin-inline: auto;
}

.signature-section {
  position: relative;
  display: grid;
  min-height: 63rem;
  padding: clamp(8rem, 14vw, 13rem) 0;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.62fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
}

.giant-year {
  position: absolute;
  z-index: -1;
  top: 2.4rem;
  left: 49%;
  margin: 0;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(10rem, 24vw, 24rem);
  letter-spacing: -0.09em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(184, 147, 69, 0.13);
  transform: translateX(-50%);
  white-space: nowrap;
}

.signature-copy { max-width: 44rem; }

h2 { font-size: clamp(3.15rem, 7.3vw, 6.7rem); }

.signature-copy > p:not(.overline),
.reserve-heading > p:not(.overline),
.craft-copy > p:not(.overline) {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.signature-facts {
  display: grid;
  margin: 3.3rem 0 0;
  border-block: 1px solid var(--line);
}

.signature-facts div {
  display: grid;
  padding: 1.15rem 0;
  grid-template-columns: 8.5rem 1fr;
  align-items: baseline;
  gap: 1rem;
}

.signature-facts div + div { border-top: 1px solid rgba(184, 147, 69, 0.16); }
.signature-facts dt { color: var(--gold); font-size: 0.69rem; font-weight: 750; letter-spacing: 0.15em; text-transform: uppercase; }
.signature-facts dd { margin: 0; font-family: var(--serif); font-size: 1.2rem; }

.signature-photo {
  position: relative;
  width: min(100%, 32rem);
  margin: 0;
  padding: 0.65rem;
  justify-self: end;
  border: 1px solid var(--line);
  background: rgba(32, 28, 29, 0.48);
  box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.34);
}

.signature-photo::before {
  position: absolute;
  z-index: -1;
  inset: 1.3rem -1.3rem -1.3rem 1.3rem;
  border: 1px solid rgba(55, 166, 195, 0.16);
  content: "";
}

.signature-photo img {
  width: 100%;
  aspect-ratio: 0.67;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.photo-number {
  position: absolute;
  z-index: 3;
  top: 1.45rem;
  right: 1.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(241, 234, 216, 0.25);
  color: var(--gold-bright);
  background: rgba(9, 8, 8, 0.63);
  font-family: var(--serif);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.signature-photo figcaption {
  display: flex;
  padding: 1rem 0.25rem 0.35rem;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-photo figcaption strong { color: var(--cream); font-weight: 650; }

.reserve-section {
  padding: clamp(7rem, 12vw, 11rem) 0;
  border-top: 1px solid var(--line);
}

.reserve-heading {
  display: grid;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.45fr);
  align-items: end;
  gap: 2rem;
}

.reserve-heading .overline { grid-column: 1 / -1; }
.reserve-heading h2 { max-width: 8ch; }
.reserve-heading > p:not(.overline) { margin: 0 0 0.55rem; }

.reserve-list { display: grid; gap: clamp(4rem, 9vw, 8rem); }

.reserve-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(11rem, 0.28fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.reserve-item::before {
  position: absolute;
  z-index: -2;
  top: 50%;
  right: -5vw;
  left: 13%;
  height: 78%;
  border: 1px solid rgba(184, 147, 69, 0.18);
  background: linear-gradient(110deg, rgba(74, 48, 37, 0.2), rgba(19, 16, 17, 0.8));
  content: "";
  transform: translateY(-50%);
}

.reserve-habano::before {
  background: linear-gradient(110deg, rgba(184, 147, 69, 0.16), rgba(19, 16, 17, 0.76));
}

.reserve-meta { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; }
.reserve-number { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.reserve-meta p { margin: 0 0 0.2rem; color: var(--muted); font-size: 0.65rem; font-weight: 750; letter-spacing: 0.18em; text-transform: uppercase; }
.reserve-meta h3 { font-size: clamp(2.5rem, 4.8vw, 4.8rem); }
.reserve-meta small { grid-column: 2; color: var(--gold); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }

.reserve-item figure {
  position: relative;
  margin: 0;
  padding: clamp(1.2rem, 3vw, 2.3rem);
  overflow: hidden;
}

.reserve-item figure::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(224, 196, 109, 0.12), transparent 65%);
  content: "";
}

.reserve-item img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 1.7rem 1.1rem rgba(0, 0, 0, 0.62));
  transition: transform 500ms cubic-bezier(.2,.75,.22,1);
}

.reserve-item:hover img { transform: translateY(-6px) scale(1.015); }

.foil-line {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -20%;
  width: 10%;
  background: linear-gradient(90deg, transparent, rgba(255, 231, 145, 0.12), transparent);
  transform: skewX(-14deg);
  transition: left 900ms ease;
}

.reserve-item:hover .foil-line { left: 120%; }

.craft-section {
  display: grid;
  padding: clamp(7rem, 13vw, 12rem) 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.62fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  border-top: 1px solid var(--line);
}

.craft-photo {
  position: relative;
  margin: 0;
  padding: 0.65rem;
  border: 1px solid var(--line);
  background: #171314;
}

.craft-photo::after {
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(241, 234, 216, 0.13);
  box-shadow: inset 0 0 5rem rgba(9, 8, 8, 0.42);
  content: "";
  pointer-events: none;
}

.craft-photo img {
  width: 100%;
  min-height: 24rem;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.12);
}

.craft-photo > span {
  position: absolute;
  z-index: 3;
  right: -2.2rem;
  bottom: 4rem;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-90deg);
}

.craft-copy h2 { max-width: 7ch; }

.material-key {
  display: flex;
  margin-top: 2.6rem;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.material-key span {
  display: flex;
  min-width: 5rem;
  padding: 0.55rem 0.75rem;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(241, 234, 216, 0.12);
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.material-key span::before { width: 0.6rem; height: 0.6rem; border-radius: 50%; content: ""; }
.key-gold::before { background: var(--gold); }
.key-copper::before { background: var(--copper); }
.key-blue::before { background: var(--blue); }
.key-black::before { background: #2b2829; border: 1px solid #514b4d; }

.contact-section {
  position: relative;
  display: grid;
  min-height: 42rem;
  padding: clamp(4rem, 8vw, 7rem);
  align-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 45%, rgba(55, 166, 195, 0.12), transparent 22rem),
    linear-gradient(130deg, rgba(74, 48, 37, 0.38), rgba(13, 11, 11, 0.96) 62%);
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  width: 11rem;
  height: 11rem;
  border-color: rgba(224, 196, 109, 0.3);
  content: "";
  pointer-events: none;
}

.contact-section::before { top: 1.2rem; left: 1.2rem; border-top: 1px solid; border-left: 1px solid; }
.contact-section::after { right: 1.2rem; bottom: 1.2rem; border-right: 1px solid; border-bottom: 1px solid; }

.contact-section > *:not(.contact-watermark) { position: relative; z-index: 2; }
.contact-section h2 { max-width: 8ch; }
.contact-copy { margin: 1.8rem 0 0; color: var(--muted); font-family: var(--serif); font-size: 1.15rem; }

.contact-watermark {
  position: absolute;
  right: -3%;
  bottom: -18%;
  width: min(58%, 46rem);
  opacity: 0.18;
  filter: saturate(0.6);
  transform: rotate(-7deg);
}

.instagram-link {
  display: flex;
  width: min(100%, 34rem);
  margin-top: 3rem;
  padding: 1rem 0;
  align-items: center;
  justify-content: space-between;
  border-block: 1px solid rgba(224, 196, 109, 0.44);
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.7rem);
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease;
}

.instagram-link:hover { padding-inline: 0.5rem; color: var(--gold-bright); }
.instagram-link b { color: var(--gold-bright); font-family: var(--sans); font-size: 1.5rem; font-weight: 400; }

.site-footer {
  display: grid;
  padding: 4rem 0 6.5rem;
  grid-template-columns: auto minmax(17rem, 1fr) auto;
  align-items: end;
  gap: 2.5rem;
}

.footer-parent { display: flex; align-items: center; gap: 1rem; }
.footer-parent p { margin: 0; color: #777061; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-parent img { width: 7.5rem; }
.footer-note,
.footer-copy { margin: 0; color: #777061; font-size: 0.72rem; }
.footer-note { max-width: 34rem; }
.footer-copy { justify-self: end; white-space: nowrap; }

.mobile-instagram { display: none; }

[data-reveal] {
  opacity: 0;
  transform: translateY(2.1rem);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(.2,.7,.2,1);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes seal-in {
  from { opacity: 0; transform: translateY(1.5rem) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-drift {
  from { transform: scale(1.09); }
  to { transform: scale(1.045); }
}

@media (max-width: 67rem) {
  .hero-content { grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.78fr); }
  .hero-index { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .origin-mark { display: none; }
  .reserve-item { grid-template-columns: minmax(9rem, 0.26fr) minmax(0, 1fr); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 47.99rem) {
  body { padding-bottom: 4.5rem; }
  body::before { border-color: rgba(224, 196, 109, 0.15); }
  .page-frame::before { left: 0.65rem; }
  .page-frame::after { right: 0.65rem; }

  .site-header,
  .hero-content,
  .signature-section,
  .reserve-section,
  .craft-section,
  .contact-section,
  .site-footer {
    width: min(calc(100% - 2rem), 88rem);
  }

  .site-header { min-height: 5.3rem; }
  .header-emblem { width: 4.4rem; }
  .adult-mark { font-size: 0; }
  .adult-mark span { width: 2rem; height: 2rem; font-size: 0.67rem; }

  .hero { min-height: 52rem; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(9, 8, 8, 0.55) 0%, rgba(9, 8, 8, 0.13) 31%, rgba(9, 8, 8, 0.9) 60%, #0b0909 100%);
  }

  .hero-photo { width: 100%; height: 63%; }
  .hero-photo::before { background: linear-gradient(180deg, rgba(8, 7, 7, 0.22), transparent 35%, #0b0909 100%); }
  .hero-photo img { object-position: center 46%; filter: saturate(0.76) contrast(1.08) brightness(0.59); }

  .hero-content {
    padding: 6.8rem 0 5rem;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(15rem, 0.72fr) auto;
    align-content: center;
    gap: 1.4rem;
  }

  .hero-seal { grid-row: 1; width: min(78vw, 23rem); align-self: center; }
  .hero-copy { grid-row: 2; align-self: end; }
  .hero-copy .overline { margin-bottom: 0.85rem; }
  h1 { font-size: clamp(3.7rem, 17vw, 5.4rem); }
  .hero-summary { max-width: 27rem; margin-top: 1.15rem; font-size: 1.02rem; }
  .hero-actions { margin-top: 1.55rem; }
  .button { width: 100%; min-width: 0; min-height: 4.65rem; }
  .discover-link { display: none; }
  .scroll-cue { display: none; }

  .signature-section {
    min-height: 0;
    padding: 7.5rem 0 8.5rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .giant-year { top: 1.5rem; left: 46%; font-size: 42vw; }
  h2 { font-size: clamp(3.1rem, 14vw, 4.7rem); }
  .signature-copy > p:not(.overline),
  .reserve-heading > p:not(.overline),
  .craft-copy > p:not(.overline) { font-size: 1.05rem; }
  .signature-facts div { grid-template-columns: 7.2rem 1fr; }
  .signature-facts dd { font-size: 1rem; }
  .signature-photo { width: calc(100% - 0.7rem); justify-self: start; }

  .reserve-section { padding: 7.5rem 0 8.5rem; }
  .reserve-heading { margin-bottom: 4rem; grid-template-columns: 1fr; gap: 1.3rem; }
  .reserve-heading .overline { grid-column: auto; }
  .reserve-heading > p:not(.overline) { margin: 0; }
  .reserve-list { gap: 6rem; }

  .reserve-item {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .reserve-item::before { top: 57%; right: -1.25rem; left: 2.6rem; height: 72%; }
  .reserve-meta { padding-inline: 0.35rem; }
  .reserve-meta h3 { font-size: 3.2rem; }
  .reserve-item figure { margin-inline: -0.5rem; padding: 1rem 0; }

  .craft-section {
    padding: 7.5rem 0 8.5rem;
    grid-template-columns: 1fr;
    gap: 3.8rem;
  }

  .craft-photo { margin-right: 0.7rem; }
  .craft-photo img { min-height: 18rem; }
  .craft-photo > span { right: -2.4rem; }
  .craft-copy h2 { max-width: 8ch; }

  .contact-section { min-height: 35rem; padding: 3rem 2rem; }
  .contact-watermark { right: -25%; bottom: -4%; width: 100%; }
  .contact-section h2 { font-size: 4.3rem; }
  .instagram-link { font-size: 1.65rem; }

  .site-footer {
    padding: 3.5rem 0 3rem;
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .footer-parent { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
  .footer-parent img { width: 8.2rem; }
  .footer-note { grid-column: auto; grid-row: auto; }
  .footer-copy { justify-self: start; }

  .mobile-instagram {
    position: fixed;
    z-index: 80;
    right: 0.75rem;
    bottom: 0.7rem;
    left: 0.75rem;
    display: flex;
    min-height: 3.65rem;
    padding: 0.75rem 1rem;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(224, 196, 109, 0.6);
    color: #18110b;
    background: linear-gradient(105deg, #a87c32, #e0c46d 52%, #a9782f);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.46);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-instagram b { font-size: 1.2rem; }
}

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

  [data-reveal] { opacity: 1; transform: none; }
}
