:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --text: #111111;
  --muted: #6f6f6f;
  --line: #d8d6d1;
  --accent: #c7a25f;
  --max: 1440px;
  --frame: 1520px;
  --hero-max: 1680px;
  --frame-line: #e5e3de;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fcfcfb;
  color: var(--text);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .8rem 1rem;
  background: #000;
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(calc(100% - 3rem), var(--frame));
  transform: translateX(-50%);
  padding: 2.4rem clamp(1.5rem, 3vw, 3.5rem);
}
.brand-logo {
  display: block;
  width: clamp(210px, 23vw, 355px);
  line-height: 0;
}
.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.hero {
  position: relative;
  width: calc(100% - 3rem);
  max-width: var(--hero-max);
  min-height: 680px;
  height: min(76vh, 860px);
  overflow: hidden;
  margin: 1.5rem auto 0;
  background: #e9edf0;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 52%;
}
.hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 29%, rgba(255,255,255,.30) 53%, rgba(255,255,255,0) 72%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6.5rem var(--pad) 2rem;
}
.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7.3vw, 7.2rem);
  font-weight: 400;
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.hero p {
  margin: 1.9rem 0 0;
  font-size: clamp(.9rem, 1.1vw, 1.12rem);
  line-height: 1.75;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.accent-line {
  width: 52px;
  height: 1px;
  margin-top: 2rem;
  background: var(--accent);
}

/* Editorial frame: subtle vertical rules create a calm magazine-like grid on desktop. */
.countdown-section,
.gallery,
.site-footer {
  width: calc(100% - 3rem);
  max-width: var(--frame);
  margin-inline: auto;
  border-left: 1px solid var(--frame-line);
  border-right: 1px solid var(--frame-line);
}

.countdown-section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 5rem) clamp(4.5rem, 7vw, 7rem);
  text-align: center;
  background: var(--surface);
}
.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: .9rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.countdown-section > h2 {
  margin: .7rem 0 2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: .08em;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}
.countdown__item {
  position: relative;
  padding: 0 clamp(.6rem, 2vw, 2rem);
}
.countdown__item + .countdown__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  width: 1px;
  height: 80%;
  background: rgba(199,162,95,.7);
}
.countdown__item strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 1;
}
.countdown__item span {
  display: block;
  margin-top: .9rem;
  color: var(--accent);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.journey { margin-top: clamp(3.4rem, 6vw, 5.5rem); }
.journey h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  text-transform: uppercase;
}
.journey .accent-line { display: block; margin: 1.25rem auto 1.1rem; }
.journey p {
  margin: 0;
  color: #333;
  font-size: clamp(.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}
.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  min-width: min(100%, 440px);
  margin-top: 1.7rem;
  padding: 1rem 1.5rem;
  background: #101010;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .88rem;
  transition: transform .2s ease, background .2s ease;
}
.instagram-button svg, .footer-instagram svg { fill: currentColor; }
.instagram-button:hover { background: #2a2a2a; transform: translateY(-2px); }
.instagram-button:focus-visible, .footer-instagram:focus-visible, .brand-logo:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.6vw, 1.5rem);
  padding: 0 clamp(1.5rem, 3vw, 3.5rem) clamp(4rem, 7vw, 7rem);
  background: var(--surface);
}
.gallery figure { margin: 0; overflow: hidden; aspect-ratio: 1.55 / 1; background: #eee; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.025); }

.site-footer {
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 3vw, 3.5rem) 1.75rem;
  background: var(--surface);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.brand-logo--footer { width: clamp(185px, 18vw, 285px); }
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .85rem;
  white-space: nowrap;
}
.footer__legal {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: #777;
  text-align: center;
  font-size: .72rem;
  line-height: 1.55;
}
.footer__legal p { margin: 0; }

@media (max-width: 820px) {
  .hero,
  .countdown-section,
  .gallery,
  .site-footer {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }
  .hero { margin-top: 0; }
  .site-header { width: 100%; padding: 1.4rem var(--pad) 0; }
  .hero { min-height: 700px; height: 92svh; }
  .hero__image { object-position: 66% center; }
  .hero__wash { background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.60) 42%, rgba(255,255,255,.2) 70%, rgba(255,255,255,0) 100%); }
  .hero__content { justify-content: flex-start; padding-top: 9rem; }
  .hero h1 { max-width: 7ch; font-size: clamp(3.25rem, 15vw, 5.4rem); }
  .hero p { max-width: 28rem; font-size: .78rem; letter-spacing: .17em; }
  .countdown { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; max-width: 500px; }
  .countdown__item:nth-child(3)::before { display: none; }
  .countdown__item strong { font-size: clamp(3.5rem, 15vw, 5rem); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__top { align-items: flex-start; }
}

@media (max-width: 560px) {
  .brand-logo { width: min(68vw, 270px); }
  .hero { min-height: 660px; }
  .hero__image { object-position: 64% center; }
  .hero__content { padding-top: 8rem; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .hero p br, .journey p br { display: none; }
  .countdown-section { padding-inline: 1rem; }
  .countdown__item { padding-inline: .3rem; }
  .countdown__item strong { font-size: 3.4rem; }
  .countdown__item span { font-size: .68rem; letter-spacing: .17em; }
  .journey h2 { font-size: 2rem; }
  .instagram-button { width: 100%; min-width: 0; font-size: .75rem; }
  .gallery { gap: 8px; padding-inline: 8px; padding-bottom: 3rem; }
  .gallery figure { aspect-ratio: 1 / 1; }
  .footer__top { flex-direction: column; align-items: center; text-align: center; }
  .brand-logo--footer { width: min(64vw, 245px); }
  .footer-instagram { font-size: .72rem; }
  .footer__legal { text-align: left; font-size: .68rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Final logo integrity fix: use the tightly cropped original artwork without distortion. */
.brand-logo {
  width: clamp(230px, 24vw, 360px);
  max-width: 100%;
}
.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.site-header {
  padding-left: clamp(1.5rem, 3vw, 3.5rem);
  padding-right: clamp(1.5rem, 3vw, 3.5rem);
}
.brand-logo--footer {
  width: clamp(205px, 18vw, 290px);
}
@media (max-width: 560px) {
  .brand-logo { width: min(72vw, 285px); }
  .brand-logo--footer { width: min(68vw, 255px); }
}
