:root {
  --sand-50: #f6efe4;
  --sand-100: #eadfce;
  --sand-200: #dac4aa;
  --terracotta-400: #b86c43;
  --terracotta-500: #995536;
  --olive-500: #5f6b45;
  --olive-700: #33412c;
  --cocoa-800: #2e221c;
  --cocoa-900: #1d1512;
  --white: #fffdf8;
  --shadow: 0 24px 80px rgba(32, 19, 11, 0.14);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --content-width: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--cocoa-900);
  background:
    radial-gradient(circle at top left, rgba(210, 176, 133, 0.28), transparent 28%),
    radial-gradient(circle at right 20%, rgba(126, 149, 101, 0.18), transparent 24%),
    linear-gradient(180deg, #f3ebdf 0%, #f7f2ea 42%, #efe3d4 100%);
  min-height: 100vh;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(246, 239, 228, 0.72), rgba(246, 239, 228, 0.82)),
    url("./assets/pool-pottery.jpg") center top / cover no-repeat;
  filter: saturate(0.75) blur(0px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -2;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 160px auto auto -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(184, 108, 67, 0.18), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.topbar,
.hero-grid,
.section,
.cta-panel {
  width: var(--content-width);
  margin-inline: auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 10px;
}

.brand {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.topbar-links {
  display: flex;
  gap: 24px;
  color: rgba(46, 34, 28, 0.74);
  font-size: 0.95rem;
}

.hero {
  padding-bottom: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 42px 0 60px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-500);
  margin-bottom: 18px;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2,
.insight-copy h3,
.gallery-text h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--cocoa-900);
}

.hero-copy h1 {
  font-size: clamp(4rem, 10vw, 7.1rem);
  line-height: 0.92;
  max-width: 9ch;
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 54ch;
  color: rgba(46, 34, 28, 0.82);
  margin: 24px 0 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--cocoa-900);
  color: var(--white);
}

.button-secondary {
  border-color: rgba(46, 34, 28, 0.2);
  background: rgba(255, 253, 248, 0.58);
  backdrop-filter: blur(10px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.hero-facts div {
  padding: 18px 20px;
  border: 1px solid rgba(46, 34, 28, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 243, 0.66);
  backdrop-filter: blur(8px);
}

.hero-facts dt {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(46, 34, 28, 0.52);
  margin-bottom: 10px;
}

.hero-facts dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card img,
.gallery-card img,
.insight-figure img {
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 0 46px 110px 0;
}

.hero-card-accent {
  width: 240px;
  height: 320px;
  right: 0;
  bottom: 30px;
  border: 10px solid rgba(255, 248, 240, 0.84);
}

.hero-note {
  position: absolute;
  left: -10px;
  bottom: 60px;
  width: 220px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.88), rgba(245, 233, 218, 0.86));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-note span,
.signature {
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hero-note p {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
}

.section {
  padding: 56px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.manifesto-card,
.insight-panel,
.highlight-card,
.gallery-card,
.cta-panel {
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(46, 34, 28, 0.08);
  box-shadow: var(--shadow);
}

.manifesto-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  font-size: 1.05rem;
  line-height: 1.9;
}

.opening-lines {
  font-size: 1.6rem;
  line-height: 1.45;
  font-family: "Cormorant Garamond", Georgia, serif;
  margin-top: 0;
}

.signature {
  margin-bottom: 0;
}

.insight-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.insight-figure {
  height: 560px;
}

.insight-image-focus-bottom {
  object-position: center bottom;
}

.insight-copy {
  padding: 28px;
}

.insight-copy h3,
.gallery-text h3 {
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 12px;
}

.insight-copy p,
.gallery-text p,
.highlight-card p {
  margin: 0;
  line-height: 1.8;
  color: rgba(46, 34, 28, 0.78);
}

.highlight-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.highlight-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.card-index {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--terracotta-500);
}

.highlight-card h3 {
  margin: 0 0 12px;
  font-size: 1.38rem;
}

.gallery-grid {
  grid-template-columns: 1.25fr 0.75fr;
}

.gallery-card {
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-large {
  grid-row: span 2;
  min-height: 580px;
}

.gallery-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.gallery-text {
  display: grid;
  place-items: center;
  padding: 34px;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lookbook-card {
  min-height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(46, 34, 28, 0.08);
  box-shadow: var(--shadow);
}

.lookbook-card img {
  height: 100%;
  object-fit: cover;
}

.lookbook-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.8);
  backdrop-filter: blur(10px);
  font-size: 0.94rem;
  font-weight: 700;
}

.offer {
  padding-top: 0;
}

.offer-shell,
.footer-inner {
  width: var(--content-width);
  margin-inline: auto;
}

.offer-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 24px;
}

.offer-copy,
.offer-ticket,
.offer-steps,
.site-footer {
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(46, 34, 28, 0.08);
  box-shadow: var(--shadow);
}

.offer-copy,
.offer-ticket,
.offer-info {
  padding: 40px;
}

.offer-copy {
  border-radius: var(--radius-lg);
}

.offer-copy h2,
.offer-info h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 16px;
  line-height: 0.98;
  color: var(--cocoa-900);
}

.offer-copy h2 {
  font-size: clamp(3.2rem, 5.4vw, 4.8rem);
}

.offer-copy p,
.offer-ticket p,
.offer-info p,
.offer-info li {
  color: rgba(46, 34, 28, 0.8);
  line-height: 1.9;
  font-size: 1.06rem;
}

.offer-ticket {
  border-radius: var(--radius-lg);
  display: grid;
  align-content: center;
  justify-items: start;
  background:
    linear-gradient(180deg, rgba(39, 28, 24, 0.96), rgba(82, 50, 33, 0.95)),
    linear-gradient(135deg, rgba(184, 108, 67, 0.42), transparent);
  color: var(--white);
}

.ticket-badge,
.ticket-label,
.offer-deadline,
.offer-note {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticket-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 20px;
}

.ticket-label {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
}

.offer-ticket strong {
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
  margin: 12px 0 14px;
}

.offer-ticket p {
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
}

.offer-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  min-height: 520px;
}

.offer-media {
  min-height: 520px;
}

.offer-media img {
  height: 100%;
  object-fit: cover;
}

.offer-info {
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.86), rgba(241, 229, 214, 0.9));
}

.offer-deadline {
  display: inline-block;
  color: var(--terracotta-500);
  margin-bottom: 18px;
}

.offer-info h3 {
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
}

.offer-info ol {
  margin: 0;
  padding-left: 24px;
}

.offer-info li {
  font-size: 1.75rem;
  line-height: 1.95;
}

.offer-info li + li {
  margin-top: 18px;
}

.offer-note {
  display: inline-block;
  margin-top: 18px;
  color: rgba(46, 34, 28, 0.56);
}

.site-footer {
  margin-top: 24px;
  padding: 18px 0 30px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
  color: rgba(46, 34, 28, 0.68);
}

.footer-inner p {
  margin: 0;
}

.cta {
  padding-bottom: 36px;
}

.cta-panel {
  border-radius: calc(var(--radius-lg) + 8px);
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(247, 240, 230, 0.72) 0%, rgba(247, 240, 230, 0.5) 38%, rgba(34, 53, 22, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 31, 11, 0.08), rgba(16, 31, 11, 0.08)),
    url("./assets/DSC05267.jpg") center 42% / cover;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .manifesto-layout,
  .highlight-grid,
  .gallery-grid,
  .lookbook-grid,
  .offer-shell,
  .offer-steps,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .hero-card-main {
    inset: 0 70px 120px 0;
  }

  .cta-panel {
    display: grid;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 28px, 100%);
  }

  .topbar {
    padding-top: 18px;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-links {
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.86rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 21vw, 5rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-card-main {
    inset: 0 20px 100px 0;
  }

  .hero-card-accent {
    width: 180px;
    height: 230px;
    right: 0;
  }

  .hero-note {
    width: 180px;
    padding: 18px;
    bottom: 24px;
    left: 0;
  }

  .manifesto-card,
  .insight-copy,
  .highlight-card,
  .gallery-text,
  .cta-panel,
  .offer-copy,
  .offer-ticket,
  .offer-info {
    padding: 24px;
  }

  .opening-lines {
    font-size: 1.38rem;
  }

  .insight-figure,
  .gallery-large {
    min-height: 360px;
    height: 360px;
  }

  .lookbook-card {
    min-height: 320px;
  }

  .offer-media {
    min-height: 280px;
  }

  .offer-steps {
    min-height: 0;
  }

  .section {
    padding: 44px 0;
  }
}