/* ==========================================================================
   Al Rais Football Academy — site styles
   Shared by index.html (EN, LTR) and ar.html (AR, RTL)
   ========================================================================== */

:root {
  --green: #1f9a4a;
  --green-dark: #15803a;
  --green-ink: #1e2f23;
  --red: #c0161d;
  --ink: #111111;
  --body: #3f4a44;
  --muted: #6b746f;
  --line: #e3e8e4;
  --off-white: #f7f8f5;
  --mint: #e9f3ec;
  --blush: #f8ecec;
  --white: #ffffff;
  --footer: #1a1a1a;

  --font-display: "Montserrat", "Cairo", system-ui, sans-serif;
  --font-body: "Inter", "Tajawal", system-ui, sans-serif;

  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(17, 17, 17, 0.04), 0 8px 24px rgba(17, 17, 17, 0.06);
}

html[lang="ar"] {
  --font-display: "Cairo", "Montserrat", system-ui, sans-serif;
  --font-body: "Tajawal", "Inter", system-ui, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--off-white);
}

html[lang="ar"] body { font-size: 17px; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--ink); line-height: 1.2; }
p, blockquote, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: 96px; }
.section--white { background: var(--white); }
.section--mint { background: var(--mint); }
.section--off { background: var(--off-white); }

/* Eyebrow + heading + brand stripe */
.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
html[lang="ar"] .eyebrow { letter-spacing: 0; font-size: 14px; }

.h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.01em; }
html[lang="ar"] .h2 { letter-spacing: 0; }

.stripe { position: relative; padding-bottom: 20px; }
.stripe::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 96px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--green) 0 82%, var(--red) 82% 100%);
}
html[dir="rtl"] .stripe::after { background: linear-gradient(to left, var(--green) 0 82%, var(--red) 82% 100%); }
.stripe--center { text-align: center; }
.stripe--center::after { inset-inline-start: 50%; transform: translateX(-50%); }
html[dir="rtl"] .stripe--center::after { transform: translateX(50%); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
html[lang="ar"] .btn { text-transform: none; letter-spacing: 0; font-size: 16px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.85); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn--block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__crest { width: 44px; height: auto; aspect-ratio: 978 / 1186; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); line-height: 1.05; }
.brand__sub {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 3px;
}
html[lang="ar"] .brand__sub { letter-spacing: 0; font-size: 11px; text-transform: none; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); }
html[lang="ar"] .nav a { font-size: 16px; }
.nav a:hover { color: var(--green); }

.header__actions { display: flex; align-items: center; gap: 22px; }
.lang { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
.lang__active { color: var(--green); font-weight: 700; font-family: var(--font-display); }
.lang__sep { width: 1px; height: 14px; background: var(--line); }
.lang a { color: var(--muted); }
.lang a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: transform 0.2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  color: var(--white);
  background: var(--green-ink) url("../img/hero.jpg") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 40, 26, 0), rgba(20, 40, 26, 0.15) 70%, rgba(20, 40, 26, 0.6));
}
.hero__inner { position: relative; padding-top: 88px; padding-bottom: 88px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
html[lang="ar"] .hero__badge { text-transform: none; letter-spacing: 0; font-size: 14px; }
.hero__badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(31, 154, 74, 0.35); }
.hero h1 {
  max-width: 900px;
  margin-top: 28px;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.015em;
}
html[lang="ar"] .hero h1 { letter-spacing: 0; line-height: 1.3; }
.hero__lead { max-width: 800px; margin-top: 24px; font-size: 20px; line-height: 1.6; color: rgba(255, 255, 255, 0.9); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}
.trust__item { display: flex; align-items: center; gap: 14px; }
.trust__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #6fd58f;
}
.trust__icon svg { width: 20px; height: 20px; }
.trust__title { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--white); }
.trust__sub { font-size: 12px; color: rgba(255, 255, 255, 0.72); }
html[lang="ar"] .trust__title { font-size: 15px; }
html[lang="ar"] .trust__sub { font-size: 13px; }

/* ==========================================================================
   About
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
.about__text p + p { margin-top: 20px; }
.about__text p { font-size: 17px; line-height: 1.7; }
.about__photo { border-radius: var(--radius); object-fit: cover; width: 100%; aspect-ratio: 504 / 408; margin-top: 8px; }

.journey__label {
  display: block;
  margin-top: 40px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
html[lang="ar"] .journey__label { letter-spacing: 0; text-transform: none; font-size: 15px; }
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.journey__card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 18px 16px; }
.journey__year { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--green); }
.journey__title { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); margin-top: 6px; }
.journey__desc { font-size: 12.5px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
html[lang="ar"] .journey__title { font-size: 15px; }
html[lang="ar"] .journey__desc { font-size: 13.5px; }

/* ==========================================================================
   Family heritage
   ========================================================================== */
.heritage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
.quote-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--green);
  border-inline-start: 6px solid var(--green);
  border-radius: 16px;
  padding: 40px;
}
.quote-card__mark { color: var(--red); width: 30px; height: 30px; margin-bottom: 26px; }
.quote-card__text { font-size: 21px; line-height: 1.55; font-style: italic; color: var(--ink); }
html[lang="ar"] .quote-card__text { font-style: normal; font-weight: 500; }
.quote-card__by { margin-top: 32px; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); }
.quote-card__role { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

.heritage__text { font-size: 17px; line-height: 1.7; padding-top: 32px; }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.founder { display: flex; gap: 16px; align-items: center; background: var(--white); border-radius: 12px; padding: 20px; box-shadow: var(--shadow); }
.founder__photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: 0 0 56px; }
.founder__name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.founder__role { font-family: var(--font-display); font-size: 12.5px; font-weight: 700; color: var(--green); margin-top: 2px; }
.founder__quote { font-size: 12.5px; font-style: italic; color: var(--muted); margin-top: 6px; line-height: 1.45; }
html[lang="ar"] .founder__quote { font-style: normal; font-size: 13.5px; }

/* ==========================================================================
   Locations
   ========================================================================== */
.venues { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.venue { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.venue__img { width: 100%; aspect-ratio: 548 / 205; object-fit: cover; }
.venue__body { padding: 28px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.venue__tag {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
html[lang="ar"] .venue__tag { letter-spacing: 0; text-transform: none; font-size: 13px; }
.venue__tag--red { color: var(--red); }
.venue__tag--green { color: var(--green); }
.venue__title { font-size: 24px; font-weight: 800; margin-top: 8px; }
.venue__desc { font-size: 14.5px; margin-top: 10px; line-height: 1.55; }
.venue__meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.venue__meta li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.venue__meta li:first-child { font-weight: 600; color: var(--ink); }
.venue__meta svg { width: 18px; height: 18px; color: var(--green); flex: 0 0 18px; }
.venue__map { margin-top: 18px; border-radius: 10px; overflow: hidden; background: var(--mint); height: 170px; }
.venue__map iframe { display: block; width: 100%; height: 100%; border: 0; }
.venue .btn { margin-top: 18px; }
.venues__note { margin-top: 44px; text-align: center; font-size: 14.5px; font-style: italic; color: var(--muted); }
html[lang="ar"] .venues__note { font-style: normal; }

/* ==========================================================================
   Methodology
   ========================================================================== */
.method { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 56px; }
.method h3 { font-size: 24px; font-weight: 800; }
.method__intro { font-size: 16px; line-height: 1.65; margin-top: 18px; }

.train { display: grid; gap: 14px; margin-top: 26px; }
.train__item { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: 12px; padding: 18px 20px; }
.train__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
}
.train__icon svg { width: 16px; height: 16px; }
html[dir="rtl"] .train__icon svg { transform: scaleX(-1); }
.train__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.train__desc { font-size: 13.5px; color: var(--muted); margin-top: 4px; line-height: 1.5; }

.values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.value { background: var(--white); border: 1px solid transparent; border-radius: 12px; padding: 18px; }
.value--accent { background: var(--blush); border-color: var(--red); }
.value__title { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.value__title svg { width: 16px; height: 16px; color: var(--green); }
.value--accent .value__title svg { color: var(--red); }
.value__desc { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* ==========================================================================
   Snapshot / stats
   ========================================================================== */
.section--stats { padding-block: 72px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 34px 20px; text-align: center; }
.stat__big { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--green); line-height: 1.1; }
.stat__sub { font-size: 14px; color: var(--body); margin-top: 10px; }
.stats__cta { margin-top: 40px; text-align: center; font-size: 15px; color: var(--ink); font-weight: 600; }
.stats__cta a { color: var(--red); font-weight: 700; margin-inline-start: 6px; }
.stats__cta a:hover { text-decoration: underline; }

/* ==========================================================================
   Register form
   ========================================================================== */
.section--register { padding-block: 88px; }
.form-card { max-width: 940px; margin: 0 auto; background: var(--white); border-radius: 18px; box-shadow: var(--shadow); padding: 56px 48px; }
.form-card__head { text-align: center; }
.form-card__head h2 { font-size: 32px; font-weight: 800; }
.form-card__head p { margin-top: 8px; font-size: 15px; color: var(--muted); }

.fieldset { border: 0; padding: 0; margin: 40px 0 0; min-width: 0; }
.fieldset legend {
  padding: 0;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
html[lang="ar"] .fieldset legend { letter-spacing: 0; text-transform: none; font-size: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d9dfdb;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9aa39e; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(31, 154, 74, 0.15); }
.field select {
  appearance: none;
  padding-inline-end: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231f9a4a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
html[dir="rtl"] .field select { background-position: left 14px center; }
.field.is-invalid input, .field.is-invalid select { border-color: var(--red); }
.field__error { display: none; font-size: 12.5px; color: var(--red); }
.field.is-invalid .field__error { display: block; }

.radios { display: flex; flex-wrap: wrap; gap: 22px; min-height: 46px; align-items: center; }
.radio { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink); cursor: pointer; }
.radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio__dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #c9d1cc; display: inline-grid; place-items: center; transition: border-color 0.15s ease; }
.radio__dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); transform: scale(0); transition: transform 0.15s ease; }
.radio input:checked + .radio__dot { border-color: var(--green); }
.radio input:checked + .radio__dot::after { transform: scale(1); }
.radio input:focus-visible + .radio__dot { outline: 3px solid rgba(31, 154, 74, 0.35); outline-offset: 2px; }

.consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 26px; font-size: 13.5px; color: var(--body); cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--green); flex: 0 0 18px; }
.consent.is-invalid { color: var(--red); }

.form-card .btn--submit { margin-top: 28px; min-height: 52px; font-size: 14.5px; }
.form-note { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; color: var(--muted); text-align: center; }
.form-note svg { width: 16px; height: 16px; color: var(--red); flex: 0 0 16px; }

.form-status { display: none; margin-top: 24px; padding: 16px 18px; border-radius: 10px; font-size: 15px; }
.form-status.is-success { display: block; background: var(--mint); color: var(--green-dark); border: 1px solid #bfe3cb; }
.form-status.is-error { display: block; background: var(--blush); color: var(--red); border: 1px solid #efc3c5; }
.form-card.is-sent .form-body { display: none; }
.form-card.is-sent .form-status { margin-top: 32px; }
.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); opacity: 0; pointer-events: none; }

/* ==========================================================================
   Gallery + footer
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); }
.gallery img { width: 100%; aspect-ratio: 288 / 228; object-fit: cover; }

.footer { background: var(--footer); color: rgba(255, 255, 255, 0.72); }
.contact-bar { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding-block: 64px 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.contact-bar h2 { color: var(--white); font-size: 24px; font-weight: 800; }
.contact-bar p { margin-top: 8px; font-size: 14.5px; }
.contact-bar__methods { display: flex; gap: 32px; }
.contact-method__label {
  display: block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
html[lang="ar"] .contact-method__label { letter-spacing: 0; text-transform: none; font-size: 13px; }
.contact-method__label--green { color: var(--green); }
.contact-method__label--red { color: #e04a52; }
.contact-method__value { display: block; margin-top: 4px; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--white); direction: ltr; unicode-bidi: isolate; }
html[dir="rtl"] .contact-method { text-align: start; }
.contact-method__value:hover { color: #8fe0a8; }

.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr; gap: 48px; padding-block: 56px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer .brand__name { color: var(--white); }
.footer__blurb { margin-top: 20px; font-size: 14.5px; line-height: 1.6; max-width: 340px; }
.footer__heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
html[lang="ar"] .footer__heading { letter-spacing: 0; text-transform: none; font-size: 15px; }
.footer__links li + li { margin-top: 12px; }
.footer__links a { font-size: 14.5px; }
.footer__links a:hover { color: var(--white); }
.footer__venue + .footer__venue { margin-top: 18px; }
.footer__venue strong { display: block; color: #4fc072; font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.footer__venue span { display: block; font-size: 13.5px; margin-top: 3px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 24px; font-size: 13px; }
.footer__bottom a + a { margin-inline-start: 24px; }
.footer__bottom a:hover { color: var(--white); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .section { padding-block: 72px; }
  .about__grid, .heritage__grid, .method { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { order: -1; margin-top: 0; }
  .trust { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .heritage__text { padding-top: 0; }
}

@media (max-width: 768px) {
  .header__inner { height: 72px; }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 16px 24px; border-top: 1px solid var(--line); }
  .nav-toggle { display: inline-flex; }
  .header__actions .btn { display: none; }
  .header__actions { gap: 14px; }

  .hero__inner { padding-top: 64px; padding-bottom: 56px; }
  .hero__lead { font-size: 17px; }
  .hero__cta .btn { width: 100%; }
  .trust { grid-template-columns: 1fr; gap: 18px; margin-top: 44px; padding: 20px; }

  .section { padding-block: 56px; }
  .journey { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr; }
  .quote-card { padding: 28px 24px; }
  .venues { grid-template-columns: 1fr; gap: 24px; }
  .values { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 16px; }
  .stat { padding: 26px 20px; }
  .stats__cta a { display: block; margin: 6px 0 0; }

  .form-card { padding: 36px 20px; border-radius: 14px; }
  .form-card__head h2 { font-size: 26px; }
  .grid-2 { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: repeat(5, 70vw); overflow-x: auto; scroll-snap-type: x mandatory; }
  .gallery img { scroll-snap-align: start; }

  .contact-bar { flex-direction: column; align-items: flex-start; padding-block: 48px 36px; }
  .contact-bar__methods { flex-direction: column; gap: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding-block: 44px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__bottom a + a { margin-inline-start: 18px; }
}
