/* =========================================================
   DESIGN TOKENS
========================================================= */
:root {
  --color-forest-900: #012608;
  --color-forest-800: #03400d;
  --color-forest-700: #0a4d17;
  --color-earth-700: #6b2b05;
  --color-earth-600: #6b4b33;
  --color-sand-500: #D3B683;
  --color-sand-400: #ddc89e;
  --color-sand-300: #E6D5A8;
  --color-surface: #F0F2F1;
  --color-surface-2: #f8f6f1;
  --color-text: #202124;
  --color-text-soft: rgba(32, 33, 36, 0.78);
  --color-white: #ffffff;
  --color-border: rgba(1, 38, 8, 0.12);
  --color-glass: rgba(255,255,255,0.24);
  --color-glass-strong: rgba(255,255,255,0.36);
  --color-success: #00ff66;

  --shadow-soft: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-medium: 0 18px 45px rgba(0,0,0,0.18);
  --shadow-strong: 0 24px 60px rgba(0,0,0,0.24);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --container: 1200px;
  --transition-fast: 180ms ease;
  --transition: 280ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(230, 213, 168, 0.20), transparent 32%),
    linear-gradient(180deg, #d9c291 0%, var(--color-sand-500) 100%);
}

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

picture {
  display: block;
}

a {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding-left: 1.25rem;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   LAYOUT
========================================================= */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--compact {
  padding: 4rem 0;
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(1, 38, 8, 0.97), rgba(3, 64, 13, 0.93));
  color: var(--color-white);
}

.section--light {
  background: var(--color-surface);
}

.section--sand {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06));
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title--light {
  color: var(--color-sand-500);
}

.section-title--dark {
  color: var(--color-forest-900);
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

.section-lead--light {
  color: rgba(255,255,255,0.80);
}

/* =========================================================
   BUTTONS
========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--color-forest-900);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(1, 38, 8, 0.24);
}

.button--primary:hover {
  background: var(--color-forest-800);
}

.button--secondary {
  background: rgba(255,255,255,0.56);
  color: var(--color-forest-900);
  border-color: rgba(1, 38, 8, 0.18);
  backdrop-filter: blur(10px);
}

.button--secondary:hover {
  background: rgba(255,255,255,0.75);
}

.button--light {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.18);
}

.button--light:hover {
  background: rgba(255,255,255,0.18);
}

/* =========================================================
   HEADER / NAV
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(1, 38, 8, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-brand__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-sand-500);
}

.site-brand__text span {
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__list a {
  text-decoration: none;
  color: var(--color-sand-500);
  font-weight: 600;
  opacity: 0.95;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.site-nav__list a:hover {
  color: var(--color-white);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
}

.nav-toggle span {
  height: 3px;
  width: 100%;
  border-radius: 999px;
  background: var(--color-sand-500);
  transition: var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% 8% auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.28), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  text-align: center;
}

.hero__logo {
  width: min(352px, 72vw);
  margin: 0 auto 1rem;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  color: var(--color-forest-900);
  margin-bottom: 1rem;
}

.hero__lead {
  max-width: 720px;
  margin: 0 auto 0.8rem;
  font-size: 1.08rem;
  color: var(--color-text-soft);
}

.hero__locations {
  margin: 1rem 0 1.5rem;
  font-weight: 700;
  color: var(--color-forest-900);
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.dot-list span:not(:last-child)::after {
  content: " • ";
}

/* =========================================================
   SERVICES
========================================================= */
.services {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(230,213,168,0.12), transparent 25%),
    linear-gradient(135deg, rgba(1,38,8,0.97), rgba(3,64,13,0.95));
}

.services .section-title {
  color: var(--color-sand-500);
}

.services .section-lead {
  color: rgba(255,255,255,0.76);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 320px));
  justify-content: center;
  gap: 2rem;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card {
  position: relative;
  height: 100%;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.30), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(230, 213, 168, 0.65);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1,38,8,0.00) 0%, rgba(1,38,8,0.22) 100%);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.card:hover .card__media img {
  transform: scale(1.05);
}

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

.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  line-height: 1.15;
  color: var(--color-sand-500);
  margin-bottom: 0.9rem;
}

.card__text {
  color: white; /* rgba(17,17,17,0.88) */
  font-size: 1rem;
}

.card__text p {
  margin-bottom: 1rem;
}

.card__footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(1, 38, 8, 0.82);
  color: var(--color-sand-500);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(1,38,8,0.96), rgba(3,64,13,0.94));
  color: var(--color-white);
  font-weight: 700;
}

/* =========================================================
   REASONS / PROCESS / PROMISE
========================================================= */
.feature-list {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.2rem 1.2rem 1.2rem 0.5rem;
  border-bottom: 1px solid rgba(230,213,168,0.18);
}

.feature__number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 0.9;
  font-weight: 700;
  color: rgba(211, 182, 131, 0.42);
}

.feature__title {
  color: var(--color-sand-500);
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.feature__text {
  color: rgba(255,255,255,0.88);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  justify-content: center;
  gap: 2rem;
}

.reason-card {
  padding: 1.3rem 1.1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  text-align: center;
  backdrop-filter: blur(10px);
}

.reason-card h3 {
  color: var(--color-sand-500);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.reason-card p {
  color: rgba(255,255,255,0.86);
}

/* =========================================================
   CTA STRIP
========================================================= */
.cta-strip {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
}

.cta-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 2.3rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.36);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(1,38,8,0.10);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   NEWS
========================================================= */
.news {
  position: relative;
  background:
    linear-gradient(180deg, #f8f6f1 0%, #efe7d6 100%);
  color: var(--color-text);
}

.news::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(107, 75, 51, 0.08), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(1, 38, 8, 0.08), transparent 26%);
  pointer-events: none;
}

.news__inner {
  position: relative;
  z-index: 1;
}

.news__header {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.news__eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(1, 38, 8, 0.08);
  color: var(--color-forest-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-list {
  display: grid;
  gap: 1.2rem;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem 1.4rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(1,38,8,0.10);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.news-card__date {
  font-size: 0.92rem;
  color: var(--color-earth-600);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.news-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1.15;
  color: var(--color-forest-900);
  margin-bottom: 0.6rem;
}

.news-card__excerpt {
  color: var(--color-text-soft);
  margin-bottom: 0.85rem;
}

.news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.news-card__tag {
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(107, 75, 51, 0.10);
  color: var(--color-earth-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-card__link {
  white-space: nowrap;
}

.news__more {
  text-align: center;
  margin-top: 1.5rem;
}

/* =========================================================
   FORM
========================================================= */
.contact-form {
  background:
    linear-gradient(135deg, rgba(1,38,8,0.97), rgba(3,64,13,0.94));
}

.contact-form .section-title {
  color: var(--color-sand-500);
}

.contact-form .section-lead {
  color: rgba(255,255,255,0.76);
}

.form-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(255,255,255,0.30);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(12px);
}

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

.full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label,
.choice-group legend,
.panel-head h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-forest-900);
}

.hint {
  color: rgba(32,33,36,0.72);
  font-size: 0.82rem;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  border: 1px solid rgba(1,38,8,0.20);
  background: rgba(255,255,255,0.94);
  color: var(--color-text);
  border-radius: 999px;
  padding: 15px 18px;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
}

textarea {
  border-radius: 24px;
  resize: vertical;
  min-height: 140px;
  padding-top: 16px;
}

input:focus,
textarea:focus {
  border-color: var(--color-sand-500);
  box-shadow: 0 0 0 4px rgba(211, 182, 131, 0.18);
}

.choice-group {
  border: 1px solid rgba(1,38,8,0.14);
  border-radius: 22px;
  padding: 18px;
  margin: 0;
  min-width: 0;
  background: rgba(255,255,255,0.36);
}

.choice-group legend {
  padding: 0 8px;
}

.service-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(1,38,8,0.18);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(1,38,8,0.94);
  color: var(--color-sand-500);
  transition: all var(--transition-fast);
  font-weight: 600;
}

.radio-pill span::before,
.checkbox-pill span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-sand-500);
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
  transition: all var(--transition-fast);
  flex: 0 0 18px;
}

.choice-pill input:checked + span {
  border-color: var(--color-sand-500);
  box-shadow: 0 0 0 4px rgba(211, 182, 131, 0.16);
}

.choice-pill input:checked + span::before {
  border-color: var(--color-sand-500);
  background:
    radial-gradient(circle at center, var(--color-sand-500) 0 45%, transparent 48% 100%);
}

.error-message {
  margin: 12px 2px 0;
  color: #b42318;
  font-size: 0.95rem;
  font-weight: 700;
  display: none;
}

.error-message.show {
  display: block;
}

.service-panel {
  grid-column: span 6;
  position: relative;
  border: 1px solid rgba(1,38,8,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.52);
  padding: 18px;
  min-height: 320px;
  overflow: hidden;
  transition: opacity var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.service-panel[aria-disabled="true"] {
  opacity: 0.58;
}

.service-panel.active {
  opacity: 1;
  border-color: var(--color-sand-500);
  box-shadow: 0 0 0 4px rgba(211, 182, 131, 0.12);
}

.panel-head {
  margin-bottom: 14px;
}

.panel-head h3 {
  margin: 0 0 6px;
}

.panel-head p {
  margin: 0;
  color: rgba(32,33,36,0.72);
  font-size: 0.92rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inline-check {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 0 6px 10px 6px;
  min-height: 56px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.inline-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-sand-500);
  cursor: pointer;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: block;
  z-index: 5;
  cursor: pointer;
}

.service-panel.active .panel-overlay {
  display: none;
}

.submit-wrap {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.submit-btn {
  border: none;
  border-radius: 999px;
  padding: 15px 34px;
  min-width: 170px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  color: #2a2412;
  background: linear-gradient(180deg, var(--color-sand-400) 0%, var(--color-sand-500) 100%);
  box-shadow:
    0 10px 22px rgba(180, 145, 40, 0.28),
    0 4px 10px rgba(180, 145, 40, 0.18);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 26px rgba(180, 145, 40, 0.30),
    0 6px 14px rgba(180, 145, 40, 0.20);
}

/* =========================================================
   TWO COLUMN CONTENT
========================================================= */
.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.rounded-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.text-block {
  max-width: 760px;
}

.text-block p + p {
  margin-top: 1rem;
}

/* =========================================================
   CONTACT / FOOTER
========================================================= */
.contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-card__image {
  width: min(352px, 80vw);
  margin: 0 auto 1.5rem;
}

.site-footer {
  background: var(--color-forest-900);
  color: rgba(255,255,255,0.88);
  padding: 3rem 0;
}

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

.site-footer h3,
.site-footer h4 {
  color: var(--color-sand-500);
  margin-bottom: 0.7rem;
}

.site-footer a {
  text-decoration: none;
}

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

.site-footer__list {
  display: grid;
  gap: 0.35rem;
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

/* =========================================================
   COOKIE BANNER
========================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 16px;
  display: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cookie-box {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(18,18,20,.96);
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 16px 60px rgba(0,0,0,.45);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.10);
}

.cookie-text p {
  margin: .35rem 0 0 0;
  line-height: 1.35;
  color: rgba(255,255,255,.86);
}

.cookie-text a {
  color: #9ee7ff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: 0;
  cursor: pointer;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease, background .2s ease, color .2s ease;
  user-select: none;
}

.cookie-btn:active {
  transform: translateY(1px);
}

.cookie-btn--necessary {
  background: var(--color-success);
  color: #06210f;
  box-shadow:
    0 0 0 2px rgba(0,255,102,.25),
    0 0 18px rgba(0,255,102,.55),
    0 10px 35px rgba(0,255,102,.25);
  filter: saturate(1.15);
}

.cookie-btn--necessary:hover {
  box-shadow:
    0 0 0 2px rgba(0,255,102,.35),
    0 0 22px rgba(0,255,102,.7),
    0 12px 40px rgba(0,255,102,.32);
}

.cookie-btn--secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.cookie-btn--secondary:hover {
  background: rgba(255,255,255,.18);
}

.cookie-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
}

.cookie-btn--ghost:hover {
  color: #fff;
}

.cookie-panel {
  max-width: 1100px;
  margin: 12px auto 0 auto;
}

.panel-box {
  background: rgba(18,18,20,.96);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 60px rgba(0,0,0,.35);
}

.toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
}

.toggle input {
  transform: scale(1.2);
}

.panel-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1180px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  .service-panel {
    grid-column: 1 / -1;
    min-height: 300px;
  }

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

  .two-column {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: rgba(1, 38, 8, 0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .site-nav.is-active {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .card-grid,
  .reason-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .card {
    min-height: auto;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .feature {
    grid-template-columns: 60px 1fr;
  }

  .feature__number {
    font-size: 3.4rem;
  }

  .service-choices {
    flex-direction: column;
  }

  .choice-pill,
  .choice-pill span {
    width: 100%;
  }

  .choice-pill span {
    justify-content: flex-start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .form-shell {
    padding: 1rem;
    border-radius: 24px;
  }

  input[type="text"],
  input[type="email"],
  input[type="number"],
  textarea {
    font-size: 16px;
  }

  .cookie-box {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-btn {
    width: 100%;
  }
}


/* =========================================================
   ARTIKKELISIVU (AJANKOHTAISET)
========================================================= */

.article-content {
  max-width: 900px;
  margin: 0 auto;
}

.article-content h2,
.article-content h3 {
  color: var(--color-forest-900);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.article-content p + p {
  margin-top: 1rem;
}

.article-content ul,
.article-content ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.article-summary-box {
  margin-bottom: 2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(1, 38, 8, 0.04);
  border: 1px solid rgba(1, 38, 8, 0.10);
}

.article-summary-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-forest-900);
}

/* hintalaskuri */

.calculator-section {
  padding: 4rem 0;
}

.calculator-card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 2rem;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.calculator-top {
  margin-bottom: 1.5rem;
}

.calculator-step-label {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #6b7280;
}

.calculator-top h2 {
  margin: 0 0 0.75rem;
}

.calculator-lead {
  margin: 0;
  color: #4b5563;
}

.calculator-progress {
  width: 100%;
  height: 8px;
  background: #eef1f4;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.calculator-progress-bar {
  height: 100%;
  width: 25%;
  background: #111827;
  border-radius: 999px;
  transition: width 0.25s ease;
}

#calculatorForm {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.step {
  display: none;
  flex: 1;
}

.step.active {
  display: block;
}

.step h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.step-help {
  margin: 0 0 1.25rem;
  color: #6b7280;
}

.option-group {
  display: grid;
  gap: 0.75rem;
}

.option {
  display: block;
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.option:hover {
  border-color: #111827;
}

.option.is-selected {
  border-color: #111827;
  background: #f9fafb;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.input-block {
  margin-top: 1rem;
}

.input-block label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: #111827;
}

.input-block input,
.input-block select {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font: inherit;
  box-sizing: border-box;
}

.input-block input:focus,
.input-block select:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.input-block.is-disabled input:disabled,
.input-block.is-disabled select:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

.summary-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #374151;
  line-height: 1.6;
}

.calculator-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.btn-primary,
.btn-secondary {
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  border: 1px solid #111827;
  background: #111827;
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.95;
}

.btn-secondary {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
}

.btn-secondary:hover {
  border-color: #111827;
}

.btn-secondary[disabled],
.btn-primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .calculator-card {
    padding: 1.25rem;
    min-height: 520px;
  }

  .calculator-actions {
    flex-wrap: wrap;
  }

  .calculator-actions .btn-secondary,
  .calculator-actions .btn-primary {
    width: 100%;
  }
}


/* kiitosviesti */
.thank-you-section {
  padding: 4rem 0;
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.thank-you-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.thank-you-card h1 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.thank-you-card p {
  color: #4b5563;
}

.thank-you-actions {
  margin-top: 1.5rem;
}

/* hintalaskurin yliajo */