/* ============================================================
   Veterinární ordinace Konečná — styles.css
   Art direction: warm, caring, trustworthy · cream + sage + peach
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --cream: #fcf8f1;
  --cream-deep: #f4ecdf;
  --card: #fffdf9;
  --sage-900: #1f3d34;
  --sage-700: #2f5d50;
  --sage-600: #3a6f5e;
  --sage-500: #4c8b74;
  --sage-300: #a9cabc;
  --sage-100: #e4f0ea;
  --peach: #f2946f;
  --peach-soft: #f8b79a;
  --amber: #f5b45c;
  --ink: #23322e;
  --ink-soft: #5b6a64;
  --line: #e9e0d1;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--cream);
  --text: var(--ink);
  --muted: var(--ink-soft);
  --primary: var(--sage-700);
  --primary-hover: var(--sage-900);
  --accent: var(--peach);

  /* Type */
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Shape */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Shadow — warm-tinted, not gray */
  --shadow-sm: 0 2px 8px rgba(47, 93, 80, 0.06);
  --shadow-md: 0 14px 34px -14px rgba(47, 93, 80, 0.22);
  --shadow-lg: 0 34px 70px -28px rgba(31, 61, 52, 0.32);
  --shadow-warm: 0 20px 48px -18px rgba(242, 148, 111, 0.4);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--sage-900);
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 1.35rem + 2.2vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.4rem); }
p  { margin: 0 0 1rem; }

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

.section { padding-block: var(--section-y); position: relative; }

.skip-link {
  position: absolute; left: -999px; top: 0.5rem; z-index: 200;
  background: var(--sage-900); color: #fff; padding: 0.6rem 1rem; border-radius: var(--r-sm);
}
.skip-link:focus { left: 0.5rem; }

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

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sage-600);
  background: var(--sage-100);
  padding: 0.4rem 0.9rem; border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--peach); }

.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.75rem); text-align: center; }
.section-head-left { margin-inline: 0; text-align: left; }
.section-lead { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.8rem; --pad-x: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: var(--pad-y) var(--pad-x); border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn-lg { --pad-y: 1.05rem; --pad-x: 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost { background: rgba(255,255,255,0.7); color: var(--sage-900); border-color: var(--line); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-emergency { background: var(--peach); color: #fff; box-shadow: var(--shadow-warm); }
.btn-emergency:hover { background: #e97e54; transform: translateY(-3px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 248, 241, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px -14px rgba(31, 61, 52, 0.28);
  border-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--sage-700); }
.brand-mark { display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--sage-900); letter-spacing: -0.01em; }
.brand-text small { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.main-nav ul { display: flex; align-items: center; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.main-nav ul a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; color: var(--ink-soft);
  padding: 0.5rem 0.6rem; border-radius: var(--r-pill); transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav ul a:hover { color: var(--sage-900); background: var(--sage-100); }
.nav-cta-mobile { display: none; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.4rem; color: var(--sage-700);
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; padding: 0.4rem 0.5rem;
  white-space: nowrap;
}
.nav-phone svg { flex: none; }
.nav-phone:hover { color: var(--peach); }
.nav-phone svg { color: var(--peach); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: var(--sage-100);
  border: none; border-radius: var(--r-sm); cursor: pointer; padding: 0;
}
.hamburger span { width: 20px; height: 2px; background: var(--sage-900); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-block: clamp(2.5rem, 5vw, 5rem) clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.hero-blob { position: absolute; border-radius: 50%; filter: blur(10px); z-index: 0; opacity: 0.55; }
.hero-blob-1 { width: 42vw; height: 42vw; max-width: 560px; max-height: 560px; top: -14%; right: -8%;
  background: radial-gradient(circle at 30% 30%, var(--sage-300), transparent 70%); }
.hero-blob-2 { width: 34vw; height: 34vw; max-width: 420px; max-height: 420px; bottom: -18%; left: -10%;
  background: radial-gradient(circle at 40% 40%, var(--peach-soft), transparent 70%); opacity: 0.4; }

.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { color: var(--sage-900); margin-bottom: 1.1rem; }
.hero-copy h1 .hl { position: relative; color: var(--sage-700); white-space: nowrap; }
.hero-copy h1 .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.06em; height: 0.34em; z-index: -1;
  background: linear-gradient(120deg, var(--amber), var(--peach-soft));
  border-radius: var(--r-pill); opacity: 0.55; transform: rotate(-1.2deg);
}
.hero-lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem); color: var(--ink-soft); max-width: 44ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.8rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 1.1rem 1.5rem; list-style: none; padding: 0; margin: 0; }
.hero-badges li { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.92rem; font-weight: 500; color: var(--sage-700); }
.hero-badges svg { color: var(--sage-500); background: var(--sage-100); border-radius: 50%; padding: 3px; width: 22px; height: 22px; }

/* Hero visual */
.hero-visual { position: relative; z-index: 2; }
.hero-photo {
  position: relative; border-radius: 46% 54% 52% 48% / 58% 46% 54% 42%;
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  animation: blobMorph 14s ease-in-out infinite;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
@keyframes blobMorph {
  0%, 100% { border-radius: 46% 54% 52% 48% / 58% 46% 54% 42%; }
  50% { border-radius: 54% 46% 44% 56% / 48% 56% 44% 52%; }
}

.hero-card {
  position: absolute; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 0.85rem 1.1rem;
  display: flex; align-items: center; gap: 0.7rem; border: 1px solid var(--line);
}
.hero-card-rating { top: 7%; left: -6%; flex-direction: column; gap: 0.1rem; text-align: center; padding: 0.9rem 1.2rem; }
.hero-card-rating .stars { color: var(--amber); font-size: 0.95rem; letter-spacing: 1px; }
.hero-card-rating strong { font-family: var(--font-head); font-size: 1.35rem; color: var(--sage-900); }
.hero-card-rating span { font-size: 0.72rem; color: var(--muted); }
.hero-card-open { bottom: 6%; right: -5%; }
.hero-card-open strong { display: block; font-family: var(--font-head); font-size: 0.92rem; color: var(--sage-900); }
.hero-card-open span { font-size: 0.78rem; color: var(--muted); }

.pulse-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--sage-500); position: relative; flex: none; }
.pulse-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--sage-500); animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(2.8); opacity: 0; } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--sage-900); color: #fff; padding-block: clamp(2.5rem, 5vw, 3.5rem);
  position: relative; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2rem); text-align: center; }
.trust-item { position: relative; padding: 0.5rem; }
.trust-item:not(:last-child)::after {
  content: ""; position: absolute; right: calc(clamp(1.2rem, 3vw, 2rem) / -2); top: 15%; bottom: 15%;
  width: 1px; background: rgba(255,255,255,0.14);
}
.counter { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  color: #fff; line-height: 1; letter-spacing: -0.02em; }
.trust-item p { margin: 0.6rem 0 0; color: rgba(255,255,255,0.72); font-size: 0.92rem; max-width: 22ch; margin-inline: auto; }

/* ============================================================
   CARDS GRID (services + testimonials)
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }

.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--sage-500), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--sage-300); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: var(--r-md);
  background: var(--sage-100); color: var(--sage-700); margin-bottom: 1.1rem;
  transition: transform 0.35s var(--ease), background 0.3s;
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); background: var(--sage-500); color: #fff; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ============================================================
   PROČ K NÁM
   ============================================================ */
.why { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.why-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.why-media { position: relative; }
.why-photo { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.why-photo-2 {
  position: absolute; bottom: -12%; right: -10%; width: 48%; border-radius: var(--r-lg);
  aspect-ratio: 1; box-shadow: var(--shadow-md);
}
.why-photo-2 img { aspect-ratio: 1; }

.why-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1.5rem; }
.why-list li { display: flex; gap: 1.1rem; }
.why-num {
  flex: none; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  background: #fff; color: var(--sage-700); border: 2px solid var(--sage-300); box-shadow: var(--shadow-sm);
}
.why-list h3 { margin-bottom: 0.25rem; }
.why-list p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   O ORDINACI
   ============================================================ */
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-portrait { position: relative; }
.portrait-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.portrait-frame img { width: 100%; object-fit: cover; aspect-ratio: 5/6; }
.portrait-note {
  position: absolute; top: 0.9rem; left: 0.9rem; background: rgba(35,50,46,0.72); color: #fff;
  font-size: 0.72rem; font-weight: 500; padding: 0.3rem 0.7rem; border-radius: var(--r-pill); backdrop-filter: blur(4px);
}
.about-signature {
  position: absolute; bottom: -1.4rem; left: 50%; transform: translateX(-50%);
  background: #fff; box-shadow: var(--shadow-md); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 0.7rem 1.3rem; text-align: center; white-space: nowrap;
}
.about-signature strong { display: block; font-family: var(--font-head); color: var(--sage-900); font-size: 1rem; }
.about-signature span { font-size: 0.8rem; color: var(--muted); }

.about-copy p { color: var(--ink-soft); }
.creds { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.creds li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.98rem; font-weight: 500; color: var(--sage-900); }
.creds svg { flex: none; color: var(--sage-500); margin-top: 2px; }

/* ============================================================
   ORDINAČNÍ HODINY + POHOTOVOST
   ============================================================ */
.hours { background: var(--sage-900); }
.hours .section { }
.hours-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.2rem, 3vw, 2rem); align-items: stretch; }

.hours-card, .emergency-card { border-radius: var(--r-xl); padding: clamp(1.8rem, 3.5vw, 2.6rem); }
.hours-card { background: var(--card); box-shadow: var(--shadow-lg); }
.hours-card h2 { margin-bottom: 1.2rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 1.2rem; }
.hours-table th, .hours-table td { padding: 0.7rem 0; text-align: left; border-bottom: 1px solid var(--line); font-size: 1rem; }
.hours-table th { font-weight: 500; color: var(--ink-soft); font-family: var(--font-body); }
.hours-table td { text-align: right; font-family: var(--font-head); font-weight: 600; color: var(--sage-900); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table .is-closed td { color: var(--muted); font-weight: 500; }
.hours-note { color: var(--muted); font-size: 0.94rem; margin-bottom: 1.4rem; }

.emergency-card {
  background: linear-gradient(160deg, var(--peach) 0%, #e87a50 100%); color: #fff;
  box-shadow: var(--shadow-warm); display: flex; flex-direction: column; justify-content: center;
}
.emergency-icon { display: grid; place-items: center; width: 60px; height: 60px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.2); margin-bottom: 1.1rem; }
.emergency-card h3 { color: #fff; font-size: 1.35rem; }
.emergency-card p { color: rgba(255,255,255,0.92); margin-bottom: 1.5rem; }
.emergency-card .btn-emergency { background: #fff; color: #d96a3d; box-shadow: 0 12px 30px -12px rgba(0,0,0,0.35); }
.emergency-card .btn-emergency:hover { background: var(--sage-900); color: #fff; }

/* ============================================================
   REFERENCE
   ============================================================ */
.testimonials { background: var(--cream-deep); }
.testimonial-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}
.testimonial-card::before {
  content: "\201C"; position: absolute; top: -0.4rem; right: 1.4rem;
  font-family: var(--font-head); font-size: 5rem; color: var(--sage-300); opacity: 0.5; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 1.05rem; }
.testimonial-card blockquote { margin: 0; font-size: 1rem; color: var(--ink); line-height: 1.6; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; padding-top: 0.5rem; }
.testimonial-card figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sage-100); }
.testimonial-card figcaption strong { display: block; font-family: var(--font-head); color: var(--sage-900); font-size: 0.95rem; }
.testimonial-card figcaption small { color: var(--muted); font-size: 0.82rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 861px) { .faq-inner .section-head { position: sticky; top: 100px; } }
.faq-list { display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0.4rem 1.3rem; box-shadow: var(--shadow-sm); transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] { border-color: var(--sage-300); box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1rem 0; font-family: var(--font-head); font-weight: 600;
  color: var(--sage-900); font-size: 1.05rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--sage-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232f5d50' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; transition: transform 0.3s var(--ease), background-color 0.3s;
}
.faq-item[open] summary::after { transform: rotate(135deg); background-color: var(--sage-300); }
.faq-answer { overflow: hidden; }
.faq-answer p { margin: 0 0 1rem; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   KONTAKT + FORMULÁŘ
   ============================================================ */
.contact-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-ic { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--sage-100); color: var(--sage-700); }
.contact-list strong { display: block; font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.1rem; }
.contact-list a, .contact-list span { color: var(--sage-900); font-weight: 500; }
.contact-list a:hover { color: var(--peach); }

.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { display: block; filter: saturate(1.05); }

/* Form */
.contact-form-wrap { position: relative; }
.booking-form {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-lg); position: relative;
}
.form-intro { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--sage-900); margin: 0 0 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; color: var(--sage-900); margin-bottom: 0.4rem; }
.field label span { color: var(--peach); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(76, 139, 116, 0.14);
}
.field input::placeholder, .field textarea::placeholder { color: #a9a293; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d9694a; background: #fdf3ef; }
.error-msg { display: block; color: #c9552f; font-size: 0.82rem; margin-top: 0.35rem; min-height: 0; opacity: 0; transition: opacity 0.2s; }
.field.invalid .error-msg { opacity: 1; }

.form-privacy { font-size: 0.8rem; color: var(--muted); margin: 0.9rem 0 0; text-align: center; }

.form-success[hidden] { display: none; }
.form-success {
  position: absolute; inset: 0; background: var(--card); border-radius: var(--r-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 2rem; gap: 0.3rem; animation: fadeInScale 0.5s var(--ease);
}
.form-success .success-ic { display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%;
  background: var(--sage-100); color: var(--sage-600); margin-bottom: 0.8rem; }
.form-success h3 { color: var(--sage-900); }
.form-success p { color: var(--muted); max-width: 34ch; }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--sage-900); color: rgba(255,255,255,0.78); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.brand-footer { color: var(--sage-300); }
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text small { color: rgba(255,255,255,0.6); }
.footer-brand p { margin-top: 1rem; max-width: 30ch; font-size: 0.94rem; }
.footer-col h4 { font-family: var(--font-head); color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; font-size: 0.94rem; }
.footer-col a:hover { color: var(--peach-soft); }
.footer-col strong { color: #fff; }
.footer-col .muted { color: rgba(255,255,255,0.5); }
.footer-links a { transition: padding-left 0.2s, color 0.2s; }
.footer-links a:hover { padding-left: 4px; color: var(--peach-soft); }

.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-made { margin: 0; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 50%; bottom: 1.1rem; transform: translate(-50%, 130%);
  z-index: 90; display: none; align-items: center; gap: 0.5rem;
  background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 600;
  padding: 0.95rem 1.6rem; border-radius: var(--r-pill); box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.show { transform: translate(-50%, 0); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Hide the header phone link before the nav gets cramped */
@media (max-width: 1340px) {
  .nav-phone { display: none; }
}

/* Nav → hamburger drawer once the horizontal menu no longer fits comfortably */
@media (max-width: 1180px) {
  .main-nav {
    position: fixed; inset: 74px 0 auto 0; background: var(--cream);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem var(--gutter) 2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); transform: translateY(-120%); transition: transform 0.4s var(--ease);
    max-height: calc(100vh - 74px); overflow-y: auto; display: flex;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .main-nav ul a { display: block; padding: 0.95rem 0.5rem; font-size: 1.05rem; border-radius: 0; }
  .nav-cta-mobile { display: inline-flex; margin-top: 1.2rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .hero-copy { text-align: center; }
  .hero-copy h1 .hl { white-space: normal; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-lead { margin-inline: auto; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .trust-item:nth-child(2)::after { display: none; }

  .why-inner, .about-inner, .hours-grid, .faq-inner, .contact-inner { grid-template-columns: 1fr; }
  .why-media { max-width: 460px; margin: 0 auto 1rem; }
  .about-portrait { max-width: 380px; margin: 0 auto 2.5rem; }
  .section-head-left { text-align: center; }
  .creds li, .why-list li { text-align: left; }
  .why-photo-2 { width: 40%; right: -4%; }

  .sticky-cta { display: inline-flex; }
}

@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card-rating { left: 2%; }
  .hero-card-open { right: 2%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: clamp(2.1rem, 1.4rem + 3.6vw, 3rem); }
}

@media (max-width: 380px) {
  .hero-card { display: none; }
}
