/* Ζαφειράκης Ιωάννης – Γεωφροντίδα (νέο site) */
:root {
  --color-bg: #f4f3ee;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-muted: #4d4d4d;
  --color-brand: #404b13;
  --color-brand-hover: #2f3610;
  --color-accent: #5c6b1c;
  --color-gold: #c4a35a;
  --color-border: #e2e2dc;
  --font-sans: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-strong: 0 20px 50px rgba(47, 54, 16, 0.18);
  --radius: 12px;
  --radius-lg: 18px;
  --max: 1120px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-brand);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

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

a {
  color: var(--color-accent);
}

a:hover {
  color: var(--color-brand-hover);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.top-bar {
  background: linear-gradient(105deg, #2f3610 0%, #4a5a18 42%, #556b1f 100%);
  color: #f0f0eb;
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  border-bottom: 3px solid var(--color-gold);
}

.top-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.top-bar a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.top-bar a:hover {
  text-decoration: underline;
  color: #fff;
}

.top-bar__tagline {
  text-align: center;
  flex: 1 1 auto;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(64, 75, 19, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 30px rgba(47, 54, 16, 0.06);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.logo-link {
  display: block;
  line-height: 0;
  order: 1;
  flex-shrink: 0;
}

.logo-link img {
  max-height: 3.85rem;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: #eef0e8;
  cursor: pointer;
  border-radius: 12px;
  order: 3;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: #e4e8dc;
  outline: none;
  box-shadow: 0 0 0 2px rgba(64, 75, 19, 0.15);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-brand);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.site-nav {
  order: 2;
  flex: 1;
  min-width: 0;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.95rem;
  color: #2c3218;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  border-radius: 999px;
  background: #eef0e8;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #fff;
  border-color: rgba(64, 75, 19, 0.18);
  box-shadow: 0 2px 10px rgba(47, 54, 16, 0.08);
  outline: none;
}

.site-nav a.is-active {
  color: #fff;
  background: linear-gradient(145deg, var(--color-brand) 0%, #556b1f 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(64, 75, 19, 0.35);
}

.site-nav a.is-active:hover {
  color: #fff;
  background: linear-gradient(145deg, var(--color-brand-hover) 0%, var(--color-brand) 100%);
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none !important;
  }

  .site-nav {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    width: auto !important;
  }

  .site-nav ul {
    flex-direction: row;
    padding: 0;
    justify-content: flex-end;
  }
}

main {
  min-height: 50vh;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 4.5rem;
  background: var(--color-brand)
    url("https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?auto=format&fit=crop&w=2400&q=88") center / cover no-repeat;
  color: #fff;
}

@media (min-width: 900px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20, 24, 8, 0.82) 0%, rgba(64, 75, 19, 0.72) 45%, rgba(47, 54, 16, 0.88) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.9;
}

.hero__content {
  position: relative;
  max-width: 44rem;
  animation: heroIn 1s var(--ease-out) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(196, 163, 90, 0.35);
  border: 1px solid rgba(196, 163, 90, 0.55);
  border-radius: 999px;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.96;
  line-height: 1.55;
}

.btn {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.85rem 1.85rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.btn:hover {
  background: #fff;
  color: var(--color-brand);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn--solid {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #fff;
}

.btn--solid:hover {
  background: var(--color-brand-hover);
  border-color: var(--color-brand-hover);
  color: #fff;
}

.page-intro {
  max-width: 48rem;
}

.page-intro h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--color-brand);
}

.section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--color-brand);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 40rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin: 0 0 1.5rem;
}

.prose {
  max-width: 48rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
  color: var(--color-brand);
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--color-muted);
}

.prose li {
  margin-bottom: 0.35rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.card--media {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.card--media .card__media {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.card--media .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.card--media:hover .card__media img {
  transform: scale(1.07);
}

.card--media .card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47, 54, 16, 0.55), transparent 55%);
  pointer-events: none;
}

.card--media .card__body {
  padding: 1.25rem 1.35rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card--media .card__body p {
  flex: 1;
}

.card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  color: var(--color-brand);
}

.card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.card a.more {
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--color-accent);
  margin-top: auto;
}

.card a.more:hover {
  text-decoration: underline;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.contact-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-box h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--color-brand);
}

.contact-box p {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 260px;
  background: #e8e8e4;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-section-title {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.15rem;
  color: var(--color-brand);
}

.form label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font: inherit;
  margin-bottom: 1rem;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form button {
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--color-brand);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}

.form button:hover {
  background: var(--color-brand-hover);
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

.site-footer {
  background: linear-gradient(165deg, #2a3210 0%, var(--color-brand) 55%, #4d5c18 100%);
  color: #e8e8e0;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 2rem;
  border-top: 3px solid rgba(196, 163, 90, 0.45);
}

.site-footer a {
  color: #fff;
  font-weight: 600;
}

.site-footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.site-footer h2 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer p,
.site-footer li {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul a {
  font-weight: 500;
  text-decoration: none;
}

.site-footer ul a:hover {
  text-decoration: underline;
}

.footer-logo {
  max-height: 3.5rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* --- galleries, split panels, inner heroes --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__content {
    animation: none;
  }

  .hero {
    background-attachment: scroll !important;
  }
}

.showcase {
  margin: 0;
  padding: 2.5rem 1rem 3rem;
  background: linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
}

.showcase__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 720px) {
  .showcase__grid {
    grid-template-columns: 1fr;
  }
}

.showcase figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  position: relative;
}

.showcase figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.showcase figure:hover img {
  transform: scale(1.04);
}

.showcase figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}

.split-panel {
  max-width: var(--max);
  margin: 0 auto 3rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 959px) {
  .split-panel {
    grid-template-columns: 1fr;
  }
}

.split-panel__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  min-height: 280px;
}

.split-panel__visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.split-panel__text h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--color-brand);
}

.split-panel__text p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.trust-strip {
  background: var(--color-brand);
  color: #e8e8e0;
  padding: 1.75rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.trust-strip strong {
  color: #fff;
}

.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding: 3rem 0 2.5rem;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 10, 0.45) 0%, rgba(47, 54, 16, 0.88) 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.page-hero__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.95;
}

.page-hero--apolumanseis {
  background-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=2000&q=88");
}

.page-hero--apentomoseis {
  background-image: url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=2000&q=88");
}

.page-hero--mioktonies {
  background-image: url("https://images.unsplash.com/photo-1592419044706-39796d40f98c?auto=format&fit=crop&w=2000&q=88");
}

.page-hero--lipasmata {
  background-image: url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=2000&q=88");
}

.page-hero--georgika {
  background-image: url("https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?auto=format&fit=crop&w=2000&q=88");
}

.page-hero--kipeftika {
  background-image: url("https://images.unsplash.com/photo-1530836369250-ef72a3f5cda8?auto=format&fit=crop&w=2000&q=88");
}

.page-hero--sporoi {
  background-image: url("https://images.unsplash.com/photo-1563514227147-6d2ff665a6a0?auto=format&fit=crop&w=2000&q=88");
}

.page-hero--adreftika {
  background-image: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=2000&q=88");
}

.page-hero--epikoinonia {
  background-image: url("https://images.unsplash.com/photo-1595855759920-86582396756a?auto=format&fit=crop&w=2000&q=88");
}

.page-hero--xenodoxeia {
  background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=2000&q=88");
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0 0 2rem;
}

@media (max-width: 640px) {
  .photo-strip {
    grid-template-columns: 1fr;
  }
}

.photo-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow);
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.photo-strip figure:hover img {
  transform: scale(1.03);
}

/* Honeypot field (hidden from users, trap for bots) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Form success banner */
.form-success {
  background: #e8f3dc;
  border: 1px solid #8fb14a;
  color: #2f3610;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

/* Floating WhatsApp + Call buttons */
.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem 0.7rem 0.85rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}

.fc-btn svg {
  flex-shrink: 0;
}

.fc-btn:hover,
.fc-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #fff;
  outline: none;
}

.fc-btn--wa {
  background: #25d366;
}

.fc-btn--wa:hover,
.fc-btn--wa:focus-visible {
  background: #1ebe5d;
}

.fc-btn--call {
  background: var(--color-brand);
}

.fc-btn--call:hover,
.fc-btn--call:focus-visible {
  background: var(--color-brand-hover);
}

@media (max-width: 640px) {
  .floating-contact {
    right: 0.75rem;
    bottom: 0.75rem;
  }
  .fc-btn {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }
  .fc-label {
    display: none;
  }
}

/* FAQ (accordion with <details>) */
.faq {
  max-width: 48rem;
  margin: 2.5rem 0 1rem;
}

.faq > h2 {
  color: var(--color-brand);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin: 0 0 1rem;
}

.faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0 1.1rem;
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s var(--ease-out);
}

.faq details[open] {
  box-shadow: var(--shadow-strong);
}

.faq summary {
  cursor: pointer;
  padding: 0.95rem 0;
  font-weight: 700;
  color: var(--color-brand);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-accent);
  transition: transform 0.25s var(--ease-out);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details > p,
.faq details > ul {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.faq details > ul {
  padding-left: 1.25rem;
}

@media (max-width: 959px) {
  .site-header {
    position: relative;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 60;
    background: linear-gradient(180deg, #f8f9f4 0%, #f0f2eb 100%);
    border-bottom: 1px solid rgba(64, 75, 19, 0.12);
    box-shadow: 0 16px 40px rgba(47, 54, 16, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
  }

  .site-nav.is-open {
    max-height: min(100vh, 720px);
    overflow-y: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.25rem;
    gap: 0.4rem;
  }

  .site-nav a {
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 14px;
  }
}
