@font-face {
  font-family: "Inter";
  src: url("concepts/e23-desktop-final-polish/fonts/Inter-Regular-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("concepts/e23-desktop-final-polish/fonts/Inter-SemiBold-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

:root {
  --cream: #faf8f2;
  --cream-deep: #efeadd;
  --ink: #1b211e;
  --muted: #626560;
  --green: #1d332a;
  --green-light: #294238;
  --gold: #c6a568;
  --line: #ded9cd;
  --radius: 12px;
  --shell: 1180px;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-body);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  padding: .65rem .9rem;
  background: var(--green);
  color: var(--cream);
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(200, 169, 110, .22);
  background: rgba(29, 51, 42, .98);
  color: var(--cream);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--cream);
  text-decoration: none;
  min-width: max-content;
}

.brand-mark { width: 53px; height: auto; flex: 0 0 auto; }

.brand-text { display: grid; line-height: 1.05; }

.brand-text strong { font-size: 1.1rem; font-weight: 600; letter-spacing: 0; }

.brand-text small {
  margin-top: .2rem;
  color: rgba(250, 248, 243, .72);
  font-size: .78rem;
  font-weight: 400;
}

.nav-actions { display: flex; align-items: center; gap: 1.35rem; }

.nav-home {
  color: rgba(250, 248, 243, .78);
  font-size: .9rem;
  font-weight: 600;
  text-underline-offset: .25em;
  text-decoration-color: var(--gold);
}

.site-header .button-small {
  border-color: var(--gold);
  background: rgba(18, 38, 29, .28);
  color: #d4b778;
}

.site-header .button-small:hover,
.site-header .button-small:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .82rem 1.2rem;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--gold);
  background: var(--green-light);
  transform: translateY(-1px);
}

.button-small { min-height: 42px; padding: .65rem .9rem; font-size: .85rem; }

.mobile-menu-toggle,
.mobile-menu { display: none; }

.hero { padding: clamp(2.6rem, 4.5vw, 4.1rem) 0 0; }

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .8fr);
  gap: clamp(2.5rem, 5vw, 4.75rem);
  align-items: center;
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}

h1,
h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--font-display);
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 5.4vw, 5.25rem);
  font-weight: 700;
  line-height: .98;
}

.hero-action { padding-bottom: .25rem; }

.hero-action p {
  max-width: 440px;
  margin: 0 0 1.45rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.hero-action .hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem .42rem;
  align-items: center;
  max-width: none;
  margin: .85rem 0 0;
  color: #756849;
  font-size: .74rem;
  font-weight: 600;
  line-height: 1.45;
}

.trust-separator { color: #947846; }
.trust-rating { display: inline-flex; gap: .42rem; }

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9d5ce;
}

.hero-visual picture,
.hero-visual img { width: 100%; }

.hero-visual img {
  height: clamp(420px, 40vw, 520px);
  object-fit: cover;
  object-position: center top;
}

.quick-info {
  padding: 1rem 0 clamp(3rem, 5vw, 4rem);
  background: var(--cream);
}

.facts {
  display: grid;
  grid-template-columns: 1fr .75fr .85fr 1.35fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .46);
  overflow: hidden;
}

.facts p {
  display: flex;
  min-height: 90px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 1rem 1.2rem;
  border-left: 1px solid var(--line);
}

.facts p:first-child { border-left: 0; }

.facts strong { color: var(--green); font-size: .96rem; font-weight: 600; line-height: 1.35; }

.facts a {
  margin-top: .35rem;
  color: #715d39;
  font-size: .78rem;
  font-weight: 600;
  text-decoration-color: var(--gold);
  text-underline-offset: .22em;
}

.who,
.faq {
  padding: clamp(3.2rem, 5vw, 4.25rem) 0;
}

.who { border-top: 1px solid var(--line); }

.section-heading {
  margin-bottom: clamp(1.6rem, 2.5vw, 2.25rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(1.95rem, 3vw, 2.65rem);
  font-weight: 600;
  line-height: 1.02;
}

.who-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}

.who-list article {
  min-height: 0;
  padding: 1.2rem 1.25rem;
  border: 1px solid #ded8cb;
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .58);
}

.who-list h3 {
  margin: 0 0 .6rem;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.65vw, 1.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.who-list p { margin: 0; color: #54544f; font-size: .93rem; line-height: 1.55; }

.trust {
  padding: clamp(3.2rem, 5vw, 4.25rem) 0;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.trust h2 { margin-bottom: clamp(1.6rem, 2.5vw, 2.25rem); }

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .72fr);
  gap: 1rem;
  align-items: stretch;
}

.review-block {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .52);
}

blockquote { margin: 0; }

.review-stars {
  display: block;
  margin-bottom: .65rem;
  color: #947846;
  font-size: .75rem;
  letter-spacing: .12em;
}

blockquote p {
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.7;
}

blockquote cite {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .65rem;
  align-items: center;
  color: var(--muted);
  font-size: .84rem;
  font-style: normal;
}

blockquote cite strong { color: var(--green); font-weight: 600; }

blockquote cite span::before {
  content: "·";
  margin-right: .65rem;
  color: #947846;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.review-score {
  color: #826a40;
  font-size: .78rem;
  font-weight: 600;
  text-decoration-color: rgba(130, 106, 64, .48);
  text-underline-offset: .22em;
}

.button-secondary {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--cream);
}

.andreas-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--cream);
}

.andreas-card h3 {
  margin: 0 0 1rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
}

.andreas-card p { margin: 0 0 .8rem; color: rgba(250, 248, 243, .78); font-size: .94rem; }

.andreas-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: .15rem;
  color: var(--cream);
  font-size: .86rem;
  font-weight: 600;
  text-decoration-color: var(--gold);
  text-underline-offset: .24em;
}

.faq { background: var(--cream-deep); }

.faq-shell {
  max-width: 920px;
}

.faq-shell > h2 { margin-bottom: clamp(1.4rem, 2.5vw, 2rem); }

.faq-list { border-top: 1px solid #d7d1c4; }

.faq-list details { border-bottom: 1px solid #d7d1c4; }

.faq-list summary {
  position: relative;
  padding: 1.1rem 3rem 1.1rem 0;
  color: var(--green);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: .2rem;
  top: 50%;
  color: #856f47;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  max-width: 690px;
  margin: -.15rem 3rem 1.25rem 0;
  color: var(--muted);
  font-size: .94rem;
}

.next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(200, 169, 110, .64);
  border-radius: 8px;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(23, 43, 35, .1);
  color: var(--cream);
}

.next-step-copy h3 {
  margin: 0 0 .4rem;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0;
}

.next-step-copy p {
  max-width: 530px;
  margin: 0;
  color: rgba(250, 248, 243, .76);
  font-size: .9rem;
  line-height: 1.55;
}

.next-step-actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: stretch;
}

.next-step .button {
  padding: .82rem 1.25rem;
  border-color: var(--gold);
  border-radius: 8px;
  background: var(--gold);
  color: var(--green);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.15;
}

.next-step .button:hover,
.next-step .button:focus-visible {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--green);
}

.map-link {
  display: block;
  width: 100%;
  color: var(--cream);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  text-decoration-color: var(--gold);
  text-underline-offset: .24em;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(250, 248, 243, .16);
  background: var(--green);
  color: var(--cream);
  font-size: .92rem;
}

.footer-grid,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-mark { width: 49px; height: auto; flex: 0 0 auto; }
.footer-brand p { margin: 0; color: rgba(250, 248, 243, .78); }

.site-footer a { color: var(--cream); text-decoration-color: rgba(200, 169, 110, .65); text-underline-offset: .22em; }

@media (max-width: 900px) {
  .hero-intro { grid-template-columns: 1fr; gap: 1.3rem; }
  .hero-action { max-width: 580px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts p:nth-child(odd) { border-left: 0; }
  .facts p:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .who-list { grid-template-columns: 1fr; }
  .who-list article { min-height: 0; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .nav {
    position: relative;
    min-height: 64px;
    justify-content: flex-start;
    gap: .65rem;
  }

  .brand { min-width: 0; gap: .58rem; }
  .brand-mark { width: 45px; }
  .brand-text strong { font-size: .96rem; }
  .brand-text small,
  .nav-actions { display: none; }

  .mobile-menu-toggle {
    display: grid;
    place-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(250, 248, 243, .46);
    border-radius: 50%;
    background: rgba(18, 38, 29, .26);
    color: var(--cream);
    cursor: pointer;
  }

  .mobile-menu-toggle > span:not(.visually-hidden) {
    display: block;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(5px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .mobile-menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-5px) rotate(-45deg); }

  .mobile-menu {
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    z-index: 40;
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: .45rem;
    border: 1px solid rgba(200, 169, 110, .3);
    border-radius: 12px;
    background: rgba(29, 51, 42, .99);
    box-shadow: 0 22px 52px rgba(5, 15, 10, .24);
    color: var(--cream);
  }

  .mobile-menu[hidden] { display: none; }

  .mobile-menu a {
    padding: .78rem .85rem;
    border-bottom: 1px solid rgba(250, 248, 243, .09);
    color: rgba(250, 248, 243, .9);
    font-size: .9rem;
    text-decoration: none;
  }

  .mobile-menu .mobile-menu-cta {
    margin-top: .42rem;
    border: 0;
    border-radius: 999px;
    background: var(--gold);
    color: var(--green);
    font-weight: 600;
    text-align: center;
  }

  .footer-brand { flex-wrap: nowrap; gap: .45rem; }
  .footer-mark { width: 46px; }
  .footer-brand p { white-space: nowrap; font-size: clamp(.72rem, 3.05vw, .76rem); letter-spacing: -.02em; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .button-small { padding-inline: .75rem; font-size: .78rem; }
  .hero { padding-top: 2rem; }
  .hero-intro { gap: 1.05rem; padding-bottom: 1.5rem; }
  h1 { font-size: clamp(2.52rem, 11vw, 3.2rem); line-height: 1; }
  .hero-action p { margin-bottom: 1.25rem; font-size: .98rem; line-height: 1.58; }
  .hero-action .hero-trust-line { display: grid; gap: .1rem; margin-top: .75rem; font-size: .73rem; line-height: 1.4; }
  .trust-separator { display: none; }
  .trust-rating { display: block; }
  .hero-action .button { width: 100%; }
  .hero-visual img { height: min(108vw, 460px); object-position: center 55%; }
  .quick-info { padding-bottom: 2.65rem; }
  .facts p { min-height: 88px; padding: .9rem; }
  .facts strong { font-size: .86rem; }
  .facts a { font-size: .73rem; }
  .who,
  .faq { padding-block: 2.75rem; }
  .section-heading { margin-bottom: 1.3rem; }
  h2 { font-size: 2rem; }
  .who-list { gap: .65rem; }
  .who-list article { padding: 1rem 1.05rem; }
  .who-list h3 { margin-bottom: .5rem; font-size: 1.35rem; }
  .who-list p { font-size: .93rem; line-height: 1.52; }
  .trust { padding-block: 2.75rem; }
  .trust h2 { margin-bottom: 1.3rem; }
  .trust-grid { gap: .75rem; }
  .review-block { padding: 1.25rem; }
  blockquote p { font-size: .96rem; line-height: 1.65; }
  .review-actions { align-items: stretch; margin-top: 1rem; padding-top: 1rem; }
  .review-actions .button { width: 100%; }
  .andreas-card { padding: 1.35rem; }
  .faq-shell > h2 { margin-bottom: 1.15rem; }
  .faq-list summary { padding-block: 1rem; font-size: .92rem; }
  .faq-list details p { margin-right: 0; font-size: .93rem; }
  .next-step { grid-template-columns: 1fr; align-items: stretch; margin-top: 1.5rem; padding: 1rem; }
  .next-step-actions { align-items: stretch; }
  .next-step .button { width: 100%; }
  .map-link { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .mobile-menu-toggle > span:not(.visually-hidden) { transition: none; }
}

/* Shared production footer pattern. */
.site-footer {
  padding: 20px 0;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand social"
    "lessons legal";
  gap: 0 1.5rem;
  align-items: center;
  text-align: left;
}

.site-footer .footer-grid::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  width: 100%;
  margin-top: .55rem;
  border-top: 1px solid rgba(250, 248, 243, .12);
  pointer-events: none;
}

.site-footer .footer-brand { grid-area: brand; justify-content: flex-start; gap: .65rem; min-width: 0; }
.site-footer .footer-mark { width: 44px; }
.site-footer .footer-brand p { color: rgba(250, 248, 243, .84); font-size: .88rem; line-height: 1.35; white-space: nowrap; }

.site-footer .footer-social,
.site-footer .footer-lessons,
.site-footer .footer-legal {
  display: flex;
  align-items: center;
}

.site-footer .footer-social { grid-area: social; gap: .2rem; justify-content: flex-end; }

.site-footer .footer-social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--cream);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible { color: var(--gold); }

.site-footer .footer-social-link svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.site-footer .footer-social-link .social-icon-outline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.site-footer .footer-social-link .social-icon-cutout { fill: var(--green); }
.site-footer .footer-lessons { grid-area: lessons; flex-wrap: nowrap; gap: .5rem .72rem; justify-content: flex-start; font-size: .86rem; }
.site-footer .footer-legal { grid-area: legal; flex-wrap: wrap; gap: .38rem .5rem; justify-content: flex-end; font-size: .78rem; }

.site-footer .footer-lessons,
.site-footer .footer-legal {
  min-width: 0;
  margin-top: .55rem;
  padding-top: calc(.7rem + 1px);
}

.site-footer .footer-link-separator {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.site-footer .footer-lessons a,
.site-footer .footer-legal a {
  color: var(--cream);
  text-decoration-color: rgba(200, 169, 110, .65);
  text-underline-offset: .24em;
}

@media (max-width: 767px) {
  .site-footer { padding: 18px 0 16px; }
  .site-footer .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand social"
      "lessons lessons"
      "legal legal";
    gap: 0 .35rem;
  }
  .site-footer .footer-brand { flex-direction: row; gap: .42rem; }
  .site-footer .footer-mark { width: 40px; }
  .site-footer .footer-brand p { font-size: clamp(.69rem, 3.05vw, .77rem); letter-spacing: 0; line-height: 1.35; white-space: normal; }
  .site-footer .footer-brand p > span:last-child { display: block; }
  .site-footer .footer-brand-separator { display: none; }
  .site-footer .footer-lessons { flex-direction: row; flex-wrap: nowrap; gap: .42rem .58rem; justify-content: center; font-size: clamp(.82rem, 3.55vw, .9rem); }
  .site-footer .footer-lessons .footer-link-separator { display: block; }
  .site-footer .footer-legal { gap: .35rem .2rem; justify-content: center; max-width: 100%; font-size: clamp(.69rem, 3.05vw, .77rem); }
  .site-footer .footer-lessons,
  .site-footer .footer-legal { margin-top: .55rem; padding-top: .62rem; border-top: 1px solid rgba(250, 248, 243, .12); }
  .site-footer .footer-grid::before { display: none; }
  .site-footer .footer-social { gap: .1rem; }
  .site-footer .footer-social-link { width: 34px; height: 34px; }
  .site-footer .footer-social-link svg { width: 21px; height: 21px; }
}

@media (max-width: 340px) {
  .site-footer .footer-grid { gap: 0 .25rem; }
  .site-footer .footer-mark { width: 38px; }
  .site-footer .footer-brand p { font-size: .69rem; }
  .site-footer .footer-social-link { width: 32px; height: 32px; }
  .site-footer .footer-social-link svg { width: 20px; height: 20px; }
}
