/* ==========================================================================
   Donnybrook Family Doctors — fresh build
   Plain CSS, no preprocessor. Mobile-first. Single stylesheet.
   ========================================================================== */

/* ----------  Tokens  ---------- */
:root {
  /* Brand */
  --color-bg:        #fefcf7;
  --color-surface:   #ffffff;
  --color-soft:      #f5efe6;
  --color-line:      #e9e3d6;

  --color-text:      #2a3142;
  --color-text-soft: #5b6478;
  --color-muted:     #8a92a6;

  --color-primary:        #0a6b66;
  --color-primary-hover:  #08524e;
  --color-primary-soft:   #d8ece9;
  --color-accent:         #ed7e58;
  --color-accent-hover:   #d96b46;
  --color-accent-soft:    #fde7dc;

  --color-success:   #2f7a55;
  --color-warn:      #b76e15;

  /* Type */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;

  /* Spacing scale */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 30, 60, .05), 0 2px 4px rgba(20, 30, 60, .04);
  --shadow-md: 0 4px 12px rgba(20, 30, 60, .06), 0 12px 32px rgba(20, 30, 60, .07);
  --shadow-lg: 0 10px 30px rgba(20, 30, 60, .08), 0 30px 60px rgba(20, 30, 60, .12);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration-thickness: 1.5px; text-underline-offset: 3px; transition: color .15s var(--ease); }
a:hover { color: var(--color-primary-hover); }

h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 500; color: var(--color-text); line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--color-text-soft); }
p + p { margin-top: var(--sp-4); }

ul, ol { padding-left: 1.25rem; color: var(--color-text-soft); }
li + li { margin-top: .35rem; }

button { font: inherit; }

/* ----------  Helpers  ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.container--narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section--soft { background: var(--color-soft); }
.section--primary { background: var(--color-primary); color: #fff; }
.section--primary h1, .section--primary h2, .section--primary h3 { color: #fff; }
.section--primary p, .section--primary li { color: rgba(255, 255, 255, .9); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: var(--sp-4);
}
.section--primary .eyebrow { color: var(--color-bg); background: rgba(255, 255, 255, .14); }

.section-title { max-width: 56ch; margin-bottom: var(--sp-7); }
.section-title.center { margin-inline: auto; text-align: center; }
.section-title p { font-size: 1.1rem; margin-top: var(--sp-3); }

.skip-link {
  position: absolute; top: -100px; left: 8px; z-index: 9999;
  background: var(--color-text); color: #fff;
  padding: .75rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 8px; color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem;
  font-weight: 600; font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); box-shadow: 0 4px 12px rgba(10, 107, 102, .22); }
.btn--primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); color: #fff; box-shadow: 0 8px 20px rgba(10, 107, 102, .30); }
.btn--accent { background: var(--color-accent); color: #fff; border-color: var(--color-accent); box-shadow: 0 4px 12px rgba(237, 126, 88, .26); }
.btn--accent:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); color: #fff; box-shadow: 0 8px 20px rgba(237, 126, 88, .36); }

/* Refined inline arrow-link — for in-content CTAs that should feel like prose, not buttons */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .96rem;
  color: var(--color-primary);
  text-decoration: none;
  padding-block: .15rem;
  border-bottom: 1.5px solid transparent;
  align-self: flex-start;
  transition: color .15s var(--ease), border-color .15s var(--ease), gap .2s var(--ease);
}
.text-link:hover { color: var(--color-primary-hover); border-bottom-color: currentColor; gap: .65rem; }
.text-link svg { width: 16px; height: 16px; }

/* Form submit — slightly tighter and friendlier than the default .btn pill */
.btn--send {
  padding: .65rem 1.4rem;
  font-size: .96rem;
  letter-spacing: .005em;
}
.btn--send svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn--send:hover svg { transform: translate(3px, -3px) rotate(8deg); }
.btn--outline { background: transparent; color: var(--color-text); border-color: var(--color-line); }
.btn--outline:hover { border-color: var(--color-text); color: var(--color-text); background: var(--color-soft); }
.btn--ghost-light { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .35); backdrop-filter: blur(8px); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .22); border-color: #fff; color: #fff; }
.btn--sm { padding: .55rem 1rem; font-size: .92rem; }
.btn--block { width: 100%; justify-content: center; }

/* ----------  Top utility bar  ---------- */
.utility-bar {
  background: var(--color-text); color: #d8dde9;
  font-size: .88rem; padding: .55rem 0;
}
.utility-bar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.utility-bar a { color: #fff; text-decoration: none; }
.utility-bar a:hover { color: var(--color-accent); }
.utility-bar ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.25rem; flex-wrap: wrap; }
.utility-bar ul li { display: flex; align-items: center; gap: .35rem; margin: 0; color: #d8dde9; }
.utility-bar svg { width: 14px; height: 14px; opacity: .8; }
@media (max-width: 720px) { .utility-bar__hours { display: none; } }

/* ----------  Header / nav  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(254, 252, 247, .96);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-color: var(--color-line);
  box-shadow: var(--shadow-sm);
}
html { scroll-padding-top: 130px; }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: .9rem;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--color-text); }
.brand img { height: 48px; width: auto; }
.brand__name { font-family: var(--font-serif); font-weight: 500; font-size: 1.05rem; line-height: 1.1; }
.brand__name span { display: block; font-family: var(--font-sans); font-size: .72rem; color: var(--color-muted); letter-spacing: .08em; text-transform: uppercase; }

.nav__list { list-style: none; padding: 0; margin: 0; display: flex; gap: .25rem; align-items: center; }
.nav__list li { margin: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}
.nav__link:hover, .nav__link[aria-current="page"] { background: var(--color-primary-soft); color: var(--color-primary); }

.nav__has-dropdown { position: relative; }
.nav__has-dropdown > .nav__link::after {
  content: ""; width: .45rem; height: .45rem;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: .15rem;
}
.dropdown {
  position: absolute; top: 100%; right: 0;
  min-width: 240px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: .5rem;
  box-shadow: var(--shadow-md);
  list-style: none; margin: 0;
  /* Stay in DOM so the hover hit-area persists; just fade visually. */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .18s var(--ease),
              transform .18s var(--ease),
              visibility 0s linear .25s;   /* hide is delayed; show is instant */
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block; padding: .55rem .75rem;
  color: var(--color-text); text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: .96rem;
}
.dropdown a:hover { background: var(--color-soft); color: var(--color-primary); }
/* Invisible bridge over the gap between the nav link and the dropdown — keeps
   hover alive while the cursor crosses the empty space. */
.dropdown::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -.75rem;
  height: .75rem;
}
.nav__has-dropdown.is-open .dropdown,
.nav__has-dropdown:hover .dropdown,
.nav__has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(.35rem);
  transition: opacity .18s var(--ease),
              transform .18s var(--ease),
              visibility 0s;
}

.header__cta { display: flex; align-items: center; gap: .5rem; }

/* Mobile nav button */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  border-radius: 999px;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--color-text);
}
.nav__toggle svg { width: 20px; height: 20px; }

@media (max-width: 960px) {
  .nav { position: fixed; top: 0; right: -100%; width: min(86%, 380px); height: 100dvh;
    background: var(--color-surface); padding: 5rem 1.25rem 2rem; overflow-y: auto;
    box-shadow: var(--shadow-lg); transition: right .25s var(--ease); z-index: 1000; }
  .nav.is-open { right: 0; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav__link { padding: .85rem 1rem; border-radius: var(--radius-sm); }
  .nav__has-dropdown > .nav__link::after { margin-left: auto; }
  .nav__has-dropdown .dropdown {
    position: static; box-shadow: none; border: 0;
    padding: 0 0 .25rem 1rem; margin: 0;
  }
  .nav__toggle { display: inline-flex; }
  .nav__close {
    position: absolute; top: 1rem; right: 1rem;
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--color-soft); border: 0; cursor: pointer;
    color: var(--color-text);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .header__cta .btn:not(.btn--accent) { display: none; }
  body.menu-open { overflow: hidden; }
  body.menu-open::after {
    content: ""; position: fixed; inset: 0; background: rgba(20, 30, 60, .45);
    z-index: 999; animation: fade-in .15s var(--ease);
  }
}
@media (min-width: 961px) {
  .nav__close { display: none; }
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ----------  Hero  ---------- */
.hero {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  position: relative; overflow: hidden;
}
.hero__grid {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}
.hero__lede h1 { margin-bottom: var(--sp-5); }
.hero__lede p { font-size: 1.15rem; max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: var(--sp-6); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid var(--color-line); }
.hero__meta div strong { display: block; color: var(--color-text); font-family: var(--font-serif); font-size: 1.6rem; line-height: 1; }
.hero__meta div span { font-size: .85rem; color: var(--color-muted); }

.hero__art {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-soft);
}
.hero__art img { width: 100%; height: 100%; object-fit: cover; }
.hero__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 107, 102, .12) 100%);
}
.hero__badge {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  display: flex; gap: 1rem; align-items: center;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hero__badge .ico {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--color-primary-soft); color: var(--color-primary);
  display: grid; place-items: center;
}
.hero__badge strong { display: block; color: var(--color-text); }
.hero__badge span { font-size: .9rem; color: var(--color-muted); }

/* ----------  Generic page header  ---------- */
.page-header {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, var(--color-soft) 0%, var(--color-bg) 100%);
}
.page-header__inner { max-width: var(--container-narrow); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.breadcrumbs { font-size: .88rem; color: var(--color-muted); margin-bottom: var(--sp-4); display: flex; gap: .35rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--color-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-line); }
.page-header h1 { margin-bottom: var(--sp-3); }
.page-header p { font-size: 1.1rem; max-width: 60ch; }

/* ----------  Cards / grids  ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.card a.card__link { color: inherit; text-decoration: none; }
.card h3 { margin-bottom: var(--sp-3); }
.card p { font-size: .96rem; }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Service tile */
.tile {
  display: flex; flex-direction: column; gap: var(--sp-4);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-decoration: none; color: var(--color-text);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; color: var(--color-text); }
.tile__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: grid; place-items: center;
}
.tile__icon svg { width: 28px; height: 28px; }
.tile h3 { font-size: 1.2rem; margin: 0; }
.tile p { font-size: .95rem; margin: 0; }
.tile__more {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .6rem;
  padding-top: .25rem;
  font-size: .92rem; font-weight: 600;
  color: var(--color-primary);
  letter-spacing: .005em;
}
.tile__more-arrow {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  display: grid; place-items: center;
  color: var(--color-primary);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.tile__more-arrow svg { width: 14px; height: 14px; }
.tile:hover .tile__more { color: var(--color-primary-hover); }
.tile:hover .tile__more-arrow {
  background: var(--color-primary);
  color: #fff;
  transform: translateX(4px);
}

/* Doctor card */
.doctor {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.doctor:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.doctor__photo { aspect-ratio: 4 / 5; background: var(--color-soft); overflow: hidden; }
.doctor__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .4s var(--ease); }
.doctor:hover .doctor__photo img { transform: scale(1.04); }
.doctor__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.doctor__name { font-size: 1.25rem; margin: 0; }
.doctor__name a { color: inherit; text-decoration: none; }
.doctor__name a:hover { color: var(--color-primary); }
.doctor__creds { font-size: .85rem; font-weight: 600; color: var(--color-accent); letter-spacing: .04em; text-transform: uppercase; }
.doctor__bio { font-size: .95rem; color: var(--color-text-soft); flex: 1; }
.doctor__cta { margin-top: var(--sp-4); align-self: flex-start; }

/* Step / value */
.value { display: flex; flex-direction: column; gap: var(--sp-3); }
.value__num {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--color-accent-soft); color: var(--color-accent);
  font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem;
}
.value h3 { font-size: 1.15rem; }
.value p { font-size: .96rem; }

/* ----------  Service detail  ---------- */
.service-detail { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .service-detail { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.service-detail__body h2 { margin-top: var(--sp-7); margin-bottom: var(--sp-4); font-size: 1.5rem; }
.service-detail__body h2:first-child { margin-top: 0; }
.service-detail__body ul { padding-left: 1.25rem; }
.service-detail__body li { font-size: 1.02rem; }
.service-detail__aside {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  position: sticky; top: 5rem;
}
.service-detail__aside h3 { margin-bottom: var(--sp-3); font-size: 1.2rem; }
.service-detail__aside p { font-size: .95rem; margin-bottom: var(--sp-4); }

/* ----------  Doctor detail  ---------- */
.doctor-detail { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .doctor-detail { grid-template-columns: .9fr 1.4fr; align-items: start; } }
.doctor-detail__photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.doctor-detail__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.doctor-detail__body h1 { margin-bottom: var(--sp-2); }
.doctor-detail__creds { color: var(--color-accent); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .9rem; margin-bottom: var(--sp-5); }
.doctor-detail__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: var(--sp-4) 0; }
.chip { display: inline-flex; align-items: center; padding: .35rem .8rem; background: var(--color-soft); border-radius: 999px; font-size: .88rem; color: var(--color-text); }
.doctor-detail__hours { display: grid; gap: var(--sp-2); margin: var(--sp-5) 0; padding: var(--sp-5); background: var(--color-soft); border-radius: var(--radius-md); }
.doctor-detail__hours dt { color: var(--color-muted); font-size: .9rem; }
.doctor-detail__hours dd { font-weight: 500; color: var(--color-text); }

/* ----------  Forms / contact  ---------- */
.form { display: grid; gap: var(--sp-4); }
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label { font-weight: 600; font-size: .92rem; color: var(--color-text); }
.field .req { color: var(--color-accent); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  padding: .85rem 1rem;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-result { font-size: .95rem; min-height: 1.5em; padding: .35rem 0; }
.form-result.ok { color: var(--color-success); }
.form-result.err { color: #b3261e; }

.contact-grid {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; align-items: start; } }
.contact-info {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-5);
}
.contact-info dl { display: grid; gap: var(--sp-4); margin: 0; padding: 0; }
.contact-info dt { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--color-muted); }
.contact-info dd { margin: .15rem 0 0; font-size: 1rem; }
.contact-info dd a { text-decoration: none; }

/* ----------  Map embed  ---------- */
.map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--color-soft);
}
.map-embed iframe { display: block; width: 100%; height: clamp(280px, 45vw, 460px); border: 0; }

/* ----------  Booking widget container  ---------- */
.booking-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
}
.booking-card iframe {
  display: block; width: 100%; min-height: 720px;
  border: 0; border-radius: var(--radius-md);
}

/* ----------  FAQ / accordion  ---------- */
.accordion { display: grid; gap: var(--sp-3); }
.accordion details {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 0;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.accordion details[open] { border-color: transparent; box-shadow: var(--shadow-sm); }
.accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; font-size: 1.5rem; color: var(--color-primary); line-height: 1;
  transition: transform .2s var(--ease);
}
.accordion details[open] summary::after { content: "−"; }
.accordion details p, .accordion details ul {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
}

/* ----------  Downloads (forms area)  ---------- */
.downloads {
  display: grid; gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.download {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  display: flex; align-items: center; gap: var(--sp-4);
  text-decoration: none; color: var(--color-text);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease),
              border-color .2s var(--ease), background .2s var(--ease);
}
.download:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 107, 102, .12);
  border-color: var(--color-primary-soft);
  background: linear-gradient(180deg, #fff 0%, #fafdfc 100%);
  color: var(--color-text);
}
.download:focus-visible { outline: 0; box-shadow: 0 0 0 3px var(--color-primary-soft); }

.download__icon {
  flex: 0 0 auto;
  width: 44px; height: 50px;
  display: grid; place-items: center;
  color: var(--color-accent);
  transition: color .2s var(--ease), transform .25s var(--ease);
}
.download__icon svg { width: 100%; height: 100%; }
.download:hover .download__icon { color: var(--color-primary); transform: scale(1.04); }

.download__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .2rem; }
.download__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 1.05rem; line-height: 1.25;
  margin: 0; color: var(--color-text);
}
.download__desc {
  font-size: .88rem; color: var(--color-text-soft);
  margin: 0; line-height: 1.45;
}
.download__meta {
  margin-top: .35rem;
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--color-muted);
}
.download__pill {
  display: inline-flex; align-items: center;
  padding: .15rem .5rem;
  background: var(--color-accent-soft); color: var(--color-accent);
  border-radius: 999px;
  font-weight: 700; font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.download:hover .download__pill { background: var(--color-primary-soft); color: var(--color-primary); }

.download__action {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--color-soft);
  color: var(--color-text-soft);
  transition: background .2s var(--ease), color .2s var(--ease), transform .25s var(--ease);
}
.download__action svg { width: 16px; height: 16px; }
.download:hover .download__action {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(2px);
}

/* ----------  Useful links list  ---------- */
.linklist {
  display: grid; gap: var(--sp-3); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.linklist a {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  text-decoration: none; color: var(--color-text);
  font-weight: 500;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.linklist a:hover { background: var(--color-soft); border-color: var(--color-primary); color: var(--color-primary); }
.linklist a span { font-size: .85rem; color: var(--color-muted); font-weight: 400; }

/* ----------  Gallery strip  ---------- */
.gallery-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 30vw, 320px);
  gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.gallery-strip a {
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  background: var(--color-soft);
}
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-strip a:hover img { transform: scale(1.04); }

dialog.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1100px); max-height: 92vh; }
dialog.lightbox::backdrop { background: rgba(20, 30, 60, .85); backdrop-filter: blur(4px); }
dialog.lightbox img { display: block; max-width: 100%; max-height: 90vh; border-radius: var(--radius-md); margin: 0 auto; }
.lightbox__close {
  position: absolute; top: -2.5rem; right: 0;
  background: transparent; color: #fff; border: 0; font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ----------  CTA banner  ---------- */
.cta-banner {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid; gap: var(--sp-5);
  grid-template-columns: 1fr;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 320px; height: 320px; border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}
@media (min-width: 768px) { .cta-banner { grid-template-columns: 1.4fr 1fr; padding: 3rem 3.5rem; } }
.cta-banner h2 { color: #fff; margin-bottom: var(--sp-3); }
.cta-banner p { color: rgba(255, 255, 255, .9); }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ----------  Footer  ---------- */
.site-footer { background: #0c0e16; color: #aab1c5; padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-7);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer h2,
.site-footer h4 { font-family: var(--font-sans); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; font-weight: 600; margin-bottom: var(--sp-4); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer li { color: #aab1c5; }
.site-footer a { color: #c7cdde; text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }
.footer-brand { display: flex; align-items: center; gap: .5rem; margin-bottom: var(--sp-4); }
.footer-brand img { height: 44px; width: auto; }
.footer-brand strong { font-family: var(--font-serif); font-weight: 500; color: #fff; font-size: 1.05rem; }
.site-footer p { color: #aab1c5; font-size: .95rem; max-width: 36ch; }
.footer-cta { margin-top: var(--sp-4); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-block: 1.25rem; font-size: .85rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: #7e859b;
}
.footer-bottom a { color: #c7cdde; }

/* ----------  Sticky mobile CTA bar  ---------- */
.sticky-cta {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  background: var(--color-text); color: #fff;
  border-radius: 999px;
  padding: .75rem 1rem;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center; justify-content: space-between;
  gap: .75rem; z-index: 90;
}
.sticky-cta a { color: #fff; text-decoration: none; font-weight: 600; font-size: .92rem; }
.sticky-cta a.btn { padding: .5rem 1rem; }
@media (max-width: 720px) { .sticky-cta { display: flex; } body { padding-bottom: 5rem; } }

/* ----------  404  ---------- */
.notfound { text-align: center; padding: clamp(4rem, 10vw, 8rem) 1rem; }
.notfound h1 { font-size: clamp(3rem, 8vw, 6rem); margin-bottom: var(--sp-4); }
.notfound p { max-width: 50ch; margin: 0 auto var(--sp-6); }

/* ----------  Misc  ---------- */
hr { border: 0; border-top: 1px solid var(--color-line); margin-block: var(--sp-6); }
section { scroll-margin-top: 6rem; }
