/* ── Variables ── */
:root {
  --blue:   #3BBAE8;
  --orange: #F5884A;
  --green:  #7DC235;

  --blue-light:   #EBF7FD;
  --orange-light: #FEF3EB;
  --green-light:  #F0F9E8;

  --blue-mid:   #d0eefa;
  --orange-mid: #fde0c8;
  --green-mid:  #d8f0b8;

  --dark:  #1A1A2E;
  --grey:  #666;
  --light: #f7f8fa;
  --white: #ffffff;

  --radius: 14px;
  --shadow: 0 2px 16px rgba(26,26,46,0.08), 0 1px 4px rgba(26,26,46,0.05);
  --shadow-hover: 0 8px 32px rgba(26,26,46,0.14), 0 2px 8px rgba(26,26,46,0.08);

  --font:         'DM Sans', 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --z-nav:    100;
  --z-grain: 9990;
  --z-cursor: 9999;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img  { max-width: 100%; display: block; }
ul   { list-style: none; }
a    { color: inherit; text-decoration: none; }

/* Skip-to-content */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--dark); color: var(--white);
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-size: .875rem; font-weight: 600; z-index: calc(var(--z-nav) + 1);
  transition: top 160ms var(--ease-out);
}
.skip-link:focus { top: 0; }

/* Grain overlay — breaks digital flatness */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-heading); text-wrap: balance; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
p  { color: var(--grey); text-wrap: pretty; }

/* ── Layout helpers ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section    { padding: 80px 0; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  height: 68px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--dark);
  letter-spacing: -0.01em;
  transition: color 160ms var(--ease-out);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
  background: var(--blue); border-radius: 1px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 200ms var(--ease-out);
}
.nav-links a.nav-active { color: var(--blue); }
.nav-links a.nav-active::after { transform: scaleX(1); }

.lang-switcher {
  display: flex; gap: 6px; align-items: center;
}
.lang-btn {
  border: 2px solid transparent;
  background: var(--light); border-radius: 6px;
  padding: 3px 10px; font-size: .8rem; font-weight: 700;
  cursor: pointer; color: var(--grey);
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 120ms var(--ease-out);
}
.lang-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.lang-btn:active { transform: scale(0.92); }

#menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
#menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#home {
  padding-top: 68px;
  min-height: 100dvh;
  display: flex; flex-direction: column;
}

.hero-photo {
  width: 100%; height: 55vh; min-height: 320px;
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--green-mid) 50%, var(--orange-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-photo .photo-label {
  font-size: 1.1rem; color: #888; font-style: italic; letter-spacing: .05em;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.hero-content {
  background: var(--white); padding: 56px 0 64px;
}
.hero-content .container { max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green);
  font-family: var(--font-heading); font-weight: 700; font-size: .78rem;
  border-radius: 30px; border: 1px solid rgba(125,194,53,0.2);
  padding: 5px 14px; margin-bottom: 22px; letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-content h1 { color: var(--dark); margin-bottom: 16px; }
.hero-content .subtitle {
  font-size: 1.15rem; color: var(--grey); margin-bottom: 20px; font-weight: 500;
}
.hero-quote {
  font-style: italic; font-size: 1rem; color: var(--blue);
  border-left: 4px solid var(--blue); padding-left: 16px; margin: 20px 0;
}
.hero-content p { margin-bottom: 12px; }
.hero-location {
  font-size: .9rem; font-weight: 600; color: var(--orange); margin: 16px 0 28px;
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 50px;
  font-family: var(--font-heading); font-weight: 700; font-size: .9rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
  border: none;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 2px 12px rgba(59,186,232,0.35), 0 1px 3px rgba(0,0,0,0.1);
}
.btn-secondary {
  background: transparent; color: var(--blue);
  border: 2px solid rgba(59,186,232,0.5);
  box-shadow: none;
}
.btn-orange {
  background: var(--orange); color: var(--white);
  box-shadow: 0 2px 12px rgba(245,136,74,0.35), 0 1px 3px rgba(0,0,0,0.1);
}
.btn-green {
  background: var(--green); color: var(--white);
  box-shadow: 0 2px 12px rgba(125,194,53,0.35), 0 1px 3px rgba(0,0,0,0.1);
}

/* ══════════════════════════════════
   METHODOLOGY BANNER
══════════════════════════════════ */
#methodology {
  background: var(--dark); color: var(--white); padding: 56px 0;
}
.method-photo {
  width: 100%; height: 340px;
  background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
  border-radius: var(--radius); margin-bottom: 40px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.method-photo .photo-label { color: #666; font-style: italic; }
.method-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

#methodology h2 { color: var(--white); margin-bottom: 12px; }
#methodology p  { color: #aaa; }
.method-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(125,194,53,.1); border: 1px solid rgba(125,194,53,.25);
  color: var(--green); border-radius: 50px; padding: 10px 22px;
  font-family: var(--font-heading); font-weight: 600; font-size: .9rem;
  margin-top: 20px; letter-spacing: -0.01em;
}
.method-pill::before { content: "→"; font-size: 1rem; }
.method-sub { margin-top: 12px; }
.method-quote {
  font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,.65);
  border-left: 3px solid var(--green); padding-left: 18px;
  margin: 24px 0 20px; max-width: 560px; line-height: 1.6;
}

/* ══════════════════════════════════
   STUDENTS
══════════════════════════════════ */
#students { background: var(--light); }
#students .section-header {
  text-align: center; margin-bottom: 56px;
}
.tier-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 80px;
}
.tier-card:last-child { margin-bottom: 0; }
.tier-card.reverse .tier-text { order: 2; }
.tier-card.reverse .tier-photo { order: 1; }

.tier-photo {
  border-radius: var(--radius); overflow: hidden;
  height: 360px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.tier-photo .photo-label { font-style: italic; font-size: .95rem; }
.tier-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.tier-photo.seeds-photo  { background: var(--green-light); }
.tier-photo.roots-photo  { background: var(--orange-light); }
.tier-photo.blossom-photo{ background: var(--blue-light); }

.tier-badge {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 3px; margin-bottom: 18px;
}
.tier-badge .dot { display: none; }

.tier-badge [data-i18n$="_name"] {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1;
}
.tier-badge [data-i18n$="_age"] {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; opacity: .55;
}
.badge-green  [data-i18n$="_name"],
.badge-green  [data-i18n$="_age"]  { color: var(--green); }
.badge-orange [data-i18n$="_name"],
.badge-orange [data-i18n$="_age"]  { color: var(--orange); }
.badge-blue   [data-i18n$="_name"],
.badge-blue   [data-i18n$="_age"]  { color: var(--blue); }

.tier-text h2 { margin-bottom: 6px; }
.tier-text .tagline { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.tier-text .quote  {
  font-style: italic; font-size: .95rem; margin-bottom: 16px; padding-left: 14px;
  border-left: 3px solid;
}
.seeds-card  .quote { border-color: var(--green);  color: var(--green); }
.roots-card  .quote { border-color: var(--orange); color: var(--orange); }
.blossom-card .quote{ border-color: var(--blue);   color: var(--blue); }

.sub-method {
  background: var(--white); border-radius: 10px; padding: 14px 16px;
  margin: 12px 0; border-left: 4px solid;
}
.seeds-card  .sub-method { border-color: var(--green); }
.sub-method h3 { font-size: 1rem; margin-bottom: 2px; }
.sub-method .sub-label { font-size: .82rem; color: var(--grey); margin-bottom: 4px; }

.tier-goal {
  margin-top: 16px; font-weight: 600; color: var(--dark); font-size: .95rem;
}

/* Blossom — full-width stacked: breaks 3rd-consecutive zigzag */
.blossom-wide {
  grid-template-columns: 1fr;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 48px;
  gap: 36px;
}
.blossom-wide .tier-photo {
  order: -1;
  height: 380px;
  border-radius: 10px;
  max-width: 640px;
}
.blossom-wide .tier-text {
  max-width: 640px;
}
.blossom-wide .tier-text h2       { color: var(--white); }
.blossom-wide .tier-text .tagline { color: rgba(255,255,255,.75); }
.blossom-wide .tier-text .quote   { color: var(--blue); border-color: var(--blue); }
.blossom-wide .tier-text p:not(.tagline):not(.tier-goal) { color: rgba(255,255,255,.6); }
.blossom-wide .tier-text ul li    { color: rgba(255,255,255,.65); }
.blossom-wide .tier-goal          { color: rgba(255,255,255,.9); }
.tier-text ul { margin: 12px 0; }
.tier-text ul li {
  padding: 5px 0 5px 20px; position: relative; color: var(--grey);
}
.tier-text ul li::before {
  content: "•"; position: absolute; left: 0; font-weight: 900;
}
.seeds-card  ul li::before { color: var(--green); }
.roots-card  ul li::before { color: var(--orange); }
.blossom-card ul li::before { color: var(--blue); }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
#services { background: var(--white); }
#services .section-header { text-align: center; margin-bottom: 48px; }
#services .section-header p { margin-top: 8px; font-size: 1.05rem; }

/* Asymmetric — first card featured, breaks 3-equal ban */
.services-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px;
}
.services-grid .service-card:first-child .service-photo { height: 220px; }
.service-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.service-photo {
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-photo .photo-label { font-style: italic; color: #888; font-size: .9rem; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.sc-blue   .service-photo { background: var(--blue-mid); }
.sc-green  .service-photo { background: var(--green-mid); }
.sc-orange .service-photo { background: var(--orange-mid); }

.service-body { padding: 20px; background: var(--white); }
.service-body h3 { margin-bottom: 6px; }
.service-body p  { font-size: .9rem; margin-bottom: 8px; }
.service-body .serv-sub { font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.service-body ul li {
  font-size: .88rem; color: var(--grey); padding: 3px 0 3px 16px; position: relative;
}
.service-body ul li::before { content: "–"; position: absolute; left: 0; }

.sc-blue   .service-body h3 { color: var(--blue); }
.sc-green  .service-body h3 { color: var(--green); }
.sc-orange .service-body h3 { color: var(--orange); }

.serv-bottom-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px;
}
.serv-bottom-row .service-photo { height: 140px; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
#about { background: var(--light); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.about-intro h2 { margin-bottom: 16px; }
.about-intro p  { margin-bottom: 14px; font-size: 1rem; }

.about-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}
.about-card h3 { margin-bottom: 10px; font-size: 1rem; }
.about-card ul li {
  font-size: .88rem; color: var(--grey); padding: 3px 0 3px 16px; position: relative;
}
.about-card ul li::before { content: "✓"; position: absolute; left: 0; font-size: .8rem; }

.ac-blue   h3, .ac-blue   ul li::before   { color: var(--blue); }
.ac-green  h3, .ac-green  ul li::before   { color: var(--green); }
.ac-orange h3, .ac-orange ul li::before   { color: var(--orange); }

.inclusion-block {
  margin-top: 48px; background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06);
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start;
}
.inclusion-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white; flex-shrink: 0;
}
.inclusion-block h2 { margin-bottom: 10px; }
.inclusion-block p  { margin-bottom: 8px; }

.offer-block {
  margin-top: 32px; background: var(--dark);
  border-radius: var(--radius); padding: 32px; color: var(--white);
  border: 1px solid rgba(59,186,232,0.15);
}
.offer-block h2 { color: var(--white); margin-bottom: 16px; }
.offer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.offer-item {
  background: rgba(255,255,255,.15); border-radius: 10px; padding: 10px 14px;
  font-size: .9rem; font-weight: 500;
}

/* ══════════════════════════════════
   REVIEWS
══════════════════════════════════ */
#reviews { background: var(--light); text-align: center; }
#reviews h2 { margin-bottom: 8px; }
#reviews .sub { color: var(--grey); margin-bottom: 36px; font-size: 1rem; }

.reviews-widget-wrapper { margin-bottom: 32px; }

.reviews-cta { margin-top: 8px; }

/* ══════════════════════════════════
   MAP
══════════════════════════════════ */
#map-section { background: var(--white); padding: 0 0 80px; }
.map-wrapper {
  display: grid; grid-template-columns: 320px 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); min-height: 380px;
}
.map-card {
  background: var(--dark); color: white; padding: 36px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.map-logo-icon {
  width: 120px; height: auto; margin-bottom: 4px;
}
.map-card h3 { color: white; font-size: 1.3rem; }
.map-card > p  { color: rgba(255,255,255,.6); font-size: .9rem; }
.map-contacts { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.map-contacts a {
  font-size: .85rem; color: rgba(255,255,255,.7);
  transition: color 160ms var(--ease-out); word-break: break-all;
}
.map-embed { position: relative; }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; display: block; }
.map-link-btn { margin-top: 16px; font-size: .85rem; padding: 10px 20px; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
#contact { padding: 0; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 680px;
}
.contact-info {
  background: linear-gradient(145deg, var(--dark) 0%, #0d2233 100%);
  display: flex; align-items: center;
  padding: 72px 56px;
  position: relative; overflow: hidden;
}
.contact-info::before {
  content: ""; position: absolute; top: -120px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,186,232,.18) 0%, transparent 70%);
  pointer-events: none;
}
.contact-info::after {
  content: ""; position: absolute; bottom: -100px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(125,194,53,.14) 0%, transparent 70%);
  pointer-events: none;
}
.contact-info-content { position: relative; z-index: 1; }
.contact-eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.contact-info h2 {
  color: white; font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2; margin-bottom: 16px;
}
.contact-sub { color: rgba(255,255,255,.6); font-size: .97rem; margin-bottom: 36px; line-height: 1.7; }

.contact-info-items { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px; border-radius: 10px;
  transition: background 160ms var(--ease-out); text-decoration: none;
}
.contact-info-item.no-link { cursor: default; }

.ci-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.ci-blue   { background: rgba(59,186,232,.2);  color: var(--blue); }
.ci-green  { background: rgba(125,194,53,.2);  color: var(--green); }
.ci-orange { background: rgba(245,136,74,.2);  color: var(--orange); }

.ci-label {
  display: block; font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px;
}
.ci-value {
  display: block; font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.4;
}

.contact-social { display: flex; gap: 10px; }
.csocial-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border-radius: 8px;
  padding: 8px 14px; font-size: .83rem; color: rgba(255,255,255,.7);
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out), transform 120ms var(--ease-out);
}
.csocial-btn:active { transform: scale(0.97); }

/* Form panel */
.contact-form-panel {
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  padding: 64px 48px;
}
.contact-form-card {
  background: var(--white); border-radius: 18px;
  padding: 40px 36px; box-shadow: var(--shadow-hover);
  border: 1px solid rgba(0,0,0,0.06);
  width: 100%; max-width: 480px;
}
.contact-form-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.contact-form-card > p { color: var(--grey); font-size: .9rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--dark); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e4e4e8; border-radius: 10px;
  padding: 11px 14px; font-size: .92rem; font-family: var(--font);
  color: var(--dark); background: var(--white);
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out); outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,186,232,.15);
}
.form-group select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%; padding: 14px; font-size: 1rem;
  margin-top: 4px; border-radius: 50px;
  transition: background 160ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.form-submit:active:not(:disabled) { transform: scale(0.97); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

.form-success[hidden] { display: none; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  background: var(--green-light); color: var(--green);
  border-radius: 10px; padding: 12px 16px;
  font-size: .9rem; font-weight: 600; margin-top: 14px;
}

/* Nav contact highlight */
.nav-contact-link {
  background: var(--orange); color: white !important;
  padding: 7px 18px; border-radius: 50px;
  font-family: var(--font-heading); font-weight: 700 !important; font-size: .85rem;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 10px rgba(245,136,74,0.3);
  transition: background 160ms var(--ease-out), transform 120ms var(--ease-out), box-shadow 160ms var(--ease-out) !important;
}
.nav-contact-link:active { transform: scale(0.97) !important; }

/* ══════════════════════════════════
   FOOTER (simplified)
══════════════════════════════════ */
footer {
  background: var(--dark); color: rgba(255,255,255,.6);
  padding: 28px 0;
}
.footer-simple {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { height: 40px; width: auto; }
.footer-brand p  { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-simple-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.footer-simple-right span { font-size: .8rem; }
.footer-legal {
  display: flex; gap: 16px; margin-top: 6px;
}
.footer-legal a {
  font-size: .75rem; color: rgba(255,255,255,.3);
  transition: color 160ms var(--ease-out);
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 34px; height: 34px; background: rgba(255,255,255,.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .map-wrapper   { grid-template-columns: 1fr; }
  .map-embed iframe { min-height: 280px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info  { padding: 52px 32px; }
  .contact-form-panel { padding: 48px 24px; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-simple { flex-direction: column; align-items: flex-start; }
  .footer-simple-right { align-items: flex-start; }
  .nav-links { display: none; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: var(--white);
    border-bottom: 1px solid #eee; padding: 20px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  #menu-toggle { display: flex; }

  .tier-card { grid-template-columns: 1fr; }
  .tier-card.reverse .tier-text { order: unset; }
  .tier-card.reverse .tier-photo { order: unset; }
  .tier-photo { height: 260px; }

  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:first-child .service-photo { height: 180px; }
  .serv-bottom-row { grid-template-columns: 1fr; }
  .blossom-wide { padding: 32px; }
  .blossom-wide .tier-photo { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .reviews-grid   { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .blossom-wide   { padding: 24px; }
  .about-cards    { grid-template-columns: 1fr; }
  .offer-grid     { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .inclusion-block{ grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }
  h1 { font-size: 1.9rem; }
}

/* ══════════════════════════════════
   PAGE LOAD ANIMATIONS
══════════════════════════════════ */
@keyframes navEntry {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

nav         { animation: navEntry 450ms var(--ease-out) both; }
.hero-photo { animation: fadeIn  800ms 40ms var(--ease-out) both; }

/* Hero stagger — 4 elements, clean sequence */
.hero-badge                { animation: fadeUp 700ms  80ms var(--ease-out) both; }
.hero-content h1           { animation: fadeUp 750ms 180ms var(--ease-out) both; }
.hero-content .subtitle    { animation: fadeUp 650ms 300ms var(--ease-out) both; }
.hero-content .btn-group   { animation: fadeUp 550ms 420ms var(--ease-out) both; }

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   HOVER INTERACTIONS (pointer devices only)
══════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  .btn:hover                { transform: translateY(-2px); }
  .btn-primary:hover        { box-shadow: 0 6px 24px rgba(59,186,232,0.45), 0 2px 8px rgba(0,0,0,0.08); }
  .btn-orange:hover         { box-shadow: 0 6px 24px rgba(245,136,74,0.45), 0 2px 8px rgba(0,0,0,0.08); }
  .btn-secondary:hover      { border-color: var(--blue); background: rgba(59,186,232,0.05); box-shadow: none; }
  .btn-green:hover          { box-shadow: 0 6px 24px rgba(125,194,53,0.45), 0 2px 8px rgba(0,0,0,0.08); }
  .nav-links a:hover        { color: var(--blue); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .lang-btn:hover           { background: var(--blue); color: var(--white); border-color: var(--blue); }
  .service-card:hover       { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
  .map-contacts a:hover     { color: var(--blue); }
  a.contact-info-item:hover { background: rgba(255,255,255,.06); }
  .csocial-btn:hover        { background: rgba(59,186,232,0.2); color: var(--blue); }
  .nav-contact-link:hover   { background: #e07030 !important; transform: translateY(-1px); }
  .social-links a:hover     { background: var(--blue); color: white; }
}

/* ══════════════════════════════════
   MOBILE NAV OPEN ANIMATION
══════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links.open { animation: fadeUp 200ms var(--ease-out) forwards; }
}

/* ══════════════════════════════════
   KEYBOARD FOCUS (WCAG AA)
══════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Form fields already have border + glow focus style */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible { outline: none; }

/* ══════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }

  #cursor-dot {
    pointer-events: none;
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: currentColor;
    color: var(--blue);
    z-index: var(--z-cursor);
    will-change: transform;
    transition: color 200ms ease, opacity 150ms ease;
  }
}

/* ══════════════════════════════════
   REDUCED MOTION
══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; opacity: 1; transform: none; }
  nav, .hero-photo,
  .hero-badge, .hero-content h1, .hero-content .subtitle,
  .hero-content .btn-group { animation: none; }
  .nav-links.open { animation: none; }
  #cursor-dot { transition: none; }
}
