/* Les Jardins d'Euridice — Soft botanical UI */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #F2F6F4;
  --color-bg-soft: #E6EFEA;
  --color-surface: #FFFFFF;
  --color-ink: #1A2420;
  --color-ink-soft: #3D4F46;
  --color-muted: #5A6B63;
  --color-leaf: #2F5D4A;
  --color-leaf-deep: #1A3329;
  --color-verdigris: #1F8A7A;
  --color-verdigris-hover: #177568;
  --color-mist: #D4E2DC;
  --color-bloom: #A86B6E;
  --color-border: #C9D9D1;
  --color-on-primary: #FFFFFF;
  --color-ring: #1F8A7A;
  --color-destructive: #B42318;

  --shadow-soft: 0 8px 28px -12px rgba(26, 51, 41, 0.18);
  --shadow-lift: 0 16px 40px -16px rgba(26, 51, 41, 0.28);
  --radius: 12px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 220ms;
  --nav-h: 72px;
  --wrap: 1120px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Raleway', system-ui, sans-serif;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(31, 138, 122, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(47, 93, 74, 0.06), transparent 50%),
    var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-verdigris); transition: color var(--duration) var(--ease); }
a:hover { color: var(--color-leaf-deep); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--color-leaf-deep);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .wrap { width: min(100% - 3rem, var(--wrap)); }
}
@media (min-width: 1024px) {
  .wrap { width: min(100% - 4rem, var(--wrap)); }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-leaf-deep);
  letter-spacing: -0.01em;
}

/* ——— Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(242, 246, 244, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 217, 209, 0.7);
  transition: box-shadow var(--duration) var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-leaf-deep);
  min-height: 44px;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-leaf-deep);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--color-leaf); }
.nav-links a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--color-verdigris);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 1.25rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
    box-shadow: var(--shadow-lift);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--color-mist);
  }
  .nav-links .btn {
    margin-top: 12px;
    justify-content: center;
    border-bottom: none;
    box-shadow: none;
  }
  .nav-links .btn[aria-current="page"] {
    box-shadow: none;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease),
    border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
  touch-action: manipulation;
}

#sanordv-booking-widget {
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-mist);
  box-shadow: var(--shadow-soft);
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--color-verdigris);
  color: var(--color-on-primary);
  box-shadow: 0 8px 20px -10px rgba(31, 138, 122, 0.7);
}
.btn-primary:hover {
  background: var(--color-verdigris-hover);
  color: #fff;
  box-shadow: var(--shadow-lift);
}
.btn-ghost {
  background: transparent;
  color: var(--color-leaf-deep);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  background: var(--color-surface);
  border-color: var(--color-leaf);
  color: var(--color-leaf);
}
.btn-on-dark {
  background: #fff;
  color: var(--color-leaf-deep);
}
.btn-on-dark:hover { background: var(--color-mist); color: var(--color-leaf-deep); }
.btn-ghost-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost-on-dark:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(92dvh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroKen 18s var(--ease) forwards;
}
@keyframes heroKen {
  to { transform: scale(1); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 51, 41, 0.35) 0%, rgba(26, 51, 41, 0.55) 45%, rgba(26, 51, 41, 0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  max-width: 720px;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.1s forwards;
}
.hero-brand em {
  font-style: italic;
  font-weight: 400;
  color: #C8E6DB;
}
.hero h1 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.25s forwards;
}
.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 38rem;
  margin-bottom: 1.75rem;
  font-weight: 300;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.4s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.55s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-hero {
  padding: 4.5rem 0 3rem;
  background:
    linear-gradient(180deg, var(--color-bg-soft), var(--color-bg));
  border-bottom: 1px solid var(--color-mist);
}
.page-hero .eyebrow { margin-bottom: 0.75rem; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.75rem;
}
.page-hero p {
  max-width: 38rem;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-verdigris);
}

/* ——— Sections ——— */
.section { padding: 5rem 0; }
.section-soft { background: var(--color-bg-soft); }
.section-dark {
  background: var(--color-leaf-deep);
  color: rgba(255,255,255,0.88);
}
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-head {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin: 0.5rem 0 0.85rem;
}
.section-head p { color: var(--color-muted); }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split-reverse .split-media { order: 2; }
  .split-reverse .split-copy { order: 1; }
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  background: var(--color-mist);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-media.landscape { aspect-ratio: 5 / 4; }
.split-copy .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--color-leaf);
  margin: 1rem 0 1.25rem;
  line-height: 1.35;
}
.split-copy p + p { margin-top: 1rem; }
.split-copy .muted { color: var(--color-muted); }

/* Expertise — linked rows, not cards */
.expertise-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}
.expertise-item {
  display: grid;
  gap: 0.75rem 2rem;
  padding: 1.75rem 0.25rem;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: padding-left var(--duration) var(--ease), background var(--duration) var(--ease);
  border-radius: var(--radius-sm);
}
@media (min-width: 768px) {
  .expertise-item {
    grid-template-columns: 140px 1fr auto;
    align-items: center;
  }
}
.expertise-item:hover {
  background: rgba(255,255,255,0.55);
  padding-left: 0.75rem;
}
.expertise-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-leaf-deep);
}
.expertise-item p {
  color: var(--color-muted);
  font-size: 0.98rem;
}
.expertise-item .arrow {
  color: var(--color-verdigris);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.expertise-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-verdigris);
  font-weight: 600;
}

/* Garden strip */
.jardin-band {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  min-height: 320px;
  display: grid;
  align-items: end;
  box-shadow: var(--shadow-soft);
}
.jardin-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jardin-band .overlay {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(26, 51, 41, 0.9));
  color: #fff;
  max-width: 36rem;
}
.jardin-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.4rem 0 0.75rem;
}
.jardin-band p { color: rgba(255,255,255,0.82); font-weight: 300; }

/* Testimonials */
.quotes {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .quotes { grid-template-columns: 1fr 1fr; }
}
.quote-block {
  background: var(--color-surface);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--color-ink-soft);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}
.quote-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.88rem;
}
.quote-meta strong { color: var(--color-leaf-deep); font-weight: 600; }
.quote-meta span { color: var(--color-muted); }

/* Prose pages */
.prose {
  max-width: 42rem;
}
.prose p { margin-bottom: 1.1rem; color: var(--color-ink-soft); }
.prose h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 2.5rem 0 1rem;
}
.prose h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}
.prose ul {
  margin: 0 0 1.25rem 1.2rem;
  color: var(--color-ink-soft);
}
.prose li { margin-bottom: 0.4rem; }
.prose .lede {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-leaf);
  line-height: 1.4;
}

.content-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .content-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: start;
  }
}
.side-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.side-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.side-panel p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.side-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.side-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
}
.side-list svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-verdigris);
  margin-top: 2px;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.5rem 0 1rem;
}
.info-rows {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}
.info-rows li {
  display: grid;
  gap: 0.15rem;
}
.info-rows .label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-verdigris);
  font-weight: 600;
}
.info-rows a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 500;
}
.info-rows a:hover { color: var(--color-verdigris); }

.map-embed {
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  height: 220px;
  box-shadow: var(--shadow-soft);
  filter: grayscale(0.15) saturate(0.9);
}

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.form-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.form-card > p {
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
.field { display: grid; gap: 0.35rem; }
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-ink-soft);
}
.field .req { color: var(--color-bloom); }
.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:hover,
.field textarea:hover { border-color: var(--color-leaf); }
.field input:focus,
.field textarea:focus {
  border-color: var(--color-verdigris);
  box-shadow: 0 0 0 4px rgba(31, 138, 122, 0.15);
  outline: none;
}
.field .error {
  color: var(--color-destructive);
  font-size: 0.82rem;
  display: none;
}
.field.is-invalid input,
.field.is-invalid textarea { border-color: var(--color-destructive); }
.field.is-invalid .error { display: block; }
.form-note {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}
.form-success {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(31, 138, 122, 0.1);
  color: var(--color-leaf);
  font-weight: 500;
  margin-bottom: 1rem;
}
.form-success.is-visible { display: block; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Footer */
.site-footer {
  background: var(--color-leaf-deep);
  color: rgba(255,255,255,0.78);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
}
.footer-brand span {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; display: grid; gap: 0.45rem; }
.site-footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
}
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
