﻿:root {
  --bg: #f7f5dc;
  --bg-deep: #dfe7b4;
  --surface: rgba(255, 252, 245, 0.88);
  --surface-strong: #fffdf3;
  --line: rgba(84, 102, 47, 0.18);
  --ink: #24311f;
  --muted: #5b6444;
  --accent: #69add1;
  --accent-deep: #3f7fa5;
  --sage: #7d9742;
  --gold: #e2d457;
  --warm: #d38a5d;
  --shadow: 0 20px 48px rgba(70, 91, 35, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 14%, rgba(226, 212, 87, 0.36), transparent 20%),
    radial-gradient(circle at 88% 8%, rgba(105, 173, 209, 0.24), transparent 22%),
    radial-gradient(circle at 55% 82%, rgba(125, 151, 66, 0.18), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.45;
  pointer-events: none;
}

body::before {
  top: 7rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(105, 173, 209, 0.22);
}

body::after {
  bottom: 5rem;
  left: -3rem;
  width: 18rem;
  height: 18rem;
  background: rgba(125, 151, 66, 0.18);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(247, 245, 220, 0.84);
  border-bottom: 1px solid rgba(84, 102, 47, 0.12);
}

.nav-shell,
.page-shell,
.site-footer {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--accent) 0%, var(--gold) 52%, var(--sage) 100%);
  color: #183042;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 30px rgba(63, 127, 165, 0.2);
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-family: "Georgia", "Palatino Linotype", serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.site-nav a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(105, 173, 209, 0.16);
  color: var(--ink);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  background: linear-gradient(135deg, var(--sage) 0%, #93b34f 100%);
  color: #fffdf7;
}

.page-shell {
  padding: 2rem 0 4rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.95fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.25rem 0 2.25rem;
  position: relative;
}

.hero-copy {
  align-self: start;
}

.hero-copy .eyebrow {
  margin-top: 0;
}

.page-hero h1,
.section h2,
.highlight-card h2,
.contact-grid h2 {
  margin: 0;
  font-family: "Georgia", "Palatino Linotype", serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 12ch;
}

.lead {
  max-width: 62ch;
  font-size: 1.12rem;
  color: var(--muted);
}

.eyebrow,
.card-label {
  margin: 0 0 0.6rem;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card,
.content-card,
.stat-card,
.highlight-card,
.team-card {
  background: linear-gradient(180deg, rgba(255, 254, 249, 0.92), rgba(248, 246, 235, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card,
.highlight-card {
  padding: 1.6rem;
}

.hero-card {
  background:
    linear-gradient(155deg, rgba(105, 173, 209, 0.2), rgba(226, 212, 87, 0.14) 55%, rgba(125, 151, 66, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 250, 0.96), rgba(247, 246, 233, 0.94));
  align-self: start;
}

.hero-figure,
.section-figure {
  margin: 0;
  width: 100%;
  padding: 0.9rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(105, 173, 209, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 254, 248, 0.9), rgba(243, 243, 225, 0.88));
  border: 1px solid rgba(84, 102, 47, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-figure img,
.section-figure img {
  width: min(100%, 420px);
  height: auto;
  border-radius: 22px;
  display: block;
  margin: 0 auto;
  image-orientation: from-image;
}

.hero-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 0.35rem;
}

.hero-figure-gallery {
  min-height: 100%;
}

.hero-figure-gallery img {
  width: min(100%, 520px);
}

.hero-collage {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 1.1fr 0.95fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero-figure-collage {
  padding: 0.7rem;
  overflow: hidden;
}

.hero-figure-collage img {
  width: 100%;
  max-width: none;
}

.hero-figure-main {
  grid-column: 2 / span 2;
  grid-row: 1 / span 2;
  z-index: 2;
  width: 100%;
  transform: rotate(-1.5deg);
}

.hero-figure-main img {
  max-height: 470px;
  object-fit: contain;
}

.hero-figure-small {
  min-height: 168px;
}

.hero-figure-small img {
  max-height: 190px;
  object-fit: contain;
}

.hero-collage-a {
  grid-column: 1;
  grid-row: 1;
  transform: rotate(-4deg);
}

.hero-collage-b {
  grid-column: 4;
  grid-row: 1;
  transform: rotate(4deg);
}

.hero-collage-c {
  grid-column: 1;
  grid-row: 2;
  transform: rotate(3deg);
}

.hero-collage-d {
  grid-column: 4;
  grid-row: 2;
  transform: rotate(-3deg);
}

.hero-collage-e {
  grid-column: 2 / span 2;
  grid-row: 3;
  width: min(100%, 82%);
  justify-self: center;
  transform: rotate(1.5deg);
}

.hero-figure-banner {
  grid-column: 1 / -1;
  width: min(100%, 620px);
  justify-self: center;
  margin-bottom: 0.35rem;
}

.hero-figure-banner img {
  width: min(100%, 560px);
}

.section-figure {
  max-width: 720px;
  margin: 0 auto 1.1rem;
}

.section-figure img {
  width: min(100%, 640px);
}

.section-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.1rem;
  align-items: stretch;
}

.section-gallery .section-figure {
  max-width: none;
  margin: 0;
  min-height: 320px;
}

.section-gallery .section-figure img {
  width: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.highlight-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.25fr);
  gap: 1.2rem;
  align-items: center;
}

.highlight-copy {
  display: grid;
  gap: 0.9rem;
}

.section-figure-side {
  max-width: none;
  margin: 0;
  min-height: 280px;
}

.section-figure-side img {
  width: auto;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.fact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.fact-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.fact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fact-list strong {
  font-size: 1.05rem;
}

.fact-list span,
.stat-text,
.muted,
.section-note {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--sage) 0%, #97b94e 100%);
  color: #fffdf7;
  box-shadow: 0 14px 28px rgba(125, 151, 66, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #6d863a 0%, var(--sage) 100%);
}

.button-secondary {
  border: 1px solid rgba(105, 173, 209, 0.28);
  background: rgba(105, 173, 209, 0.12);
  color: #214865;
}

.section {
  margin-bottom: 1.75rem;
}

.section-header {
  margin-bottom: 1rem;
}

.section h2,
.highlight-card h2,
.contact-grid h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.content-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.content-card::before,
.stat-card::before,
.team-card::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.4rem;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--accent));
}

.content-card h3,
.timeline-item h3,
.team-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.content-card p,
.highlight-card p,
.team-card p,
.timeline-item p,
.section-note {
  margin: 0;
}

.content-card p + p,
.highlight-card p + p {
  margin-top: 0.8rem;
}

.form-card {
  grid-column: 1 / -1;
}

.form-intro {
  margin-top: 0.35rem;
  max-width: 62ch;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  font-weight: 700;
  color: var(--ink);
}

.field input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(84, 102, 47, 0.18);
  background: rgba(255, 255, 250, 0.94);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.field input:focus {
  outline: none;
  border-color: var(--accent-deep);
  box-shadow:
    0 0 0 4px rgba(105, 173, 209, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
}

.form-status[data-tone="pending"] {
  color: var(--accent-deep);
}

.form-status[data-tone="success"] {
  color: var(--sage);
  font-weight: 700;
}

.form-status[data-tone="error"],
.form-status[data-tone="warning"] {
  color: var(--warm);
  font-weight: 700;
}

.stats-grid,
.offer-grid,
.team-grid {
  display: grid;
  gap: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat-card {
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.stat-value {
  margin: 0 0 0.65rem;
  font-family: "Georgia", "Palatino Linotype", serif;
  font-size: 1.35rem;
  color: #587329;
}

.highlight-card {
  display: grid;
  gap: 0.9rem;
  background:
    linear-gradient(135deg, rgba(255, 254, 245, 0.94), rgba(241, 242, 220, 0.92)),
    var(--surface-strong);
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 254, 249, 0.88), rgba(243, 244, 226, 0.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.timeline-time {
  margin: 0;
  font-weight: 800;
  color: var(--accent-deep);
}

.note-link,
.text-link {
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.inline-note {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(226, 212, 87, 0.2);
  color: var(--sage);
  font-weight: 700;
}

.team-card {
  padding: 1.35rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-photo {
  margin: 0 0 1rem;
  min-height: 240px;
  padding: 0.75rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(105, 173, 209, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 254, 248, 0.94), rgba(243, 243, 225, 0.9));
  border: 1px solid rgba(84, 102, 47, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-photo img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 18px;
  display: block;
  image-orientation: from-image;
}

.section-note {
  margin-top: 1rem;
}

.hours-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.hours-item:last-child {
  padding-bottom: 0;
}

.map-card {
  grid-column: 1 / -1;
}

.map-frame {
  margin: 1rem 0 0.9rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(84, 102, 47, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 250, 0.8);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2rem;
}

.footer-copy,
.footer-links {
  display: grid;
  gap: 0.2rem;
}

.footer-title {
  margin: 0;
  font-weight: 800;
}

.footer-copy p,
.footer-links a {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
}

.footer-links {
  justify-items: end;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.note-link:hover,
.note-link:focus-visible {
  color: var(--sage);
}

@media (max-width: 980px) {
  .page-hero,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-figure-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero-collage-a,
  .hero-collage-b,
  .hero-collage-c,
  .hero-collage-d {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }

  .hero-collage-e {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    transform: none;
  }

  .hero-figure-main {
    transform: none;
  }

  .section-gallery {
    grid-template-columns: 1fr;
  }

  .highlight-layout {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .legal-layout,
  .gallery-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .nav-shell,
  .site-footer {
    width: min(1100px, calc(100% - 1.25rem));
  }

  .nav-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .offer-grid,
  .team-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(1100px, calc(100% - 1.25rem));
  }

  .hero-collage {
    grid-template-columns: 1fr;
  }

  .hero-figure-main,
  .hero-collage-e {
    grid-column: auto;
  }

  .hero-figure-small {
    min-height: 0;
  }

  .site-nav a,
  .button {
    width: 100%;
  }

  .hours-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.8rem;
  margin-top: 0.35rem;
}

.footer-legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}

.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: var(--sage);
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-layout .content-card {
  min-height: 100%;
}

.gallery-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-placeholder {
  min-height: 220px;
  padding: 1.2rem;
  border: 1px dashed rgba(84, 102, 47, 0.34);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 254, 245, 0.82), rgba(241, 242, 220, 0.78)),
    var(--surface-strong);
  display: grid;
  align-content: end;
  gap: 0.35rem;
}

.gallery-placeholder span {
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-placeholder strong {
  font-family: "Georgia", "Palatino Linotype", serif;
  font-size: 1.35rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 100;
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 243, 0.98);
  box-shadow: 0 22px 54px rgba(36, 49, 31, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-title {
  margin: 0 0 0.2rem;
  font-weight: 800;
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-dialog[hidden],
.map-consent iframe[hidden],
.map-consent-copy[hidden] {
  display: none;
}

.cookie-dialog {
  position: fixed;
  inset: 0;
  z-index: 110;
  padding: 1rem;
  background: rgba(36, 49, 31, 0.38);
  display: grid;
  place-items: center;
}

.cookie-dialog-panel {
  width: min(560px, 100%);
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.cookie-dialog-panel h2 {
  margin-top: 0;
  font-family: "Georgia", "Palatino Linotype", serif;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.75rem 0;
  font-weight: 700;
}

.map-consent {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.map-consent-copy {
  max-width: 460px;
  padding: 1.2rem;
  text-align: center;
}

.map-consent-copy h3 {
  margin-top: 0;
  font-family: "Georgia", "Palatino Linotype", serif;
}

.map-consent-copy .button {
  margin-top: 0.5rem;
}

.map-consent-loaded {
  display: block;
}

/* Final responsive overrides for legal and privacy additions. */
@media (max-width: 760px) {
  .legal-layout,
  .gallery-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}


