:root {
  --bg: #f4ede3;
  --bg-deep: #d8c0a7;
  --panel: rgba(255, 249, 241, 0.72);
  --panel-strong: #fff9f1;
  --panel-dark: #2f241d;
  --text: #211915;
  --text-soft: #65544b;
  --line: rgba(53, 34, 23, 0.12);
  --gold: #b7773c;
  --gold-deep: #915526;
  --rose: #cb8e79;
  --olive: #7f8c63;
  --cream: #fff5e8;
  --shadow-soft: 0 24px 80px rgba(67, 38, 19, 0.12);
  --shadow-card: 0 16px 40px rgba(55, 34, 23, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(183, 119, 60, 0.18), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(127, 140, 99, 0.16), transparent 18%),
    linear-gradient(180deg, #f8f0e6 0%, var(--bg) 48%, #efe4d5 100%);
}

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

a {
  color: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  content: "";
  pointer-events: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 148px;
  filter: drop-shadow(0 10px 22px rgba(77, 45, 23, 0.12));
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.topbar-note,
.topbar-link {
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 244, 0.52);
  text-decoration: none;
  font-size: 0.92rem;
}

.hero {
  padding: 0 0 5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: 2.5rem 0 1rem;
}

.eyebrow,
.section-label,
.card-kicker,
.card-index,
.contact-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow,
.section-label,
.card-kicker,
.card-index,
.contact-label {
  color: var(--gold-deep);
}

.hero-copy {
  max-width: 690px;
}

h1,
h2,
h3,
p,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.1rem);
  line-height: 0.94;
  margin: 0.9rem 0 1.2rem;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 0.98;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: clamp(1.45rem, 1.7vw, 1.8rem);
  line-height: 1.02;
  margin-bottom: 0.6rem;
}

p,
li {
  font-size: 1.02rem;
  color: var(--text-soft);
}

.lead {
  font-size: 1.18rem;
  max-width: 38rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffaf4;
  background: linear-gradient(135deg, #c7864b 0%, #9b5b28 100%);
  box-shadow: 0 18px 30px rgba(146, 85, 38, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-signals span {
  padding: 0.62rem 0.92rem;
  border: 1px solid rgba(145, 85, 38, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.5);
  color: var(--text);
  font-size: 0.95rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.visual-stage {
  position: relative;
  width: min(100%, 540px);
  min-height: 680px;
}

.showpiece {
  position: absolute;
  inset: 72px 28px 78px 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, #fff5e5 0%, #f1dac0 38%, #d8c0a7 100%);
  box-shadow: var(--shadow-soft);
}

.showpiece-gradient {
  position: absolute;
  inset: auto -14% -12% -16%;
  height: 58%;
  background:
    radial-gradient(circle at 40% 25%, rgba(255, 244, 230, 0.92), transparent 34%),
    linear-gradient(180deg, #b7773c 0%, #835735 100%);
  border-radius: 58% 42% 0 0 / 36% 28% 0 0;
}

.showpiece-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.4px);
}

.orb-one {
  top: 72px;
  right: 66px;
  width: 122px;
  height: 122px;
  background: radial-gradient(circle at 35% 35%, #fff8e7 0%, #f1b276 42%, #c77537 100%);
}

.orb-two {
  top: 166px;
  left: 52px;
  width: 76px;
  height: 76px;
  background: radial-gradient(circle at 35% 35%, #f6f0d8 0%, #99a473 50%, #718056 100%);
}

.showpiece-ribbon {
  position: absolute;
  left: -32px;
  bottom: 146px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: rgba(33, 25, 21, 0.92);
  color: #fdf5eb;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.showpiece-caption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.88rem;
  color: rgba(255, 247, 238, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.floating-card {
  position: absolute;
  max-width: 250px;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 242, 0.64);
  box-shadow: var(--shadow-card);
  animation: drift 7s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.floating-card-top {
  top: 26px;
  right: 0;
}

.floating-card-bottom {
  left: 0;
  bottom: 0;
  animation-delay: -3.2s;
}

.section {
  padding: 5.5rem 0;
}

.intro-section {
  padding-top: 2rem;
}

.intro-grid,
.benefits-layout,
.process-grid,
.contact-shell {
  display: grid;
  gap: 2rem;
}

.intro-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.intro-panel {
  max-width: 460px;
}

.intro-text {
  padding: 2rem 0 0;
  max-width: 620px;
}

.editorial-band {
  position: relative;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.event-card,
.benefit-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.78), rgba(255, 247, 240, 0.58));
  box-shadow: var(--shadow-card);
}

.event-card {
  min-height: 340px;
  padding: 1.4rem 1.4rem 1.6rem;
}

.event-card-featured {
  background: linear-gradient(180deg, rgba(255, 243, 227, 0.92), rgba(245, 226, 205, 0.74));
}

.event-visual {
  position: relative;
  height: 170px;
  margin: -1.4rem -1.4rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #f7ddbd 0%, #edc69e 45%, #dfaf7a 100%);
}

.event-visual-sun {
  position: absolute;
  top: 24px;
  right: 34px;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff6e6 0%, #f7ca80 52%, #dc8f43 100%);
}

.event-visual-wave {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -22px;
  height: 88px;
  background: #fff6eb;
  border-radius: 55% 45% 0 0 / 65% 60% 0 0;
  transform: rotate(-2.5deg);
}

.event-visual-wave.second {
  bottom: -44px;
  background: rgba(255, 246, 235, 0.7);
  transform: rotate(3deg);
}

.card-index {
  display: inline-block;
  margin-bottom: 1rem;
}

.benefits-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.benefits-copy {
  max-width: 520px;
}

.benefits-stack {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  padding: 1.6rem;
}

.process-section {
  padding-top: 6rem;
}

.process-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
}

.process-visual {
  display: flex;
  justify-content: center;
}

.process-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 240px);
  height: 420px;
  padding: 1.5rem 0;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(145, 85, 38, 0), rgba(145, 85, 38, 0.58), rgba(145, 85, 38, 0));
  transform: translateX(-50%);
}

.process-dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border: 1px solid rgba(145, 85, 38, 0.2);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.78);
  box-shadow: var(--shadow-card);
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.steps {
  margin: 1.6rem 0 0;
  padding-left: 1.3rem;
}

.steps li + li {
  margin-top: 0.95rem;
}

.contact-shell {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    radial-gradient(circle at top right, rgba(203, 142, 121, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.82), rgba(255, 244, 234, 0.72));
  box-shadow: var(--shadow-soft);
}

.contact-copy {
  max-width: 460px;
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.3rem;
}

.contact-link {
  display: block;
  padding: 1.2rem 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(145, 85, 38, 0.24);
}

.contact-link strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 1.15rem;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1040px) {
  .hero-layout,
  .intro-grid,
  .benefits-layout,
  .process-grid,
  .contact-shell,
  .band-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 1.8rem;
  }

  .hero-visual {
    justify-content: center;
  }

  .visual-stage {
    min-height: 620px;
  }

  .intro-text {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions,
  .cta-group,
  .hero-signals {
    width: 100%;
  }

  .topbar-actions {
    justify-content: space-between;
  }

  .button {
    width: 100%;
  }

  .visual-stage {
    min-height: 500px;
  }

  .showpiece {
    inset: 56px 14px 62px 26px;
  }

  .floating-card {
    max-width: 210px;
  }

  .contact-shell {
    padding: 1.25rem;
  }

  .contact-link strong {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
}
