:root {
  --iris-deep: #3b1f5e;
  --iris-mid: #6b3fa0;
  --iris-light: #9b6fd4;
  --iris-pale: #e8d8f8;
  --iris-blush: #f5eeff;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --cream: #faf7f2;
  --charcoal: #2a2035;
  --text-mid: #5a4a6a;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155, 111, 212, 0.15);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--iris-mid), var(--iris-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(107, 63, 160, 0.3);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--iris-deep);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  font-family: 'Jost', sans-serif;
  color: var(--iris-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--iris-deep);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--iris-deep);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 2px;
  letter-spacing: 0.1em !important;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--iris-mid) !important;
}

.nav-cta::after {
  display: none !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(107, 63, 160, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(59, 31, 94, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #f5eeff 0%, #faf7f2 40%, #ede4f8 100%);
}

/* Decorative botanical lines */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(155, 111, 212, 0.12);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 50px;
  right: 50px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(155, 111, 212, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 80px 80px;
  max-width: 680px;
  animation: fadeSlideUp 1s ease forwards;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--iris-deep);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.35s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--iris-mid);
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--iris-mid);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.65s forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--iris-deep);
  color: var(--white);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(59, 31, 94, 0.25);
}

.btn-primary:hover {
  background: var(--iris-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59, 31, 94, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--iris-deep);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid var(--iris-light);
  transition: all 0.3s;
}

.btn-secondary:hover {
  color: var(--iris-mid);
  border-bottom-color: var(--iris-mid);
  gap: 14px;
}

/* Hero iris illustration (CSS art) */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.5s forwards;
}

.iris-illustration {
  position: relative;
  width: 420px;
  height: 520px;
}

/* Large decorative iris petals using CSS */
.petal {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform-origin: bottom center;
}

.petal-1 {
  width: 120px;
  height: 180px;
  background: linear-gradient(160deg, #b87fd4 0%, #7b3fa8 60%, #4a1f6e 100%);
  top: 80px;
  left: 150px;
  transform: rotate(-20deg);
  opacity: 0.9;
  box-shadow: inset -10px -20px 30px rgba(0, 0, 0, 0.15);
}

.petal-2 {
  width: 120px;
  height: 180px;
  background: linear-gradient(160deg, #c490e0 0%, #8b50b8 60%, #5a2f7e 100%);
  top: 80px;
  left: 190px;
  transform: rotate(20deg);
  opacity: 0.9;
  box-shadow: inset 10px -20px 30px rgba(0, 0, 0, 0.15);
}

.petal-3 {
  width: 130px;
  height: 190px;
  background: linear-gradient(150deg, #d4a8ec 0%, #9b60c8 50%, #6b3fa0 100%);
  top: 60px;
  left: 170px;
  opacity: 0.95;
  box-shadow: inset 0 -25px 35px rgba(0, 0, 0, 0.12);
}

/* Falls (lower petals) */
.fall-1 {
  width: 100px;
  height: 160px;
  background: linear-gradient(160deg, #9b6fd4 0%, #6b3fa0 50%, #3b1f5e 100%);
  top: 230px;
  left: 120px;
  transform: rotate(-40deg);
  border-radius: 50% 50% 60% 40% / 40% 40% 70% 60%;
  opacity: 0.85;
}

.fall-2 {
  width: 100px;
  height: 160px;
  background: linear-gradient(160deg, #9b6fd4 0%, #6b3fa0 50%, #3b1f5e 100%);
  top: 230px;
  left: 240px;
  transform: rotate(40deg);
  border-radius: 50% 50% 60% 40% / 40% 40% 70% 60%;
  opacity: 0.85;
}

.fall-3 {
  width: 110px;
  height: 170px;
  background: linear-gradient(170deg, #a87de0 0%, #7b4fb0 50%, #4b2f80 100%);
  top: 250px;
  left: 175px;
  border-radius: 50% 50% 60% 40% / 40% 40% 75% 65%;
  opacity: 0.88;
}

/* Stem */
.stem {
  position: absolute;
  width: 6px;
  height: 180px;
  background: linear-gradient(to bottom, #5a8a3a, #3a6a1a);
  bottom: 30px;
  left: 222px;
  border-radius: 3px;
}

.stem::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 6px;
  background: linear-gradient(to right, #5a8a3a, #4a7a2a);
  top: 40px;
  left: -20px;
  border-radius: 3px;
  transform: rotate(-20deg);
  transform-origin: right center;
}

/* Beard (yellow stripe) */
.beard {
  position: absolute;
  width: 14px;
  height: 50px;
  background: linear-gradient(to bottom, #f0d060, #c9a020);
  top: 280px;
  left: 220px;
  border-radius: 7px;
  opacity: 0.9;
}

/* Large faded background circle */
.iris-bg-circle {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(155, 111, 212, 0.1) 0%, transparent 70%);
  top: 60px;
  left: 30px;
}

/* Floating small iris accents */
.iris-accent {
  position: absolute;
  opacity: 0.3;
}

.iris-accent-1 {
  top: 40px;
  right: 80px;
  width: 50px;
  height: 70px;
  background: radial-gradient(ellipse, var(--iris-light), transparent);
  border-radius: 50%;
}

.iris-accent-2 {
  bottom: 80px;
  right: 60px;
  width: 35px;
  height: 50px;
  background: radial-gradient(ellipse, var(--gold-light), transparent);
  border-radius: 50%;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--iris-deep);
  padding: 36px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ── WHO WE ARE ── */
.about-section {
  padding: 110px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--iris-deep);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--iris-mid);
}

.section-body {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}

.about-visual {
  position: relative;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px 28px;
  border: 1px solid rgba(155, 111, 212, 0.12);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--iris-mid), var(--iris-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.about-card:hover {
  box-shadow: 0 12px 40px rgba(107, 63, 160, 0.12);
  transform: translateY(-4px);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--iris-deep);
  margin-bottom: 10px;
}

.about-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
  font-weight: 300;
}

.about-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--iris-deep) 0%, var(--iris-mid) 100%);
  color: var(--white);
  border: none;
}

.about-card.featured h3 {
  color: var(--gold-light);
}

.about-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.about-card.featured::before {
  background: var(--gold);
}

/* ── EVENTS ── */
.events-section {
  background: var(--iris-blush);
  padding: 110px 80px;
  position: relative;
  overflow: hidden;
}

.events-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(155, 111, 212, 0.08), transparent);
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.event-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 20px rgba(59, 31, 94, 0.06);
}

.event-card:hover {
  box-shadow: 0 16px 50px rgba(59, 31, 94, 0.14);
  transform: translateY(-6px);
}

.event-header {
  background: linear-gradient(135deg, var(--iris-deep), var(--iris-mid));
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.event-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.event-month {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.event-date {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.event-body {
  padding: 28px;
}

.event-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--iris-mid);
  background: var(--iris-pale);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--iris-deep);
  margin-bottom: 10px;
}

.event-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}

.event-link {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--iris-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.3s;
}

.event-link:hover {
  color: var(--iris-deep);
  gap: 14px;
}

/* ── GALLERY STRIP ── */
.gallery-section {
  padding: 110px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

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

/* Iris gallery images */
.g1 {
  background-image: url('../images/IMG_3627.jpg');
  background-size: cover;
  background-position: center;
}

.g2 {
  background-image: url('../images/IMG_3685.jpg');
  background-size: cover;
  background-position: center;
}

.g3 {
  background-image: url('../images/IMG_3686.jpg');
  background-size: cover;
  background-position: center;
}

.g4 {
  background-image: url('../images/IMG_3721.jpg');
  background-size: cover;
  background-position: center;
}

.g5 {
  background-image: url('../images/IMG_3723.jpg');
  background-size: cover;
  background-position: center;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 31, 94, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--white);
}

/* Decorative iris SVG shapes */
.iris-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

/* ── JOIN/CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--iris-deep) 0%, #2a1545 100%);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  position: relative;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
  position: relative;
}

.cta-title em {
  color: var(--gold-light);
  font-style: italic;
}

.cta-desc {
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 300;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
}

.btn-gold {
  background: var(--gold);
  color: var(--iris-deep);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── MAILING LIST ── */
.mailing-section {
  padding: 80px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  border-top: 1px solid rgba(155, 111, 212, 0.1);
  max-width: 1400px;
  margin: 0 auto;
}

.mailing-content {
  max-width: 420px;
}

.mailing-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--iris-deep);
  margin-bottom: 12px;
}

.mailing-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
}

.mailing-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 500px;
  box-shadow: 0 4px 30px rgba(59, 31, 94, 0.08);
}

.mailing-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid rgba(155, 111, 212, 0.25);
  border-right: none;
  border-radius: 2px 0 0 2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.mailing-form input:focus {
  border-color: var(--iris-mid);
}

.mailing-form input::placeholder {
  color: rgba(90, 74, 106, 0.4);
}

.mailing-form button {
  background: var(--iris-deep);
  color: var(--white);
  border: none;
  padding: 16px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.3s;
  white-space: nowrap;
}

.mailing-form button:hover {
  background: var(--iris-mid);
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 60px 80px 36px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 18px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}

.footer-col ul a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(155, 111, 212, 0.2);
  border-color: var(--iris-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 16px 32px;
  }

  .nav-links {
    gap: 24px;
  }

  .hero-content {
    padding: 120px 48px 80px;
    max-width: 580px;
  }

  .hero-visual {
    width: 42%;
  }

  .about-section,
  .gallery-section,
  .mailing-section {
    padding: 80px 48px;
  }

  .events-section {
    padding: 80px 48px;
  }

  .stats-strip {
    padding: 36px 48px;
  }

  .cta-section {
    padding: 80px 48px;
  }

  footer {
    padding: 60px 48px 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    padding: 100px 32px 60px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 36px 32px;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding: 60px 32px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .events-section {
    padding: 60px 32px;
  }

  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 240px;
  }

  .gallery-section {
    padding: 60px 32px;
  }

  .mailing-section {
    flex-direction: column;
    padding: 60px 32px;
  }

  .mailing-form {
    max-width: 100%;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  footer {
    padding: 48px 32px 28px;
  }

  .cta-section {
    padding: 60px 32px;
  }
}
