/* ================================================================
   MAYA FOOD — LUXURY EDITORIAL DESIGN SYSTEM
   Aesthetic: Refined Turkish luxury · Warm editorial · Culinary art
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --red:        #E63B2E;
  --red-hover:  #C92E22;
  --red-soft:   rgba(230,59,46,0.07);
  --charcoal:   #18160F;
  --cream:      #F8F4EE;
  --cream-dark: #EDE8E0;
  --white:      #FFFFFF;
  --sand:       #C9A96E;
  --gray:       #6B6560;
  --border:     rgba(24,22,15,0.10);
  --border-warm:#DDD8CF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  cursor: none; /* custom cursor */
}

/* ── Custom cursor ───────────────────────────── */
#cursor {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, opacity .25s, background .25s;
  mix-blend-mode: multiply;
}
#cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(230,59,46,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.14s cubic-bezier(.22,.68,0,1.2);
}
body:has(a:hover) #cursor        { width: 16px; height: 16px; }
body:has(a:hover) #cursor-ring   { width: 52px; height: 52px; border-color: var(--red); }
body:has(.btn:hover) #cursor-dot { background: var(--sand); }
@media (pointer: coarse) { #cursor, #cursor-ring { display: none; } body { cursor: auto; } }

img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }

/* ── Typography ──────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; }
p  { color: var(--gray); line-height: 1.8; font-size: 0.9375rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}

/* ── Layout ──────────────────────────────────── */
.container       { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.container--wide { max-width: 1380px; margin: 0 auto; padding: 0 40px; }

/* ── Grain overlay ───────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9997; pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 28px; height: 46px;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: none;
  border: 1.5px solid transparent;
  border-radius: 3px;
  transition: all 0.22s ease;
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-red          { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover    { background: var(--red-hover); border-color: var(--red-hover); }
.btn-outline      { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover{ background: var(--charcoal); color: #fff; }
.btn-outline-white{ background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-white        { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn-white:hover  { background: var(--cream); }
.btn-sm           { height: 38px; padding: 0 20px; font-size: 0.6875rem; }

/* ── Animations ──────────────────────────────── */
[data-reveal], [data-stagger] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity  0.9s cubic-bezier(.16,1,.3,1),
    transform 0.9s cubic-bezier(.16,1,.3,1);
}
[data-reveal].revealed, [data-stagger].revealed { opacity: 1; transform: none; }

[data-reveal="left"]  { transform: translateX(-56px) translateY(0); }
[data-reveal="right"] { transform: translateX(56px) translateY(0); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: none; }

[data-reveal="scale"] { transform: scale(0.90); opacity: 0; }
[data-reveal="scale"].revealed { transform: scale(1); opacity: 1; }

/* ── Header ──────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.4s ease, border-color 0.4s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled, .site-header.solid {
  background: rgba(248,244,238,0.94);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom-color: var(--border-warm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-img {
  height: 50px; width: auto; display: block;
  border-radius: 8px; background: #fff; padding: 3px 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  height: 40px; padding: 0 14px; display: flex; align-items: center;
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82); border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.main-nav a.active { color: #fff; font-weight: 700; }
.site-header.scrolled .main-nav a,
.site-header.solid   .main-nav a { color: var(--charcoal); }
.site-header.scrolled .main-nav a:hover,
.site-header.solid   .main-nav a:hover { color: var(--red); background: var(--red-soft); }
.site-header.scrolled .main-nav a.active,
.site-header.solid   .main-nav a.active { color: var(--red); }

.header-cta { height: 38px !important; padding: 0 18px !important; font-size: 0.7rem !important; }
.site-header:not(.scrolled):not(.solid) .header-cta {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.45);
}
.site-header:not(.scrolled):not(.solid) .header-cta:hover {
  background: rgba(255,255,255,0.12); border-color: #fff;
}

.nav-toggle { display: none; flex-direction: column; gap: 4px; cursor: none; padding: 8px; background: none; border: none; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: #fff; transition: background 0.4s; }
.site-header.scrolled .nav-toggle span,
.site-header.solid   .nav-toggle span { background: var(--charcoal); }

/* ── HERO ────────────────────────────────────── */

/* ── Hero v2 yeni elemanlar ──────────────────── */
.hero-v2-year {
  position: absolute;
  left: 48px; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--font-body);
  font-size: 0.5625rem; font-weight: 600;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  z-index: 3; white-space: nowrap;
}

.hero-v2-bottom-bar {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: 28px;
  padding: 0 60px 40px;
  margin-top: auto;
}
.hero-v2-bottom-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.hero-v2-scroll-cta {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 0.5625rem;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
  animation: bounceY 2.4s ease-in-out infinite;
}
.hero-v2-scroll-cta:hover { color: var(--sand); }
.hero-v2-scroll-cta svg { width: 14px; opacity: 0.5; }

@keyframes bounceY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

.hero-v2 {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  background: var(--charcoal);
}
.hero-v2-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-v2-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  animation: kenburns 22s ease-out forwards;
  transform-origin: center 60%;
}
.hero-v2-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(18,16,9,0.35) 0%, rgba(18,16,9,0.62) 100%),
    linear-gradient(105deg, rgba(18,16,9,0.55) 0%, transparent 65%);
  animation: fadeIn 1.4s ease forwards;
}

@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1.0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }

.hero-v2-content {
  position: relative; z-index: 2; flex: 1;
  display: flex; align-items: flex-end;
  padding: 160px 0 56px;
}
.hero-v2-centered {
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 860px;
}
.hero-v2-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 20px;
}
.hero-v2-label::before {
  content: '';
  display: inline-block; width: 28px; height: 1px; background: var(--sand);
}
.hero-v2-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 700; line-height: 0.96; letter-spacing: -0.025em;
  color: #fff; margin-bottom: 28px;
}
.hero-v2-title em { font-style: italic; color: var(--sand); font-weight: 300; }
.hero-v2-desc {
  color: rgba(255,255,255,0.68); font-size: 1.0625rem; line-height: 1.75;
  max-width: 500px; margin-bottom: 44px; font-weight: 300;
}
.hero-v2-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-v2-actions .btn { height: 50px; padding: 0 32px; font-size: 0.75rem; }


/* ── Divider ─────────────────────────────────── */
.divider { height: 1px; background: var(--border-warm); }

/* ── Section header ──────────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-sub { text-align: center; max-width: 560px; margin: -44px auto 56px; }

/* ── Events ──────────────────────────────────── */
.events-section { padding: 112px 0; background: var(--white); }
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.event-card { position: relative; overflow: hidden; border-radius: 2px; }
.event-card img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.7s cubic-bezier(.22,.68,0,1); }
.event-card:hover img { transform: scale(1.05); }
.event-card-label { margin-top: 18px; }
.event-card-label h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 6px; font-weight: 600; }
.event-card-label p  { font-size: 0.875rem; }
.events-cta { text-align: center; margin-top: 56px; }

/* ── Split sections ──────────────────────────── */
.split-section { padding: 0; }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-inner.reverse .split-img  { order: 2; }
.split-inner.reverse .split-text { order: 1; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(.22,.68,0,1); }
.split-img:hover img { transform: scale(1.04); }
.split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 80px;
  background: var(--cream);
}
.split-inner.reverse .split-text { background: var(--white); }
.split-text h2 { margin-bottom: 22px; }
.split-text p  { margin-bottom: 18px; }
.split-text a  { margin-top: 10px; }

/* ── Dark banner ─────────────────────────────── */
.dark-banner { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.dark-banner-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(12,10,6,0.76), rgba(12,10,6,0.76)),
    url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1600&q=80') center/cover no-repeat;
}
.dark-banner-content { position: relative; z-index: 2; width: 100%; text-align: center; padding: 80px 24px; }
.dark-banner-content h2 { color: #fff; margin-bottom: 20px; }
.dark-banner-content p  { color: rgba(255,255,255,0.65); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Gallery strip ───────────────────────────── */
.gallery-strip { overflow: hidden; }
.gallery-strip-inner { display: grid; grid-template-columns: repeat(5,1fr); gap: 3px; }
.gallery-strip-inner img { width: 100%; height: 230px; object-fit: cover; display: block; transition: opacity 0.35s, transform 0.5s cubic-bezier(.22,.68,0,1); }
.gallery-strip-inner img:hover { opacity: 0.8; transform: scale(1.04); }

/* ── Home contact ────────────────────────────── */
.home-contact { padding: 112px 0; text-align: center; background: var(--white); }
.home-contact h2 { margin-bottom: 18px; }
.home-contact p  { max-width: 520px; margin: 0 auto 36px; }

/* ── Page hero (inner pages) ─────────────────── */
.page-hero { padding: 130px 0 72px; border-bottom: 1px solid var(--border-warm); background: var(--cream); }
.page-hero-inner { max-width: 680px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 1.0625rem; max-width: 480px; font-weight: 300; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: var(--gray); margin-bottom: 20px; }
.breadcrumb a { color: var(--red); font-weight: 600; }
.breadcrumb span { color: var(--border-warm); }

/* ── About page ──────────────────────────────── */
.about-lead { padding: 96px 0; }
.about-lead-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-lead-text h2 { margin-bottom: 24px; }
.about-lead-text p  { margin-bottom: 18px; }
.about-lead-img { border-radius: 2px; overflow: hidden; }
.about-lead-img img { width: 100%; height: 520px; object-fit: cover; }

.numbers-row { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--border-warm); border-bottom: 1px solid var(--border-warm); }
.number-item { padding: 56px 48px; border-right: 1px solid var(--border-warm); }
.number-item:last-child { border-right: none; }
.number-val { font-family: var(--font-display); font-size: clamp(2.8rem,4vw,4rem); font-weight: 700; font-style: italic; color: var(--red); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.number-lbl { font-size: 0.75rem; font-weight: 500; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; }

.values-section { padding: 96px 0; background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.value-item { border-top: 1.5px solid var(--red); padding-top: 24px; }
.value-item h3 { font-size: 1.1rem; margin-bottom: 10px; margin-top: 4px; }

.team-section { padding: 96px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card { background: var(--cream); }
.team-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.6s cubic-bezier(.22,.68,0,1); overflow: hidden; display: block; }
.team-card:hover img { transform: scale(1.04); }
.team-info { padding: 18px 20px 22px; }
.team-info h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 3px; }
.team-info p  { font-size: 0.8125rem; color: var(--red); font-weight: 500; }

/* ── Services page ───────────────────────────── */
.services-intro { padding: 80px 0; }
.services-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.services-intro-text h2 { margin-bottom: 20px; }
.services-intro-img { border-radius: 2px; overflow: hidden; }
.services-intro-img img { width: 100%; height: 440px; object-fit: cover; }

.service-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border-warm); min-height: 460px; }
.service-row.alt .service-row-img  { order: 2; }
.service-row.alt .service-row-text { order: 1; }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(.22,.68,0,1); }
.service-row:hover .service-row-img img { transform: scale(1.03); }
.service-row-img { overflow: hidden; }
.service-row-text { padding: 60px 68px; display: flex; flex-direction: column; justify-content: center; }
.service-row-text h2 { font-size: clamp(1.6rem,3vw,2.5rem); margin-bottom: 16px; }
.service-row-text > p { margin-bottom: 24px; }
.feature-list { list-style: none; margin-bottom: 32px; }
.feature-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-warm); font-size: 0.9rem; color: var(--gray); }
.feature-list li::before { content: '–'; color: var(--red); font-weight: 700; flex-shrink: 0; }

.why-section { padding: 96px 0; background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; margin-top: 56px; }
.why-item { border-top: 1.5px solid var(--border-warm); padding-top: 24px; transition: border-color 0.25s; }
.why-item:hover { border-color: var(--red); }
.why-item .icon { font-size: 1.6rem; margin-bottom: 14px; display: block; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 8px; }

/* ── Contact page ────────────────────────────── */
.contact-hero-info { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 36px; }
.contact-hero-info-item strong { display: block; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 5px; }
.contact-hero-info-item a, .contact-hero-info-item span { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--charcoal); }
.contact-hero-info-item a:hover { color: var(--red); }

.contact-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; padding: 96px 0; }
.form-section h2 { margin-bottom: 8px; font-size: clamp(1.6rem,3vw,2.25rem); }
.form-section > p { margin-bottom: 36px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border-warm); border-radius: 3px;
  font-size: 0.9375rem; color: var(--charcoal); background: var(--white);
  font-family: var(--font-body); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: #b5b0a8; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(230,59,46,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; height: 50px; margin-top: 4px; }
.form-success { display: none; margin-top: 16px; padding: 16px 20px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 4px; color: #166534; font-weight: 600; text-align: center; }

.contact-sidebar { padding-top: 4px; }
.contact-sidebar h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 32px; }
.info-block { padding: 20px 0; border-bottom: 1px solid var(--border-warm); }
.info-block:first-of-type { border-top: 1px solid var(--border-warm); }
.info-block-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.info-block-val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--charcoal); }
.info-block-sub { font-size: 0.8125rem; color: var(--gray); margin-top: 3px; }
.map-wrap { margin-top: 28px; border-radius: 3px; overflow: hidden; border: 1px solid var(--border-warm); }
.map-wrap iframe { display: block; }

.social-row { display: flex; gap: 8px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--border-warm);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  cursor: none; transition: all 0.2s;
}
.social-btn:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }

.faq-section { padding: 80px 0; background: var(--cream); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-inner h2 { margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid var(--border-warm); }
.faq-item summary { padding: 20px 0; cursor: none; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-weight: 500; font-size: 0.9375rem; user-select: none; }
.faq-item summary .faq-icon { color: var(--red); font-size: 1.1rem; flex-shrink: 0; font-style: normal; }
.faq-item[open] summary .faq-icon::before { content: '−'; }
.faq-item:not([open]) summary .faq-icon::before { content: '+'; }
.faq-body { padding: 0 0 20px; font-size: 0.9375rem; color: var(--gray); line-height: 1.75; }

/* ── Footer ──────────────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.5); padding: 88px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-desc { font-size: 0.875rem; line-height: 1.75; margin-top: 18px; color: rgba(255,255,255,0.38); }
.footer-col h4 { color: rgba(255,255,255,0.9); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 22px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.18s; }
.footer-links a:hover { color: var(--red); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.45); }
.footer-contact-row .ic { color: var(--red); flex-shrink: 0; }
.footer-bottom { padding: 22px 0; text-align: center; font-size: 0.8125rem; color: rgba(255,255,255,0.18); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1023px) {
  .container, .container--wide { padding: 0 28px; }
  .split-inner, .split-inner.reverse { grid-template-columns: 1fr; min-height: auto; }
  .split-inner.reverse .split-img  { order: 0; }
  .split-inner.reverse .split-text { order: 0; }
  .split-img img { height: 340px; }
  .split-text { padding: 56px 40px; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card img { height: 300px; }
  .gallery-strip-inner { grid-template-columns: repeat(3,1fr); }
  .gallery-strip-inner img:nth-child(n+4) { display: none; }
  .about-lead-inner, .services-intro-inner, .contact-body { grid-template-columns: 1fr; gap: 48px; }
  .values-grid, .why-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .numbers-row { grid-template-columns: repeat(3,1fr); }
  .service-row { grid-template-columns: 1fr; }
  .service-row.alt .service-row-img  { order: 0; }
  .service-row.alt .service-row-text { order: 0; }
  .service-row-img img { height: 320px; }
  .service-row-text { padding: 48px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  }

@media (max-width: 767px) {
  .container, .container--wide { padding: 0 20px; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--cream); backdrop-filter: blur(20px);
    padding: 16px 20px; border-bottom: 1px solid var(--border-warm); z-index: 199;
  }
  .main-nav.open a { color: var(--charcoal) !important; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  .hero-v2-content { padding: 120px 0 32px; }
  .hero-v2-year { display: none; }
  .hero-v2-bottom-bar { padding: 0 24px 28px; gap: 16px; }
  .hero-v2-bottom-line { display: none; }
  .split-text { padding: 36px 24px; }
  .gallery-strip-inner { grid-template-columns: repeat(2,1fr); }
  .gallery-strip-inner img:nth-child(n+3) { display: none; }
  .numbers-row { grid-template-columns: 1fr; }
  .number-item { border-right: none; border-bottom: 1px solid var(--border-warm); padding: 36px 28px; }
  .values-grid, .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-hero-info { gap: 24px; flex-direction: column; }
}
