:root {
  --ivory: #fffaf1;
  --pearl: #f7efe2;
  --linen: #efe1cf;
  --gold: #b9852e;
  --deep-gold: #7f5416;
  --ink: #1f2428;
  --muted: #6d6258;
  --rose: #ad6867;
  --sage: #637960;
  --blue: #385d70;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(62, 42, 20, 0.12);
  --soft-shadow: 0 14px 40px rgba(62, 42, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 10%, rgba(185, 133, 46, 0.12), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(173, 104, 103, 0.11), transparent 24%),
    linear-gradient(135deg, #fffaf1 0%, #fbf4e8 42%, #fffdf8 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(185, 133, 46, 0.18);
  background: rgba(255, 250, 241, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.48rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.brand-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--deep-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(185, 133, 46, 0.12);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(185, 133, 46, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep-gold);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(185, 133, 46, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(185, 133, 46, 0.18);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), #d5a653);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 50px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--deep-gold);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  color: var(--ink);
}

h1 {
  margin-top: 12px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(2.25rem, 4.3vw, 4.6rem);
}

h3 {
  font-size: 1.75rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  margin-top: 22px;
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-panel {
  position: relative;
  min-height: 590px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(31, 36, 40, 0.03), rgba(31, 36, 40, 0.34)),
    url("gallery/event-06.jpeg") center/cover;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
}

.hero-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--soft-shadow);
}

.hero-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat {
  padding: 18px;
  border: 1px solid rgba(185, 133, 46, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.stat b {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--deep-gold);
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.52);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.kicker {
  margin-bottom: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  border: 1px solid rgba(185, 133, 46, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.service-card {
  padding: 26px;
  min-height: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(185, 133, 46, 0.13);
  color: var(--deep-gold);
  font-size: 1.28rem;
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.feature-image {
  min-height: 450px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(185, 133, 46, 0.26), rgba(56, 93, 112, 0.24)),
    url("gallery/event-01.jpeg") center/cover;
  box-shadow: var(--shadow);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pill {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(185, 133, 46, 0.12);
  color: var(--deep-gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.section-action {
  margin-top: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-tile {
  min-height: 245px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: #c9a66a;
  background-position: center;
  background-size: cover;
  box-shadow: var(--soft-shadow);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.gallery-tile:hover img {
  transform: scale(1.05);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(31, 36, 40, 0.7));
}

.gallery-tile span {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--white);
  font-weight: 800;
}

.page-hero {
  padding: 88px 0 58px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(239, 225, 207, 0.44));
  border-bottom: 1px solid rgba(185, 133, 46, 0.16);
}

.page-hero p {
  max-width: 780px;
  margin-top: 18px;
  font-size: 1.18rem;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: start;
}

.statement {
  padding: 30px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.event-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 26px;
  align-items: start;
}

.event-label {
  color: var(--deep-gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.contact-info,
.form-box {
  padding: 30px;
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(185, 133, 46, 0.16);
}

form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(185, 133, 46, 0.28);
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 133, 46, 0.13);
}

textarea {
  min-height: 124px;
  resize: vertical;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  padding: 0 0 34px;
  background: #181715;
  color: var(--white);
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  transform: translateY(-36px);
  background:
    linear-gradient(135deg, rgba(185, 133, 46, 0.92), rgba(127, 84, 22, 0.95)),
    url("gallery/event-12.jpeg") center/cover;
  box-shadow: var(--shadow);
}

.footer-cta .eyebrow,
.footer-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.9fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 16px;
}

.footer-logo {
  width: min(230px, 100%);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links h3 {
  font-size: 1.3rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.content-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.content-note {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(185, 133, 46, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 760ms ease forwards;
}

.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 240ms; }
.delay-3 { animation-delay: 360ms; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-grid,
  .section-head,
  .feature-band,
  .split,
  .contact-wrap,
  .footer-cta,
  .footer-main,
  .content-strip {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 460px;
  }

  .grid-3,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand-title {
    font-size: 1.25rem;
  }

  .nav-links a {
    padding: 8px 9px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-panel {
    min-height: 390px;
  }

  .stats,
  .grid-3,
  .grid-2,
  .gallery,
  .form-grid,
  .event-row,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .section {
    padding: 62px 0;
  }
}
