/* ============================================================
   אורתו-סמייל  ·  Clarity / Clear Light
   Palette: airy near-white ground, sky-to-teal caustic light,
   deep blue-slate ink. Noto Sans Hebrew throughout. RTL.
   ============================================================ */

:root {
  /* Sky / teal scale */
  --sky-50:  #eef8fb;
  --sky-100: #dcf0f6;
  --sky-200: #b6e0eb;
  --sky-300: #82cadd;
  --sky-400: #45aecb;
  --sky-500: #1b8fb3;
  --sky-600: #14748f;
  --sky-700: #0f5c72;

  /* Ground + ink */
  --paper:   #f4fafc;
  --white:   #ffffff;
  --ink:     #112b3a;
  --ink-soft:#4a6675;   /* tinted secondary, never gray */
  --line:    #dcebf1;

  /* Warmth accent, used sparingly */
  --coral:   #ff8f6b;

  /* Effects */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 4px 14px -6px rgba(17, 79, 104, 0.22);
  --shadow:    0 18px 40px -22px rgba(17, 79, 104, 0.35);
  --shadow-lg: 0 34px 70px -34px rgba(15, 92, 114, 0.45);
  --ring: 0 0 0 4px rgba(69, 174, 203, 0.35);

  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Noto Sans Hebrew", system-ui, "Segoe UI", Arial, sans-serif;
}

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  font-size: 1.125rem;      /* 18px base */
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--white);
  color: var(--sky-600);
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.02rem;
  padding: 0.72rem 1.4rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 0.95rem 1.8rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--sky-500);
  color: var(--white);
  box-shadow: 0 14px 26px -14px rgba(20, 116, 143, 0.75);
}
.btn-primary:hover {
  background: var(--sky-600);
  transform: translateY(-2px);
  box-shadow: 0 20px 34px -14px rgba(20, 116, 143, 0.8);
}
.btn-ghost {
  background: var(--white);
  color: var(--sky-600);
  border-color: var(--sky-200);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: var(--sky-400);
  color: var(--sky-700);
  transform: translateY(-2px);
}

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 250, 252, 0.82);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
/* Backdrop only where supported; not used as decorative glass */
@supports (backdrop-filter: blur(10px)) {
  .site-header { backdrop-filter: saturate(1.4) blur(12px); }
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(17, 79, 104, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark { flex: none; filter: drop-shadow(0 6px 10px rgba(20, 116, 143, 0.2)); }
.brand-hyphen { color: var(--sky-400); }

.main-nav { margin-inline-start: auto; }
.nav-list { display: flex; gap: 0.4rem; }
.nav-list a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-soft);
  border-radius: 10px;
  position: relative;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  inset-inline: 0.85rem;
  bottom: 0.34rem;
  height: 2px;
  border-radius: 2px;
  background: var(--sky-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s var(--ease);
}
.nav-list a:hover { color: var(--ink); }
.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); }
.nav-list a.is-active { color: var(--sky-600); }

.btn-nav-cta { margin-inline-start: 0.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-inline-start: auto;
  box-shadow: var(--shadow-sm);
}
.nav-toggle-bar {
  height: 2.5px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { padding: 0.6rem clamp(1.15rem, 4vw, 2.5rem) 1.3rem; display: grid; gap: 0.15rem; }
.mobile-menu a:not(.btn) {
  display: block;
  padding: 0.85rem 0.4rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--sky-50);
}
.mobile-menu .btn { margin-top: 0.7rem; }

/* -------- Hero -------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(46% 40% at 82% 8%, rgba(130, 202, 221, 0.5), transparent 70%),
    radial-gradient(42% 46% at 12% 22%, rgba(182, 224, 235, 0.55), transparent 72%),
    radial-gradient(60% 55% at 60% 100%, rgba(220, 240, 246, 0.7), transparent 75%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-title {
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.22;
  margin-bottom: 1.5rem;
  max-width: 16.5em;
}
.hero-title-line {
  display: block;
  color: var(--ink);
}
.arc-word {
  position: relative;
  display: inline-block;
  color: var(--sky-600);
  padding-bottom: 0.18em;
  white-space: nowrap;
}
.arc-underline {
  position: absolute;
  inset-inline: -2%;
  bottom: 0;
  width: 104%;
  height: 0.5em;
  color: var(--sky-300);
  overflow: visible;
  pointer-events: none;
}
.arc-underline path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw-arc 1.15s var(--ease) 0.3s forwards;
}
@keyframes draw-arc { to { stroke-dashoffset: 0; } }

.hero-lead {
  font-size: clamp(1.12rem, 1.5vw, 1.28rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.1rem; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.chip-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--sky-400);
  box-shadow: 0 0 0 4px rgba(69, 174, 203, 0.18);
  flex: none;
}

.hero-media { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
  background: var(--sky-100);
  transform: rotate(1.2deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 92, 114, 0.14));
}
.hero-chip {
  position: absolute;
  inset-inline-start: -14px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  padding: 0.7rem 1rem 0.7rem 0.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}
.hero-chip-arc { flex: none; }
.hero-chip-text { display: flex; flex-direction: column; line-height: 1.25; }
.hero-chip-text strong { font-family: var(--font); font-size: 0.98rem; color: var(--ink); }
.hero-chip-text span { font-size: 0.82rem; color: var(--ink-soft); }

/* -------- Section shell -------- */
.section { padding-block: clamp(3.6rem, 8vw, 7rem); position: relative; }
/* Anchored nav lands the section clear of the sticky header */
section[id] { scroll-margin-top: 5rem; }
.section-head { max-width: 46rem; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head h2 { font-size: clamp(1.95rem, 4vw, 3rem); margin-bottom: 0.9rem; }
.section-sub { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--ink-soft); max-width: 40ch; }

/* -------- Services -------- */
.services-head {
  max-width: 36rem;
  margin-bottom: clamp(2.4rem, 4.5vw, 3.6rem);
}
.services-head h2 {
  font-size: clamp(2.05rem, 4.2vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
  max-width: 14em;
}
.services-head .section-sub {
  max-width: 38ch;
  line-height: 1.7;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
}
.services-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.15rem;
  align-items: stretch;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.service-feature {
  grid-column: 1;
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.service-tile {
  grid-column: 2;
  display: flex;
  flex-direction: column;
}
.service-media {
  position: relative;
  overflow: hidden;
  background: var(--sky-100);
}
.service-feature .service-media {
  flex: 1 1 0;
  min-height: 240px;
}
.service-tile .service-media {
  flex: none;
  height: 148px;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.65s var(--ease);
}
.service-feature .service-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(17, 43, 58, 0.32));
  pointer-events: none;
}
.service-tile .service-media img { object-position: center 22%; }
.service-card:hover .service-media img { transform: scale(1.05); }

.service-body {
  flex: 0 0 auto;
  padding: 1.15rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-tile .service-body { flex: 1 1 auto; }
.service-feature .service-body { padding: 1.55rem 1.7rem 1.85rem; }
.service-tag {
  display: inline-block;
  align-self: start;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sky-700);
  background: var(--sky-100);
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-size: 1.14rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.service-feature .service-body h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); }
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.service-feature .service-body p { font-size: 1.04rem; max-width: 36ch; line-height: 1.65; }
.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
}
.service-points li {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--sky-700);
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}

/* -------- Path / steps -------- */
.path { background:
    linear-gradient(180deg, var(--paper), var(--white)); }
.path-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  position: relative;
  padding-top: 30px;
}
/* Dashed rail sits on the badge centre line, badges straddle it */
.path-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  inset-inline: 11%;
  height: 2px;
  background: repeating-linear-gradient(to left, var(--sky-300) 0 7px, transparent 7px 17px);
  z-index: 0;
}
.path-step {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.6rem 1.4rem 1.7rem;
  box-shadow: var(--shadow-sm);
}
.path-num {
  position: absolute;
  top: -23px;
  inset-inline-start: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--sky-500);
  box-shadow: 0 0 0 6px var(--white), 0 10px 20px -10px rgba(20, 116, 143, 0.8);
}
.path-step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.path-step p { color: var(--ink-soft); font-size: 0.98rem; }

/* -------- Gallery -------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sky-100);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  pointer-events: none;
}
.g-tall { grid-row: span 2; }
.g-wide { grid-row: span 2; }
.g-bottom img { object-position: center 82%; }

/* -------- Testimonials -------- */
.testimonials { background: linear-gradient(180deg, var(--white), var(--sky-50)); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stars { display: inline-flex; gap: 2px; color: var(--coral); }
.testimonial-card blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--sky-50);
}
.testimonial-card figcaption img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sky-100);
}
.testimonial-card figcaption span { display: flex; flex-direction: column; line-height: 1.3; }
.testimonial-card figcaption strong { font-family: var(--font); font-size: 1rem; }
.testimonial-card figcaption span { font-size: 0.9rem; color: var(--ink-soft); }
.testimonial-card figcaption strong { color: var(--ink); }

/* -------- Pricing -------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-featured {
  border-color: var(--sky-300);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, var(--sky-50), var(--white) 40%);
}
.price-featured::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(160deg, var(--sky-300), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-badge {
  position: absolute;
  top: -13px;
  inset-inline-start: 1.8rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--sky-500);
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 18px -10px rgba(20, 116, 143, 0.9);
}
.price-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.3rem; }
.price-from { font-size: 0.95rem; color: var(--ink-soft); font-weight: 600; }
.price-amount { font-family: var(--font); font-weight: 700; font-size: 2rem; color: var(--sky-700); letter-spacing: -0.02em; }
.price-note { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.price-features { display: grid; gap: 0.7rem; margin-bottom: 1.7rem; flex: 1; }
.price-features li {
  position: relative;
  padding-inline-start: 1.7rem;
  font-size: 0.99rem;
  color: var(--ink);
}
.price-features li::before {
  content: "";
  position: absolute;
  inset-inline-start: 3px;
  top: 0.2em;
  width: 7px; height: 12px;
  border-right: 2.5px solid var(--sky-500);
  border-bottom: 2.5px solid var(--sky-500);
  transform: rotate(45deg);
}

/* -------- FAQ -------- */
.faq-wrap { max-width: 52rem; }
.faq-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item + .faq-item::before {
  content: "";
  display: block;
  height: 1px;
  margin-inline: 1.85rem;
  background: var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: start;
  background: transparent;
  border-radius: 0;
  padding: 1.55rem 1.85rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.faq-question:hover {
  color: var(--sky-600);
  background: var(--sky-50);
}
.faq-question[aria-expanded="true"] { color: var(--sky-700); }
.faq-question:focus-visible {
  border-radius: 0;
  box-shadow: inset 0 0 0 3px rgba(69, 174, 203, 0.35);
}
.faq-icon { position: relative; width: 20px; height: 20px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--sky-500);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2.4px; }
.faq-icon::after { left: 9px; top: 0; width: 2.4px; height: 20px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s var(--ease);
}
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; min-height: 0; }
.faq-answer p {
  padding: 0.15rem 1.85rem 1.65rem;
  color: var(--ink-soft);
  font-size: 1.03rem;
  max-width: 42rem;
}

/* -------- Contact -------- */
.contact { overflow: hidden; }
.contact-glow {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(40% 50% at 88% 10%, rgba(130, 202, 221, 0.4), transparent 72%),
    radial-gradient(46% 46% at 6% 90%, rgba(182, 224, 235, 0.45), transparent 72%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
}
.contact-intro h2 { font-size: clamp(1.95rem, 4vw, 2.9rem); margin-bottom: 1rem; }
.contact-intro > p { color: var(--ink-soft); font-size: 1.1rem; max-width: 40ch; margin-bottom: 2rem; }
.contact-details { display: grid; gap: 1.2rem; }
.contact-details li { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-ico {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  color: var(--sky-600);
  background: var(--white);
  border: 1px solid var(--sky-100);
  box-shadow: var(--shadow-sm);
}
.contact-details span:not(.contact-ico) { display: flex; flex-direction: column; line-height: 1.4; padding-top: 0.1rem; }
.contact-details strong { font-family: var(--font); font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); }
.contact-details a:hover { color: var(--sky-600); }

.contact-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg);
}
.field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.optional { font-weight: 400; color: var(--ink-soft); font-size: 0.86rem; }
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 1.02rem;
  width: 100%;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--sky-50);
  border: 1.5px solid var(--sky-100);
  border-radius: 13px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--sky-400);
  box-shadow: var(--ring);
}
.field input::placeholder, .field textarea::placeholder { color: #90a9b5; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; padding-inline-end: 2.6rem; cursor: pointer; }
.select-arrow {
  position: absolute;
  inset-inline-end: 1rem;
  top: 50%;
  width: 10px; height: 10px;
  border-right: 2.2px solid var(--sky-600);
  border-bottom: 2.2px solid var(--sky-600);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field.has-error input, .field.has-error select { border-color: var(--coral); background: #fff5f1; }
.field-error { color: #d8613f; font-size: 0.85rem; font-weight: 600; min-height: 1em; }
.form-reassure { text-align: center; font-size: 0.84rem; color: var(--ink-soft); margin-top: 0.9rem; }

/* success */
.form-success { text-align: center; padding: 1.5rem 0.5rem; }
.form-success[hidden] { display: none; }
.success-mark { display: flex; justify-content: center; margin-bottom: 1.1rem; }
.success-check { stroke-dasharray: 42; stroke-dashoffset: 42; }
.form-success.is-in .success-check { animation: draw-check 0.6s var(--ease) 0.15s forwards; }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.form-success p { color: var(--ink-soft); max-width: 34ch; margin: 0 auto 1.4rem; }

/* -------- Footer -------- */
.site-footer {
  background: var(--ink);
  color: #cfe1ea;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}
.site-footer .brand { color: var(--white); margin-bottom: 1rem; }
.site-footer .brand-hyphen { color: var(--sky-300); }
.footer-brand p { color: #9fbccb; max-width: 34ch; font-size: 1rem; }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky-300);
  margin-bottom: 1rem;
}
.footer-nav ul, .footer-contact ul { display: grid; gap: 0.7rem; }
.footer-nav a, .footer-contact a, .footer-contact li { color: #cfe1ea; font-size: 1rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: #8fadbd;
}
.footer-credit a { color: var(--sky-300); font-weight: 600; }
.footer-credit a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* -------- Reveal animation -------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .arc-underline path { stroke-dashoffset: 0; animation: none; }
  .success-check { stroke-dashoffset: 0; }
  .form-success.is-in .success-check { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-title { max-width: none; font-size: clamp(2.05rem, 7.4vw, 3.25rem); }
  .hero-lead { max-width: 46ch; }
  .services-grid { grid-template-columns: 1fr; }
  .service-feature {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    min-height: 300px;
  }
  .service-feature .service-media {
    flex: 1 1 46%;
    min-height: 280px;
    align-self: stretch;
  }
  .service-feature .service-body {
    flex: 1 1 54%;
    justify-content: center;
  }
  .service-tile {
    grid-column: 1;
    flex-direction: row;
    min-height: 148px;
  }
  .service-tile .service-media {
    width: 148px;
    height: auto;
    align-self: stretch;
    flex: none;
  }
  .service-tile .service-body { flex: 1; }
  .path-steps { grid-template-columns: repeat(2, 1fr); }
  .path-steps::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 34rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav, .btn-nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .service-feature {
    flex-direction: column;
    min-height: 0;
  }
  .service-feature .service-media {
    flex: none;
    width: 100%;
    height: min(48vw, 240px);
    min-height: 200px;
  }
  .service-tile {
    flex-direction: column;
    min-height: 0;
  }
  .service-tile .service-media {
    width: 100%;
    height: 140px;
  }
  .service-tile .service-body { padding: 1.15rem 1.25rem 1.3rem; }
  .service-tile h3 { font-size: 1.1rem; }
  .service-tile p { font-size: 0.95rem; }
}

@media (max-width: 560px) {
  body { font-size: 1.06rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-tall { grid-row: span 2; }
  .g-wide { grid-column: span 2; grid-row: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-photo { transform: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .faq-item + .faq-item::before { margin-inline: 1.25rem; }
  .faq-question { padding: 1.35rem 1.25rem; gap: 1rem; }
  .faq-answer p { padding: 0 1.25rem 1.4rem; }
}
