/* --------------------------------------------- */
/* ~~~~~~~~~~~~~~~ CSS Document ~~~~~~~~~~~~~~~~*/
/* ------------------------------------------- */
/* ~~~~~~~~~~~~~ Coded by  Vepster ~~~~~~~~~~ */
/* --------- airsoftlinn.ee v2 ------------- */
/* ~~~~ sample_2.html elegant serif ~~~~~~~~ */
/* --------------------------------------- */
:root {
  --cream:    #faf8f3;
  --cream2:   #f2ede3;
  --cream3:   #e8e0d0;
  --sage:     #6b8c6e;
  --sage-lt:  #e8f0e9;
  --clay:     #b85c38;
  --clay-lt:  #f5e8e2;
  --ink:      #1e2119;
  --ink-60:   #5a5d56;
  --ink-30:   #b0b3ab;
  --white:    #ffffff;
  --shadow:   0 2px 16px rgba(30,33,25,0.08);
  --shadow-md:0 6px 32px rgba(30,33,25,0.12);
  --success:  #64CE83;
  --danger:   #c44040;
  --trans:    0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { text-decoration: none; color: inherit; outline: none; }
button { border: none; outline: none; background: none; color: inherit; cursor: pointer; }
input, textarea { outline: none; }
::placeholder { opacity: 0.5; }
main { flex: 1; width: 100%; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--ink-30); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--clay); }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream3);
  transition: box-shadow var(--trans);
}
nav.scrolled { box-shadow: var(--shadow); }

.nav-logo {
  display: flex; align-items: baseline; gap: 0.18em;
  text-decoration: none;
}
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-logo-dot { color: var(--clay); font-size: 1.6rem; line-height: 1; }
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-left: 0.5rem;
}

#desktop-nav { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
#desktop-nav a {
  color: var(--ink-60);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  position: relative;
}
#desktop-nav a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--clay);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}
#desktop-nav a:hover { color: var(--ink); }
#desktop-nav a:hover::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100%); left: -12px;
  min-width: 200px;
  background: rgba(250,248,243,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--cream3);
  border-radius: 12px;
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  color: var(--ink-60);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
  background: var(--cream2);
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--clay); transform: translateY(-1px); }

.nav-lang {
  display: flex; gap: 0.5rem; margin-left: 0.8rem;
}
.nav-lang a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-30);
  transition: color 0.2s;
}
.nav-lang a::after { display: none; }
.nav-lang a:hover, .nav-lang a.active { color: var(--clay); }

/* ---- BURGER MENU ---- */
#burger-btn {
  display: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}
#burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
#mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1000;
}
#mobile-nav.active { display: flex; }
#mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}
#mobile-nav a:hover { color: var(--clay); }
#close-btn {
  position: absolute;
  top: 16px; right: 24px;
  font-size: 2.5em;
  cursor: pointer;
  color: var(--ink);
  background: none;
  border: none;
  line-height: 1;
}
.mobile-lang {
  display: flex; gap: 1rem; margin-top: 1rem;
}
.mobile-lang a {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  color: var(--ink-30) !important;
}
.mobile-lang a:hover, .mobile-lang a.active { color: var(--clay) !important; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--sage-lt);
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--clay); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-60);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  margin-top: 3.5rem;
  display: flex; gap: 2.5rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-num span { color: var(--clay); }
.stat-label { font-size: 0.75rem; color: var(--ink-60); font-weight: 500; letter-spacing: 0.04em; }

.hero-right {
  position: relative;
  background: var(--cream2);
  overflow: hidden;
}
.hero-collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 3px;
  padding: 3px;
}
.hero-collage-img { overflow: hidden; }
.hero-collage-img:nth-child(1) { grid-row: span 2; }
.hero-collage-img:nth-child(4) { grid-column: span 2; }
.hero-collage-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.85);
}
.hero-collage-img:hover img { transform: scale(1.04); }
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 8%),
              linear-gradient(to bottom, var(--cream2) 0%, transparent 5%);
  pointer-events: none;
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(30,33,25,0.18);
  display: inline-flex; align-items: center;
}
.btn-primary:hover { background: var(--clay); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,92,56,0.28); }
.btn-outline {
  border: 1.5px solid var(--cream3);
  color: var(--ink);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex; align-items: center;
}
.btn-outline:hover { border-color: var(--ink); }

/* ---- MARQUEE STRIP ---- */
.marquee-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  gap: 0;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding: 0 2.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-30);
}
.marquee-item strong { color: var(--cream); }
.marquee-dot { color: var(--clay); font-size: 1.2rem; line-height: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- SECTION COMMONS ---- */
section { padding: 7rem 4rem; }
.section-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--clay-lt);
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--clay); }
.section-intro {
  color: var(--ink-60);
  font-size: 1rem;
  max-width: 520px;
  margin-top: 0.8rem;
  line-height: 1.7;
}

/* ---- EVENTS ---- */
.events-section { background: var(--white); }
.events-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem;
}
.all-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--ink-60);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  margin-bottom: 0.4rem;
}
.all-link::after { content: '\2192'; transition: transform 0.2s; }
.all-link:hover { color: var(--clay); }
.all-link:hover::after { transform: translateX(3px); }
.events-scroll-wrap {
  overflow-x: auto;
  margin: 0 -4rem;
  padding: 0 4rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.events-scroll-wrap::-webkit-scrollbar { display: none; }
.events-row {
  display: flex; gap: 1.2rem;
  width: max-content;
}
.event-card {
  width: 300px;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid var(--cream3);
  position: relative;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.event-img-wrap { position: relative; overflow: hidden; height: 175px; }
.event-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-img { transform: scale(1.06); }
.event-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 0.22rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.event-badge.full { background: var(--cream3); color: var(--ink-60); }
.event-body { padding: 1.2rem 1.3rem 1.3rem; }
.event-meta-row {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.event-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--sage-lt);
  color: var(--sage);
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
}
.event-time {
  font-size: 0.72rem;
  color: var(--ink-60);
  font-weight: 500;
}
.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.event-footer-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--cream3);
}
.event-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}
.event-slots-wrap { text-align: right; }
.event-slots-bar {
  height: 3px;
  background: var(--cream3);
  border-radius: 2px;
  overflow: hidden;
  width: 80px;
  margin-bottom: 0.3rem;
}
.event-slots-fill { height: 100%; background: var(--sage); border-radius: 2px; transition: width 0.4s; }
.event-slots-fill.tight { background: var(--clay); }
.event-slots-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-60);
}
.event-btn {
  display: block;
  margin: 1rem 1.3rem 1.3rem;
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  padding: 0.62rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s;
}
.event-btn:hover { background: var(--clay); }
.events-none {
  text-align: center;
  color: var(--ink-60);
  font-size: 0.95rem;
  padding: 3rem 0;
}

/* ---- HIGHLIGHT CARDS (home) ---- */
.highlights-section { background: var(--cream); }
.highlights-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hl-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 2rem;
  border: 1px solid var(--cream3);
  transition: box-shadow var(--trans), transform var(--trans);
  text-decoration: none;
  color: inherit;
  display: block;
}
.hl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.hl-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.hl-icon.green { background: var(--sage-lt); }
.hl-icon.clay { background: var(--clay-lt); }
.hl-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.hl-card p {
  color: var(--ink-60);
  font-size: 0.88rem;
  line-height: 1.7;
}
.hl-link {
  margin-top: 1rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 600;
}
.hl-link::after { content: '\2192'; transition: transform 0.2s; }
.hl-card:hover .hl-link::after { transform: translateX(4px); }

/* ---- SERVICES GRID ---- */
.services-section { background: var(--cream); }
.services-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.2rem 2.5rem;
  border: 1px solid var(--cream3);
  display: flex; flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.service-icon.green { background: var(--sage-lt); }
.service-icon.clay { background: var(--clay-lt); }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.service-text {
  color: var(--ink-60);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
}
.service-link {
  margin-top: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link::after { content: '\2192'; transition: transform 0.2s; }
.service-link:hover::after { transform: translateX(4px); }

/* ---- ABOUT / SPLIT ---- */
.about-section {
  background: var(--cream2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.about-img-col { position: relative; min-height: 560px; overflow: hidden; }
.about-img-col img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}
.about-img-col::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--cream2) 100%);
}
.about-text-col {
  padding: 6rem 5rem 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text-col p {
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.2rem;
}
.about-quote {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border-radius: 12px;
  border-left: 3px solid var(--clay);
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.7;
  box-shadow: var(--shadow);
}

/* ---- GALLERY ---- */
.gallery-section { background: var(--white); }
.gallery-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.93);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1) brightness(1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,33,25,0.3), transparent 50%);
  opacity: 0; transition: opacity var(--trans);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--sage) 0%, #4e7254 100%);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band .section-pill { background: rgba(255,255,255,0.15); color: white; margin: 0 auto 1.2rem; display: flex; width: fit-content; }
.cta-band .section-title { color: white; position: relative; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 1rem auto 2.5rem; max-width: 500px; font-size: 1rem; line-height: 1.7; position: relative; }
.btn-white {
  background: white;
  color: var(--sage);
  padding: 0.9rem 2.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  position: relative;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ---- ARTICLE PAGES ---- */
.article-section {
  padding: 8rem 4rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}
.article-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.article-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.article-section p {
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.article-section ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.article-section ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-60);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.article-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clay);
}
.article-section blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  background: var(--cream2);
  border-radius: 12px;
  border-left: 3px solid var(--clay);
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.7;
}
.article-section a.article-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--clay);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
  text-decoration: none;
}
.article-section a.article-link::after { content: '\2192'; transition: transform 0.2s; }
.article-section a.article-link:hover::after { transform: translateX(4px); }

/* Article CTA box */
.article-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--sage-lt);
  border-radius: 16px;
  text-align: center;
}
.article-cta h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--ink);
}
.article-cta p {
  color: var(--ink-60);
  margin-bottom: 1.5rem;
}
.article-cta .btn-primary { display: inline-flex; margin: 0 0.5rem; }
.article-cta .btn-outline { display: inline-flex; margin: 0 0.5rem; }

/* ---- INQUIRY / SERVICES PAGE ---- */
.inquiry-section {
  padding: 8rem 4rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.inquiry-card {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  transition: box-shadow var(--trans), transform var(--trans);
}
.inquiry-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.inquiry-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.inquiry-card p {
  color: var(--ink-60);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ---- CONTACT FORM ---- */
.form-section {
  max-width: 560px;
  margin: 0 auto;
  padding-top: 2rem;
}
.form-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  text-align: center;
}
.form-section form {
  display: flex;
  flex-direction: column;
}
.form-section label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
  margin-top: 1rem;
  letter-spacing: 0.03em;
}
.form-section input[type="text"],
.form-section input[type="email"],
.form-section textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--cream3);
  border-radius: 12px;
  padding: 0.75rem 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-section input:focus,
.form-section textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(184,92,56,0.1);
}
.form-section textarea {
  resize: none;
  min-height: 130px;
}
.form-section button[type="submit"] {
  margin-top: 1.5rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.form-section button[type="submit"]:hover { background: var(--clay); transform: translateY(-1px); }

/* ---- FAQ ---- */
.faq-section {
  padding: 8rem 4rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-section details {
  border: 1px solid var(--cream3);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--trans);
}
.faq-section details:hover { box-shadow: var(--shadow); }
.faq-section details[open] { border-color: var(--clay); }
.faq-section summary {
  padding: 1.2rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-section summary::after {
  content: '+';
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clay);
  transition: transform var(--trans);
}
.faq-section details[open] summary::after {
  transform: rotate(45deg);
}
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section details p {
  padding: 0 1.5rem 1.2rem;
  color: var(--ink-60);
  font-size: 0.92rem;
  line-height: 1.8;
}
.faq-section details a {
  color: var(--clay);
  text-decoration: underline;
}

/* ---- EVENTS FULL PAGE ---- */
.events-full-section {
  padding: 8rem 4rem 5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.events-full-section .events-row {
  flex-wrap: wrap;
  width: auto;
  justify-content: center;
  margin-top: 2rem;
}

/* ---- COST TABLE ---- */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cream3);
}
.cost-table th {
  background: var(--ink);
  color: var(--cream);
  padding: 0.8rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}
.cost-table td {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-60);
  border-bottom: 1px solid var(--cream3);
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:hover td { background: var(--cream2); }

/* ---- ERROR MESSAGES ---- */
.error-msg-yes, .error-msg-no {
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 1rem auto;
  max-width: 560px;
}
.error-msg-yes { background: var(--sage-lt); color: var(--sage); }
.error-msg-no { background: var(--clay-lt); color: var(--danger); }

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 4rem 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-main { color: var(--cream); font-size: 1.6rem; }
.footer-brand .nav-logo-dot { color: var(--clay); }
.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 260px;
}
.footer-email {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-email:hover { color: var(--clay); border-color: var(--clay); }
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .about-section { grid-template-columns: 1fr; }
  .about-img-col { min-height: 320px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #desktop-nav { display: none !important; }
  .nav-cta { display: none; }
  .nav-lang { display: none; }
  #burger-btn { display: flex; }

  nav { padding: 0 1.5rem; }
  .hero-left, section, .cta-band, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .events-scroll-wrap { margin: 0 -1.5rem; padding: 0 1.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .article-section, .faq-section, .inquiry-section, .events-full-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .about-text-col { padding: 3rem 1.5rem; }
  .hero-left { padding: 4rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-num { font-size: 1.6rem; }
  .event-card { width: 270px; }
  .article-cta .btn-primary,
  .article-cta .btn-outline { width: 100%; justify-content: center; margin: 0.3rem 0; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
