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

/* ── Logo-extracted theme palette ── */
:root {
  /* Primary brand colors pulled from logo */
  --brand-dark: #1a2a1f;
  /* very dark forest green  */
  --brand-mid: #2d4a35;
  /* deep forest green        */
  --brand-sage: #7a9a7e;
  /* mid sage green           */
  --brand-gold: #c9a84c;
  /* warm gold accent         */
  --brand-gold-lt: #e8c97a;
  /* light gold highlight     */
  --brand-cream: #f5f1e8;
  /* warm off-white           */
  --brand-stone: #e0dbd0;
  /* warm stone/parchment     */

  /* Semantic aliases */
  --forest: var(--brand-dark);
  --forest-mid: var(--brand-mid);
  --sage: var(--brand-sage);
  --gold: var(--brand-gold);
  --cream: var(--brand-cream);
  --teal: #4a7a5a;
  --charcoal: #2c2c2c;

  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;

  /* Scrollbar */
  --sb-track: #c8c3b8;
  --sb-thumb: var(--brand-sage);
  --sb-thumb-hover: var(--brand-gold);
  --sb-thumb-active: var(--brand-dark);
  --sb-w: 7px;
  --sb-r: 8px;
}

/* ── Reset / Base ── */
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
}

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

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

main {
  flex-grow: 1;
}

/* Native scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--sb-thumb) var(--sb-track);
}

*::-webkit-scrollbar {
  width: var(--sb-w);
  height: var(--sb-w);
}

*::-webkit-scrollbar-track {
  background: var(--sb-track);
  border-radius: var(--sb-r);
}

*::-webkit-scrollbar-thumb {
  background: var(--sb-thumb);
  border-radius: var(--sb-r);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--sb-thumb-hover);
}

*::-webkit-scrollbar-horizontal {
  display: none;
}

/* ── Announcement Bar ── */
#announcement {
  background: var(--brand-mid);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
}

#announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.6rem 3rem 0.6rem 1.5rem;
  position: relative;
}

#announcement p {
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  font-weight: 300;
  letter-spacing: 0.05em;
}

#announcement strong {
  color: var(--brand-gold-lt);
}

#announcement button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 0.25rem;
  border-radius: 50%;
  display: flex;
  transition: background 0.2s;
}

#announcement button:hover {
  background: rgba(255, 255, 255, 0.12);
}

#announcement.hidden {
  height: 0 !important;
  opacity: 0;
  pointer-events: none;
}

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  background: var(--brand-stone);
  border-bottom: 1px solid rgba(26, 42, 31, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 2rem;
  height: clamp(3.5rem, 6vw, 5rem);
}

/* Header logo image */
.logo-wrap {
  flex-shrink: 0;
  z-index: 210;
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: clamp(2.2rem, 4.5vw, 3.5rem);
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  flex: 1;
  justify-content: center;
  padding: 0 0.75rem;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
}

.desktop-nav ul li a {
  display: block;
  color: var(--brand-dark);
  font-size: clamp(0.6rem, 0.85vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem clamp(0.35rem, 0.6vw, 0.75rem);
  border-radius: 2px;
  white-space: nowrap;
  transition: color 0.25s, background 0.25s;
  position: relative;
}

.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--brand-gold);
  transition: left 0.25s, right 0.25s;
}

.desktop-nav ul li a:hover {
  color: var(--brand-dark);
}

.desktop-nav ul li a:hover::after {
  left: 8%;
  right: 8%;
}

.desktop-nav ul li a.active {
  color: var(--brand-gold);
}

.desktop-nav ul li a.active::after {
  left: 8%;
  right: 8%;
  background: var(--brand-gold);
}

/* Desktop Actions */
.desktop-actions {
  display: none;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--brand-mid);
}

.social-icons a {
  transition: color 0.2s;
  display: flex;
}

.social-icons a:hover {
  color: var(--brand-gold);
}

.social-icons svg {
  width: 1rem;
  height: 1rem;
}

.btn-tour-sm {
  display: inline-block;
  border: 1px solid var(--brand-dark);
  background: transparent;
  color: var(--brand-dark);
  padding: 0.45rem 1.1rem;
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.btn-tour-sm:hover {
  background: var(--brand-dark);
  color: var(--brand-stone);
}

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-mid);
  z-index: 210;
  position: relative;
  padding: 0.45rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.mobile-toggle #iconClose {
  color: var(--brand-cream);
}

.mobile-toggle:hover {
  background: rgba(26, 42, 31, 0.08);
  color: var(--brand-dark);
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--brand-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  width: 100%;
  padding: 0 2rem;
}

.mobile-menu nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.85rem, 3.5vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  width: 100%;
  text-align: center;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  color: var(--brand-gold);
  background: rgba(201, 168, 76, 0.08);
}

.mobile-menu .divider {
  width: 3rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 1rem 0;
}

.mobile-menu .social-icons {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-menu .social-icons svg {
  width: 1.5rem;
  height: 1.5rem;
}

.btn-tour-mobile {
  border: 1px solid var(--brand-gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--brand-gold);
  padding: 0.75rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  display: inline-block;
  margin-top: 0.5rem;
}

.btn-tour-mobile:hover {
  background: var(--brand-gold);
  color: var(--brand-dark);
}

/* ── Main Hero ── */
#hero {
  position: relative;
  height: 85vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('<?= BASE_URL ?>/assets/images/homepage-hero.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  animation: fadeUp 1s ease-out both;
}

.hero-logo {
  margin-bottom: 2.5rem;
}

.hero-logo img {
  height: clamp(4rem, 10vw, 7rem);
  width: auto;
  margin: 0 auto;
}

.hero-sub {
  color: white;
  font-family: var(--font-sans);
  font-size: clamp(0.6rem, 1.5vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  max-width: 40rem;
  line-height: 1.9;
  animation: fadeIn 1s 0.5s ease-out both;
}

/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.page-hero:hover .hero-bg img {
  transform: scale(1.04);
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  animation: fadeUp 1s ease-out both;
}

.page-hero-eyebrow {
  color: var(--brand-gold-lt);
  font-family: var(--font-sans);
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 0.9rem;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  color: white;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.page-hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.65rem, 1.4vw, 0.8rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  max-width: 40rem;
  line-height: 1.9;
}

/* ── Intro ── */
#intro {
  position: relative;
  padding: 6rem 1.5rem;
  background: #FDFDFA;
  overflow: hidden;
}

.intro-watermark {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(25%);
  opacity: 0.04;
  pointer-events: none;
  width: 400px;
  height: 400px;
}

.intro-watermark svg {
  width: 100%;
  height: 100%;
}

.intro-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.intro-eyebrow {
  color: var(--teal);
  font-size: clamp(0.65rem, 1.3vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.intro-body {
  color: var(--teal);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

/* ── Event Sections ── */
.event-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.event-section {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.event-section .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.event-section .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.event-section:hover .bg img {
  transform: scale(1.04);
}

.event-section .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}

.event-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 34rem;
  width: calc(100% - 3rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
}

.event-eyebrow {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 0.75rem;
  color: var(--brand-sage);
}

.event-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--brand-dark);
  margin-bottom: 1.75rem;
}

.event-link {
  display: inline-block;
  border-bottom: 1px solid rgba(26, 42, 31, 0.3);
  padding-bottom: 0.25rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand-dark);
  transition: border-color 0.25s, color 0.25s;
}

.event-link:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

/* ── Gallery ── */
#gallery {
  background: var(--cream);
  padding: 1rem 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 31, 0.3);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ── Page Content ── */
.page-content {
  padding: 5rem 1.5rem;
  background: #FDFDFA;
}

.page-content-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.page-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.page-section-text {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}

/* Split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.split-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.split-img:hover img {
  transform: scale(1.04);
}

.split-text {
  background: white;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.split-eyebrow {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--brand-gold);
}

.split-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--brand-dark);
  line-height: 1.2;
}

.split-body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--brand-dark);
  color: var(--brand-dark);
  padding: 0.65rem 1.75rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  align-self: flex-start;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline:hover {
  background: var(--brand-gold);
  color: var(--brand-dark);
  border-color: var(--brand-gold);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 1.5rem;
  background: var(--cream);
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  color: var(--brand-gold);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brand-dark);
}

.feature-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
  max-width: 18rem;
}

/* Page Gallery */
.page-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0.5rem;
}

.page-gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.page-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

/* ── Testimonial ── */
#testimonial {
  background: var(--brand-mid);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.testimonial-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--brand-gold);
  opacity: 0.5;
  margin-bottom: -1.5rem;
}

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: white;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
}

cite {
  font-family: var(--font-sans);
  color: var(--brand-gold-lt);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-style: normal;
}

/* ── CTA ── */
#cta {
  background: var(--brand-dark);
  padding: 6rem 1.5rem;
  text-align: center;
}

.cta-inner {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: white;
}

.cta-inner p {
  font-family: var(--font-sans);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  max-width: 36rem;
  line-height: 1.9;
}

.btn-tour-cta {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--brand-dark);
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.btn-tour-cta:hover {
  background: var(--brand-gold-lt);
  color: var(--brand-dark);
}

/* ── Footer ── */
footer {
  margin-top: auto;
}

.footer-top {
  background: var(--brand-stone);
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(26, 42, 31, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

/* Brand column */
.footer-brand {
  align-items: center;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-img {
  height: clamp(5rem, 12vw, 9rem);
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}

.footer-brand address {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--brand-mid);
}

.footer-col h4 {
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-sans);
  margin-bottom: 0.35rem;
}

.footer-col a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--brand-mid);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--brand-gold);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  padding: 0.45rem;
  color: var(--brand-mid);
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  border: 1px solid rgba(26, 42, 31, 0.25);
  border-radius: 4px;
}

.footer-social a:hover {
  color: var(--brand-gold);
  border-color: var(--brand-gold);
}

.footer-social svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Bottom bar */
.footer-bottom {
  background: var(--brand-dark);
  padding: 1.25rem 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-info {
  background: var(--brand-mid);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: white;
}

.contact-info p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-detail-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-gold);
  width: 1.1rem;
  height: 1.1rem;
}

.contact-detail-item span {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
}

.contact-detail-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.contact-detail-item a:hover {
  color: var(--brand-gold);
}

.contact-form-wrap {
  background: white;
  padding: 4rem 2.5rem;
}

.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--brand-dark);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-mid);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--brand-stone);
  background: var(--brand-cream);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--charcoal);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-sage);
  box-shadow: 0 0 0 3px rgba(122, 154, 126, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-alert {
  padding: 0.85rem 1.1rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  display: none;
}

.form-alert.success {
  background: #eaf5ec;
  color: #2d6a3f;
  border: 1px solid #b2dbbe;
  display: block;
}

.form-alert.error {
  background: #fdf0f0;
  color: #8b2c2c;
  border: 1px solid #f0bcbc;
  display: block;
}

.btn-submit {
  background: var(--brand-dark);
  color: white;
  border: none;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--brand-gold);
  color: var(--brand-dark);
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 2fr 3fr;
  }
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 479px) {
  #hero {
    height: 70vh;
    min-height: 360px;
  }

  .event-section {
    height: auto;
    min-height: 0;
    padding: 4rem 0;
  }

  .event-card {
    padding: 2rem 1.25rem;
  }

  .intro-watermark {
    display: none;
  }
}

@media (max-width: 767px) {
  .event-section {
    height: 50vh;
    min-height: 340px;
  }

  #hero {
    min-height: 420px;
  }
}

@media (min-width: 640px) {
  .page-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 0 0.75rem;
  }

  .gallery-item {
    aspect-ratio: 1;
  }

  .event-section {
    height: 60vh;
    min-height: 420px;
  }

  .event-card {
    padding: 3.5rem;
  }

  .quote-mark {
    font-size: 8rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .footer-col {
    align-items: flex-start;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo-img {
    margin: 0 0 1rem;
  }

  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-section.reverse .split-img {
    order: 2;
  }

  .split-section.reverse .split-text {
    order: 1;
  }

  .split-text {
    padding: 4rem 3rem;
  }

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

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .desktop-actions {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-col {
    align-items: flex-start;
  }

  .footer-brand {
    align-items: flex-start;
  }
}