﻿/* Shared legal, cookies and small restoration styles for Zielona Fucha. */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --soil: #20241d;
  --forest: #2c4a35;
  --forest-d: #1e3527;
  --moss: #5d7a52;
  --sage: #8aa07a;
  --paper: #f4f1e7;
  --cream: #fbfaf3;
  --honey: #d49a3e;
  --honey-d: #b9842f;
  --line: rgba(32, 36, 29, .14);
  --maxw: 1180px;
  --r: 18px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--forest);
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .85em 1.5em;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
}

.btn-primary {
  color: var(--soil);
  background: var(--honey);
}

header.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 18px;
}

header.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: .55em;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navlinks a {
  font-size: .95rem;
  font-weight: 500;
}

.navtoggle {
  display: none;
  padding: 6px;
  border: 0;
  background: none;
  cursor: pointer;
}

.navtoggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

footer {
  padding-block: 54px 30px;
  color: #dfe6d8;
  background: var(--forest-d);
}

footer .top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

footer .brand {
  color: #fff;
}

footer .cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

footer .col h3 {
  margin: 0 0 14px;
  color: var(--sage);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

footer .col a,
footer .col p {
  display: block;
  margin: 0 0 8px;
  color: #cdd6c5;
  font-size: .95rem;
}

footer .bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
  color: #9fb094;
  font-size: .85rem;
}

.rodo-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 4px 0 18px;
  color: #4a5043;
  font-size: .86rem;
  line-height: 1.45;
}

.rodo-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--forest, #2c4a35);
}

.rodo-check a,
.legal-box a,
.cc-link {
  color: var(--forest, #2c4a35);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings-link {
  display: block;
  width: fit-content;
  padding: 0;
  border: 0;
  color: #cdd6c5;
  background: transparent;
  font: inherit;
  font-size: .95rem;
  line-height: 1.65;
  text-align: left;
  cursor: pointer;
}

.cookie-settings-link:hover {
  color: #fff;
}

.care-credit-link {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.care-credit-name {
  color: inherit;
  transition: color .2s ease;
}

.care-credit-site {
  color: inherit;
  transition: color .2s ease;
}

.care-credit-domain {
  color: inherit;
  transition: color .2s ease;
}

.care-credit-link:hover .care-credit-name,
.care-credit-link:hover .care-credit-domain,
.care-credit-link:focus-visible .care-credit-name,
.care-credit-link:focus-visible .care-credit-domain {
  color: #f8fafc;
}

.care-credit-link:hover .care-credit-site,
.care-credit-link:focus-visible .care-credit-site {
  color: #9cc7ff;
}

.hero .hero-eyebrow {
  color: #fff2c7;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}

.hero .hero-eyebrow::before {
  width: 36px;
  height: 2px;
  background: currentColor;
}

.center-eyebrow {
  justify-content: center;
}

.band .band-eyebrow {
  color: #fff2c7;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .6);
}

.band .band-eyebrow::before {
  width: 36px;
  height: 2px;
  background: currentColor;
}

#cookie-consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: min(680px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid rgba(32, 36, 29, .16);
  border-radius: 16px;
  color: #20241d;
  background: #fbfaf3;
  box-shadow: 0 24px 70px rgba(30, 53, 39, .26);
}

.cc-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 310px);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.cc-wrap > div {
  min-width: 0;
}

.cc-title {
  margin: 0 0 5px;
  color: #1e3527;
  font-weight: 800;
  line-height: 1.25;
}

.cc-text {
  margin: 0;
  color: #4a5043;
  font-size: .92rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 310px;
}

.cc-actions button {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
}

.cc-accept {
  border: 1px solid #d49a3e;
  color: #20241d;
  background: #d49a3e;
}

.cc-reject,
.cc-settings {
  border: 1px solid rgba(32, 36, 29, .18);
  color: #1e3527;
  background: #fff;
}

.cc-panel {
  display: none;
  gap: 12px;
  padding: 0 18px 18px;
}

.cc-panel.active {
  display: grid;
}

.cc-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(32, 36, 29, .12);
  border-radius: 12px;
  background: #f4f1e7;
}

.cc-option strong,
.cc-option small {
  display: block;
}

.cc-option strong {
  color: #1e3527;
}

.cc-option small {
  margin-top: 3px;
  color: #5f665a;
  line-height: 1.45;
}

.cc-option input {
  width: 20px;
  height: 20px;
  accent-color: #2c4a35;
}

.cc-actions-extra {
  justify-content: flex-start;
}

.legal-page {
  min-height: 100vh;
  color: #20241d;
  background: #f4f1e7;
}

.legal-page header.nav {
  position: sticky;
  background: #fbfaf3;
  box-shadow: 0 1px 0 rgba(32, 36, 29, .14);
}

.legal-page .brand,
.legal-page .navlinks a {
  color: #1e3527;
}

.legal-page .navtoggle span {
  background: #20241d;
}

.legal-main {
  padding-top: 0;
}

.legal-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(30px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(212, 154, 62, .18), transparent 42%),
    linear-gradient(135deg, #1e3527, #2c4a35);
  color: #fff;
}

.legal-hero .eyebrow {
  color: #f1d49a;
}

.legal-hero .eyebrow::before {
  background: #f1d49a;
}

.legal-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
}

.legal-hero .lead {
  margin-top: 16px;
  color: rgba(255, 255, 255, .82);
}

.not-found-hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.not-found-hero .btn-ghost {
  color: #fff;
  border: 1.5px solid currentColor;
  background: transparent;
}

.legal-content {
  padding: clamp(36px, 7vw, 86px) 0;
}

.legal-box {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(32, 36, 29, .14);
  border-radius: 18px;
  background: #fbfaf3;
}

.legal-box h2 {
  margin: 32px 0 12px;
  color: #1e3527;
  font-size: 1.45rem;
}

.legal-box p,
.legal-box li {
  color: #41463b;
}

.legal-box p + p,
.legal-box ul + p {
  margin-top: 14px;
}

.legal-box ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 1.2rem;
}

.legal-box code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #e8ecdc;
  color: #1e3527;
  font-size: .92em;
}

.footer-brand {
  font-size: 1.5rem;
}

.footer-note {
  margin-top: 14px;
  max-width: 30ch;
  color: #aebca3;
}

.footer-disclaimer {
  margin-top: 10px;
  max-width: 32ch;
  color: #cdd6c5;
  font-size: .92rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .navlinks {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }

  .navlinks.open {
    transform: none;
  }

  .navtoggle {
    display: block;
    z-index: 60;
  }

  .legal-page .navlinks {
    background: #1e3527;
  }

  .legal-page .navlinks a {
    color: #fff;
  }
}

@media (max-width: 680px) {
  .cc-wrap {
    grid-template-columns: 1fr;
  }

  .cc-actions {
    justify-content: flex-start;
    max-width: none;
  }

  #cookie-consent-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

/* Main page styles moved from index.html */
/* =========================================================
     ZIELONY ŁAD — pielęgnacja ogrodów
     Paleta: głęboka zieleń lasu + ciepły kremowy papier + miodowy akcent słońca
     Typografia: Fraunces (nagłówki, organiczny szeryf) + Manrope (treść)
     ========================================================= */

  :root{
    --soil:    #20241d;   /* tekst — ciemna ziemia */
    --forest:  #2c4a35;   /* główna zieleń */
    --forest-d:#1e3527;   /* ciemniejsza zieleń */
    --moss:    #5d7a52;   /* mech */
    --sage:    #8aa07a;   /* szałwia */
    --paper:   #f4f1e7;   /* ciepły papier — tło */
    --cream:   #fbfaf3;   /* jaśniejszy kremowy */
    --honey:   #d49a3e;   /* miodowy akcent — słońce, kwiat */
    --honey-d: #b9842f;
    --line:    rgba(32,36,29,.14);

    --maxw: 1180px;
    --r: 18px;
    --ease: cubic-bezier(.22,.61,.36,1);
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }

  body{
    font-family:"Manrope", system-ui, sans-serif;
    color:var(--soil);
    background:var(--paper);
    line-height:1.65;
    font-size:17px;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  h1,h2,h3{ font-family:"Fraunces", Georgia, serif; font-weight:400; line-height:1.08; letter-spacing:0; }
  em{ font-style:italic; }
  a{ color:inherit; text-decoration:none; }
  img{ display:block; max-width:100%; }

  .wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:24px; }
  .section{ padding-block:clamp(64px,9vw,120px); }

  /* eyebrow — mała etykieta nad nagłówkami */
  .eyebrow{
    display:inline-flex; align-items:center; gap:.6em;
    font-family:"Manrope", system-ui, sans-serif;
    font-size:1rem; font-weight:800; letter-spacing:0; text-transform:uppercase;
    color:var(--forest);
  }
  .eyebrow::before{ content:""; width:36px; height:2px; background:currentColor; }

  /* przyciski */
  .btn{
    display:inline-flex; align-items:center; gap:.6em;
    font-weight:600; font-size:.98rem;
    padding:.85em 1.5em; border-radius:999px;
    transition:transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
    cursor:pointer; border:none;
  }
  .btn-primary{ background:var(--honey); color:var(--soil); box-shadow:0 8px 22px -10px var(--honey-d); }
  .btn-primary:hover{ background:var(--honey-d); transform:translateY(-2px); }
  .btn-ghost{ border:1.5px solid currentColor; background:transparent; color:inherit; }
  .btn-ghost:hover{ background:rgba(255,255,255,.12); transform:translateY(-2px); }
  .btn .arrow{ transition:transform .25s var(--ease); }
  .btn:hover .arrow{ transform:translateX(3px); }

  /* =========================== NAGŁÓWEK =========================== */
  header.nav{
    position:fixed; inset:0 0 auto 0; z-index:50;
    transition:background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
    padding-block:18px;
  }
  header.nav .wrap{ display:flex; align-items:center; justify-content:space-between; }
  .brand{ display:flex; align-items:center; gap:.55em; font-family:"Fraunces",serif; font-size:1.35rem; color:#fff; transition:color .35s var(--ease); }
  .brand svg{ flex:none; }
  .navlinks{ display:flex; align-items:center; gap:34px; }
  .navlinks a{ color:#fff; font-size:.95rem; font-weight:500; opacity:.92; transition:opacity .2s, color .35s var(--ease); }
  .navlinks a:hover{ opacity:1; }
  .navlinks .btn{ color:var(--soil); }

  header.nav.scrolled{ background:var(--cream); box-shadow:0 1px 0 var(--line); padding-block:12px; }
  header.nav.scrolled .brand{ color:var(--forest-d); }
  header.nav.scrolled .navlinks a{ color:var(--soil); }
  header.nav.scrolled .navlinks .btn-primary{ color:var(--soil); }

  .navtoggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
  .navtoggle span{ display:block; width:24px; height:2px; background:#fff; margin:5px 0; transition:.3s; }
  header.nav.scrolled .navtoggle span{ background:var(--soil); }

  /* =========================== HERO =========================== */
  .hero{ position:relative; min-height:100svh; display:flex; align-items:flex-end; color:#fff; }
  .hero .photo{ position:absolute; inset:0; background:linear-gradient(160deg,#2c4a35,#1e3527); }
  /* ↓↓↓ PODMIEŃ NA WŁASNE ZDJĘCIE OGRODU ↓↓↓ */
  .hero .photo picture{ display:block; width:100%; height:100%; }
  .hero .photo img{ width:100%; height:100%; object-fit:cover; }
  .hero .veil{
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(20,32,24,.55) 0%, rgba(20,32,24,.15) 35%, rgba(20,32,24,.78) 100%);
  }
  .hero .wrap{ position:relative; padding-bottom:clamp(56px,8vw,96px); padding-top:140px; }
  .hero .hero-title{ display:block; margin:.67em 0; font-family:"Fraunces", Georgia, serif; font-size:clamp(2.6rem,7vw,5.4rem); font-weight:300; line-height:1.08; max-width:15ch; text-shadow:0 2px 30px rgba(0,0,0,.25); }
  .hero .hero-title em{ color:#f1d49a; }
  .hero h1.hero-eyebrow{ max-width:none; margin:0 0 20px; font-family:"Manrope", system-ui, sans-serif; font-size:1rem; font-weight:800; line-height:1.35; }
  .hero p.lead{ margin-top:22px; max-width:46ch; font-size:clamp(1.05rem,2vw,1.25rem); opacity:.95; }
  .hero .cta-row{ margin-top:34px; display:flex; gap:14px; flex-wrap:wrap; }
  .hero .hero-rate{
    gap:clamp(16px,2.8vw,30px);
    min-height:72px;
    padding:1rem 1.45rem 1rem 1.75rem;
    font-size:1.05rem;
  }
  .hero-rate .rate-copy{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.12;
    white-space:nowrap;
  }
  .hero-rate .rate-copy strong{
    font-size:1.08em;
    font-weight:800;
  }
  .hero-rate .reserve-copy{
    display:inline-flex;
    align-items:center;
    gap:.6em;
    font-weight:800;
    white-space:nowrap;
  }
  .hero-rate .reserve-copy svg{
    flex:none;
  }
  .hero .scrollcue{ position:absolute; right:24px; bottom:30px; font-size:.78rem; letter-spacing:0; text-transform:uppercase; opacity:.8; writing-mode:vertical-rl; }

  /* =========================== INTRO =========================== */
  .intro{ background:var(--cream); }
  .intro .grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,6vw,90px); align-items:center; }
  .intro h2{ font-size:clamp(1.9rem,3.6vw,2.9rem); color:var(--forest-d); max-width:16ch; }
  .intro .body p.eyebrow{ color:var(--forest); }
  .intro .body p{ color:#41463b; margin-top:18px; }
  .intro .stats{ display:flex; gap:40px; margin-top:34px; flex-wrap:wrap; }
  .intro .stats .num{ font-family:"Fraunces",serif; font-size:2.4rem; color:var(--honey-d); line-height:1; }
  .intro .stats .lbl{ font-size:.86rem; color:var(--moss); margin-top:6px; max-width:14ch; }
  .intro .figure{ position:relative; }
  .intro .figure .ph{ border-radius:var(--r); overflow:hidden; aspect-ratio:4/5; background:linear-gradient(160deg,var(--moss),var(--forest)); box-shadow:0 30px 60px -30px rgba(30,53,39,.5); }
  .intro .figure .ph picture{ display:block; width:100%; height:100%; }
  .intro .figure .ph img{ width:100%; height:100%; object-fit:cover; }
  .intro .figure .badge{
    position:absolute; left:-22px; bottom:36px; background:var(--honey); color:var(--soil);
    border-radius:14px; padding:16px 20px; font-weight:600; line-height:1.2; box-shadow:0 16px 30px -14px var(--honey-d); max-width:200px;
  }
  .intro .figure .badge span{ font-family:"Fraunces",serif; font-size:1.6rem; display:block; }

  /* =========================== USŁUGI =========================== */
  .services{ background:var(--paper); }
  .services .head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; margin-bottom:50px; }
  .services h2{ font-size:clamp(2rem,4vw,3.2rem); color:var(--forest-d); max-width:14ch; }
  .services .head p.eyebrow{ color:var(--forest); }
  .services .head p{ max-width:40ch; color:#41463b; }
  .cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .card{
    background:var(--cream); border:1px solid var(--line); border-radius:var(--r); padding:30px 28px;
    transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    position:relative; overflow:hidden; scroll-margin-top:92px;
  }
  .card:hover{ transform:translateY(-5px); box-shadow:0 24px 44px -28px rgba(30,53,39,.45); border-color:transparent; }
  .card .ico{ width:48px; height:48px; border-radius:12px; background:#e8ecdc; display:grid; place-items:center; margin-bottom:20px; color:var(--forest); }
  .card h3{ font-size:1.4rem; color:var(--forest-d); }
  .card p{ margin-top:10px; color:#4a5043; font-size:.97rem; }
  .card .tag{ display:inline-block; margin-top:16px; font-size:.78rem; font-weight:600; letter-spacing:0; color:var(--honey-d); }

  /* =========================== GALERIA =========================== */
  .gallery{ background:var(--forest-d); color:#fff; }
  .gallery .head{ text-align:center; max-width:46ch; margin:0 auto 50px; }
  .gallery .head .eyebrow{ color:#fff2c7; text-shadow:0 2px 14px rgba(0,0,0,.45); }
  .gallery .head .eyebrow::before{ background:currentColor; }
  .gallery h2{ font-size:clamp(2rem,4vw,3.2rem); margin-top:14px; }
  .gallery h2 em{ color:#f1d49a; }
  .gallery .head p{ opacity:.82; margin-top:14px; }
  .grid-photos{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); align-items:start; gap:30px; }
  .gphoto{ margin:0; color:#fff; }
  .gphoto.feature{ grid-column:1 / -1; }
  .gphoto-trigger{ display:block; width:100%; padding:0; border:0; border-radius:14px; overflow:hidden; background:linear-gradient(160deg,var(--moss),var(--forest)); cursor:zoom-in; aspect-ratio:4/3; box-shadow:0 24px 48px -30px rgba(0,0,0,.55); }
  .gphoto.feature .gphoto-trigger{ aspect-ratio:16/9; }
  .gphoto.portrait .gphoto-trigger{ aspect-ratio:3/4; }
  .gphoto-trigger:focus-visible{ outline:3px solid #f1d49a; outline-offset:4px; }
  .gphoto img{ display:block; width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
  .gphoto.work-detail img{ object-position:center 68%; }
  .gphoto-trigger:hover img{ transform:scale(1.04); }
  .gphoto figcaption{ margin-top:12px; padding-inline:4px; color:#dfe6d8; }
  .gphoto figcaption strong{ display:block; color:#fff; font-size:1rem; line-height:1.25; }
  .gphoto figcaption span{ display:block; margin-top:4px; font-size:.9rem; line-height:1.45; opacity:.88; }

  .lightbox{ position:fixed; inset:0; z-index:120; display:grid; place-items:center; padding:24px; background:rgba(9,19,13,.88); opacity:0; pointer-events:none; transition:opacity .22s var(--ease); }
  .lightbox.open{ opacity:1; pointer-events:auto; }
  .lightbox-panel{ position:relative; width:min(1080px,100%); max-height:calc(100vh - 48px); display:grid; grid-template-rows:minmax(0,1fr) auto; gap:16px; }
  .lightbox-image{ display:block; max-width:100%; max-height:calc(100vh - 160px); width:auto; height:auto; margin:auto; border-radius:12px; background:#10170f; box-shadow:0 30px 80px rgba(0,0,0,.45); }
  .lightbox-caption{ color:#dfe6d8; text-align:center; padding-inline:54px; }
  .lightbox-caption h3{ color:#fff; font-size:1.35rem; margin:0; }
  .lightbox-caption p{ margin:6px auto 0; max-width:62ch; font-size:.95rem; }
  .lightbox-close{ position:absolute; top:10px; right:10px; z-index:1; width:44px; height:44px; border:0; border-radius:50%; display:grid; place-items:center; background:rgba(251,250,243,.95); color:var(--soil); font-size:2rem; line-height:1; cursor:pointer; box-shadow:0 12px 28px rgba(0,0,0,.28); }
  .lightbox-close:focus-visible{ outline:3px solid #f1d49a; outline-offset:4px; }
  body.lightbox-open{ overflow:hidden; }

  /* =========================== JAK PRACUJEMY =========================== */
  .process{ background:var(--cream); }
  .process .head{ text-align:center; margin-bottom:56px; }
  .process .center-eyebrow{
    color:var(--forest);
    font-size:1rem;
    font-weight:800;
  }
  .process .center-eyebrow::before{
    width:36px;
    height:2px;
    background:currentColor;
  }
  .process h2{ font-size:clamp(2rem,4vw,3.2rem); color:var(--forest-d); margin-top:14px; }
  .steps{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
    max-width:960px;
    margin-inline:auto;
  }
  .step{ position:relative; padding-top:28px; }
  .step .n{ font-family:"Fraunces",serif; font-size:1rem; font-weight:500; color:var(--honey-d); letter-spacing:0; }
  .step::before{ content:""; position:absolute; top:0; left:0; width:42px; height:3px; background:var(--honey); border-radius:3px; }
  .step h3{ font-size:1.35rem; color:var(--forest-d); margin-top:14px; }
  .step p{ margin-top:8px; color:#4a5043; font-size:.95rem; }

  /* =========================== ABONAMENT / CTA =========================== */
  .band{ position:relative; color:#fff; overflow:hidden; }
  .band .photo{ position:absolute; inset:0; background:linear-gradient(160deg,#2c4a35,#1e3527); }
  .band .photo img{ width:100%; height:100%; object-fit:cover; }
  .band .veil{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(20,32,24,.88) 0%, rgba(20,32,24,.55) 100%); }
  .band .wrap{ position:relative; }
  .band h2{ font-size:clamp(2rem,4.4vw,3.4rem); max-width:18ch; font-weight:300; }
  .band h2 em{ color:#f1d49a; }
  .band p{ margin-top:18px; max-width:44ch; opacity:.92; }
  .band .cta-row{ margin-top:30px; display:flex; gap:14px; flex-wrap:wrap; }

  /* =========================== KONTAKT =========================== */
  .contact{ background:var(--paper); }
  .contact .grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(40px,6vw,80px); }
  .contact h2{ font-size:clamp(2rem,4vw,3rem); color:var(--forest-d); max-width:14ch; }
  .contact .lead{ margin-top:16px; color:#41463b; max-width:38ch; }
  .contact .detail{ margin-top:30px; display:flex; flex-direction:column; gap:18px; }
  .contact .detail .row{ display:flex; gap:14px; align-items:flex-start; }
  .contact .detail .row .ico{ width:40px; height:40px; border-radius:10px; background:#e8ecdc; display:grid; place-items:center; color:var(--forest); flex:none; }
  .contact .detail .row .lbl{ font-size:.78rem; letter-spacing:0; text-transform:uppercase; color:var(--moss); }
  .contact .detail .row .val{ font-weight:600; color:var(--soil); }
  .contact .callback-note{ margin:.3rem 0 0; max-width:34ch; color:#5d6555; font-size:.88rem; line-height:1.45; }

  .callback-note{ margin:.65rem 0 0; max-width:48ch; color:#5d6555; font-size:.9rem; line-height:1.45; }
  .callback-note-light{ color:rgba(255,255,255,.84); }

  form{ background:var(--cream); border:1px solid var(--line); border-radius:var(--r); padding:clamp(26px,4vw,38px); }
  .field{ margin-bottom:18px; }
  .field label{ display:block; font-size:.85rem; font-weight:600; margin-bottom:7px; color:var(--soil); }
  .field input, .field textarea{
    width:100%; font-family:inherit; font-size:1rem; color:var(--soil);
    padding:13px 15px; border:1.5px solid var(--line); border-radius:11px; background:#fff;
    transition:border-color .2s, box-shadow .2s;
  }
  .field input:focus, .field textarea:focus{ outline:none; border-color:var(--moss); box-shadow:0 0 0 3px rgba(93,122,82,.18); }
  .field textarea{ resize:vertical; min-height:120px; }
  form .btn-primary{ width:100%; justify-content:center; }
  .formnote{ font-size:.82rem; color:var(--moss); margin-top:14px; text-align:center; }

  /* =========================== STOPKA =========================== */
  footer{ background:var(--forest-d); color:#dfe6d8; padding-block:54px 30px; }
  footer .top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:34px; border-bottom:1px solid rgba(255,255,255,.12); }
  footer .brand{ color:#fff; }
  footer .col h3{ font-family:"Manrope",sans-serif; font-size:.8rem; letter-spacing:0; text-transform:uppercase; color:var(--sage); margin-bottom:14px; font-weight:700; }
  footer .col a, footer .col p{ display:block; color:#cdd6c5; font-size:.95rem; margin-bottom:8px; transition:color .2s; }
  footer .col a:hover{ color:#fff; }
  footer .cols{ display:flex; gap:60px; flex-wrap:wrap; }
  footer .bottom{ display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; padding-top:22px; font-size:.85rem; color:#9fb094; }

  /* =========================== ANIMACJE WEJŚCIA =========================== */
  .reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in{ opacity:1; transform:none; }

  /* =========================== RESPONSYWNOŚĆ =========================== */
  @media (max-width:900px){
    .navlinks{
      position:fixed; inset:0 0 0 auto; width:min(78vw,320px);
      background:var(--forest-d); flex-direction:column; align-items:flex-start; justify-content:center;
      padding:40px; gap:26px; transform:translateX(100%); transition:transform .35s var(--ease);
    }
    .navlinks.open{ transform:none; }
    .navlinks a{ color:#fff !important; font-size:1.2rem; }
    .navtoggle{ display:block; z-index:60; }
    .intro .grid, .contact .grid{ grid-template-columns:1fr; }
    .cards{ grid-template-columns:1fr 1fr; }
    .steps{ grid-template-columns:1fr 1fr; row-gap:40px; }
    .grid-photos{ gap:24px; }
    .intro .figure{ order:-1; }
    .hero .hero-rate{
      width:100%;
      max-width:520px;
      justify-content:space-between;
    }
  }
  @media (max-width:560px){
    body{ font-size:16px; }
    .cards{ grid-template-columns:1fr; }
    .steps{ grid-template-columns:1fr; }
    .grid-photos{ grid-template-columns:1fr; gap:26px; }
    .gphoto,.gphoto.feature{ grid-column:auto; }
    .gphoto.feature .gphoto-trigger{ aspect-ratio:4/3; }
    .gphoto figcaption{ padding-inline:4px; }
    .lightbox{ padding:14px; }
    .lightbox-panel{ max-height:calc(100vh - 28px); }
    .lightbox-image{ max-height:calc(100vh - 150px); border-radius:10px; }
    .lightbox-caption{ padding-inline:8px; }
    .lightbox-caption h3{ font-size:1.15rem; }
    .intro .figure .badge{ left:0; }
    .hero .hero-rate{
      align-items:flex-start;
      flex-direction:column;
      gap:12px;
      width:100%;
      border-radius:28px;
    }
    .hero-rate .arrow{
      display:none;
    }
    .hero-rate .rate-copy,
    .hero-rate .reserve-copy{
      white-space:normal;
    }
    .hero h1.hero-eyebrow{
      position:relative;
      display:block;
      width:100%;
      padding-left:50px;
      overflow-wrap:anywhere;
    }
    .hero h1.hero-eyebrow::before{
      position:absolute;
      left:0;
      top:.7em;
    }
    .hero .scrollcue{
      display:none;
    }
  }

  @media (prefers-reduced-motion:reduce){
    *{ animation:none !important; transition:none !important; }
    html{ scroll-behavior:auto; }
    .reveal{ opacity:1; transform:none; }
  }


/* =========================== PODSTRONY SEGMENTOWE =========================== */
.card-feature-link {
  display: flex;
  flex-direction: column;
}

.card-more {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--forest);
  font-weight: 800;
}

.card-more:hover {
  color: var(--honey-d);
}

.service-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-note p {
  color: var(--forest-d);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
}

.service-note a,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

body.service-page {
  color: var(--soil);
  background: var(--paper);
  font-size: 18px;
}

.service-page header.nav {
  position: sticky;
  background: var(--cream);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}

.service-page .brand,
.service-page .navlinks a {
  color: var(--forest-d);
}

.service-page .navlinks a[aria-current="page"] {
  color: var(--honey-d);
  font-weight: 800;
}

.service-page .navtoggle span {
  background: var(--soil);
}

.service-page .btn {
  min-height: 48px;
}

.segment-hero {
  position: relative;
  min-height: min(760px, 88svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.segment-hero-media,
.segment-hero-media img,
.segment-hero-veil {
  position: absolute;
  inset: 0;
}

.segment-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.segment-hero-veil {
  background:
    linear-gradient(180deg, rgba(11, 20, 14, .62) 0%, rgba(11, 20, 14, .36) 42%, rgba(11, 20, 14, .88) 100%),
    linear-gradient(90deg, rgba(11, 20, 14, .78), rgba(11, 20, 14, .16));
}

.segment-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: clamp(54px, 9vw, 100px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
}

.breadcrumbs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.segment-hero .eyebrow {
  color: #fff2c7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}

.segment-hero h1 {
  max-width: 13ch;
  margin-top: 12px;
  font-size: clamp(2.45rem, 6.2vw, 5rem);
  font-weight: 300;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .28);
}

.segment-hero .lead {
  max-width: 54ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.segment-hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.segment-area {
  margin-top: 18px;
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
}

.segment-section {
  padding-block: clamp(58px, 8vw, 104px);
  background: var(--paper);
}

.segment-section-alt {
  background: var(--cream);
}

.segment-section-dark {
  color: #fff;
  background: var(--forest-d);
}

.segment-section-dark .eyebrow,
.segment-section-dark h2,
.segment-section-dark h3 {
  color: #fff2c7;
}

.segment-section-dark p,
.segment-section-dark li,
.segment-section-dark .text-link {
  color: #dfe6d8;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.copy-block h2,
.section-head h2,
.segment-cta h2 {
  color: var(--forest-d);
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.segment-section-dark .copy-block h2,
.segment-section-dark .section-head h2 {
  color: #fff;
}

.copy-block p,
.section-head p {
  max-width: 62ch;
  margin-top: 16px;
  color: #41463b;
}

.segment-section-dark .copy-block p,
.segment-section-dark .section-head p {
  color: #dfe6d8;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-facts {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--cream);
}

.service-facts p {
  margin: 0;
  color: #41463b;
}

.service-facts .callback-note {
  color: #5d6555;
  font-size: .9rem;
}

.service-facts a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-facts-dark {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}

.service-facts-dark p {
  color: #dfe6d8;
}

.story-facts {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.story-facts div {
  display: grid;
  grid-template-columns: minmax(110px, .35fr) minmax(0, 1fr);
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.story-facts dt {
  color: var(--forest-d);
  font-weight: 800;
}

.story-facts dd {
  margin: 0;
  color: #41463b;
}

.service-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-panel {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--cream);
}

.service-panel h3 {
  color: var(--forest-d);
  font-size: 1.35rem;
}

.service-panel p {
  margin-top: 10px;
  color: #4a5043;
}

.flow-list {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  counter-increment: flow;
  display: grid;
  grid-template-columns: 58px minmax(0, 220px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--soil);
  background: var(--honey);
  font-weight: 900;
}

.flow-list strong {
  color: var(--forest-d);
  font-size: 1.08rem;
}

.flow-list span {
  color: #41463b;
}

.compare-single {
  margin: 0;
}

.compare-single picture,
.compare-media picture {
  display: block;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--forest);
}

.compare-single img,
.compare-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-single picture {
  aspect-ratio: 4 / 5;
}

.compare-single-mariusz img {
  object-position: 50% 24%;
}

.compare-single figcaption {
  margin-top: 12px;
  color: #5f665a;
  font-size: .95rem;
}

.project-video {
  width: min(100%, 360px);
  justify-self: center;
}

.project-video__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: var(--r);
  background: var(--forest-d);
  box-shadow: 0 24px 54px rgba(23, 42, 29, .18);
}

.project-video__cover {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--cream);
  isolation: isolate;
}

.project-video__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 30, 20, .08) 35%, rgba(15, 30, 20, .88) 100%);
}

.project-video .project-video__cover picture {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.project-video__cover img {
  transition: transform .5s var(--ease), filter .5s var(--ease);
}

.project-video__cover:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.project-video__badge,
.project-video__play,
.project-video__label {
  position: absolute;
  z-index: 2;
}

.project-video__badge {
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  background: rgba(23, 45, 30, .72);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.project-video__play {
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  color: var(--honey);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.45));
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease), color .25s var(--ease);
}

.project-video__play svg {
  display: block;
  width: 100%;
  height: 100%;
}

.project-video__cover:hover .project-video__play,
.project-video__cover:focus-visible .project-video__play {
  color: #f3c568;
  transform: translate(-50%, -50%) scale(1.08);
}

.project-video__cover:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 4px;
}

.project-video__label {
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1.12;
}

.trust-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  font-weight: 800;
}

.before-after-story {
  display: grid;
  gap: 22px;
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

.before-after-story:last-child {
  border-bottom: 1px solid var(--line);
}

.before-after-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-media {
  position: relative;
  margin: 0;
}

.compare-media picture {
  aspect-ratio: 4 / 5;
}

.realization-pair .compare-media picture {
  aspect-ratio: 4 / 3;
}

.realization-pair figcaption {
  margin-top: 10px;
  color: #5f665a;
  font-size: .95rem;
  line-height: 1.45;
}

.compare-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(30, 53, 39, .92);
  font-weight: 900;
  text-transform: uppercase;
}

.compare-label-after {
  color: var(--soil);
  background: var(--honey);
}

.story-copy h3 {
  color: var(--forest-d);
  font-size: 1.55rem;
}

.story-copy p {
  max-width: 74ch;
  margin-top: 10px;
  color: #41463b;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.faq-list summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  color: var(--forest-d);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::marker {
  content: "";
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30, 53, 39, .2);
  border-radius: 50%;
  color: var(--forest-d);
  background: rgba(255, 255, 255, .7);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.faq-list details[open] summary::after {
  content: "−";
  color: var(--soil);
  border-color: var(--honey);
  background: var(--honey);
}

.faq-list summary:hover::after {
  border-color: var(--honey-d);
  transform: scale(1.06);
}

.faq-list summary:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
  border-radius: 10px;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: #41463b;
}

.segment-cta {
  padding-block: clamp(58px, 8vw, 96px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(30,53,39,.95), rgba(44,74,53,.88)),
    url("tlo-rezerwacje-www.jpg") center / cover;
}

.segment-cta .eyebrow,
.segment-cta h2 {
  color: #fff2c7;
}

.segment-cta p {
  max-width: 48ch;
  margin: 16px 0 28px;
  color: #dfe6d8;
}

@media (max-width: 900px) {
  .service-page .navlinks {
    background: var(--forest-d);
  }

  .service-page .navlinks a {
    color: #fff !important;
  }

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

  .flow-list li {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .flow-list span {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  body.service-page {
    font-size: 18px;
  }

  .segment-hero {
    min-height: 84svh;
  }

  .segment-hero h1 {
    max-width: 11ch;
  }

  .segment-hero .cta-row,
  .service-note,
  .before-after-pair {
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .story-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .segment-hero .btn,
  .segment-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .service-note {
    display: grid;
  }

}
.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.gallery-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45em;
  min-height: 48px;
  padding: 12px 20px;
  border: 1.5px solid rgba(241, 212, 154, .7);
  border-radius: 999px;
  color: #fff2c7;
  font-weight: 900;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.gallery-more a:hover {
  color: var(--soil);
  background: #f1d49a;
  transform: translateY(-2px);
}
