:root {
  --bg: #faf6f1;
  --bg-alt: #f2e9dd;
  --surface: #ffffff;
  --ink: #362f28;
  --ink-soft: #6e6357;
  --ink-faint: #9b8f80;
  --line: #e6dbca;
  --accent: #c1622f;
  --accent-dark: #9c4d22;
  --accent-soft: #f0d3bd;
  --sage: #7c8768;
  --sage-soft: #dfe4d3;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --shadow-sm: 0 1px 2px rgba(54,47,40,.06), 0 2px 6px rgba(54,47,40,.05);
  --shadow-md: 0 4px 12px rgba(54,47,40,.07), 0 12px 28px rgba(54,47,40,.06);
  --shadow-lg: 0 10px 28px rgba(54,47,40,.10), 0 26px 52px rgba(54,47,40,.08);
  --shadow-accent: 0 10px 24px rgba(193,98,47,.28);
  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }

.sec { padding: clamp(3.5rem, 7vw, 7rem) 0; }
.sec-in { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.sec-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head-row { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; flex-wrap: wrap; gap: 1rem; }
.sec-title { font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin-bottom: .6rem; }
.sec-sub { color: var(--ink-soft); font-size: 1.05rem; max-width: 480px; }

.rev { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rev.in-view { opacity: 1; transform: translateY(0); }


.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.75rem; border-radius: var(--r-md);
  font-weight: 600; font-size: .95rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  border: 1px solid transparent; white-space: nowrap;
  & .btn-primary {}
}
.btn-primary {
  background: var(--accent); color: #fff; box-shadow: var(--shadow-accent);
  &:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(193,98,47,.34); }
}
.btn-ghost {
  background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm);
  &:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
}
.btn-ghost-light {
  background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4);
  &:hover { background: rgba(255,255,255,.24); }
}


.cke {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  max-height: fit-content;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease), opacity .4s var(--ease);
  &.cke-hidden { max-height: 0; opacity: 0; border-bottom: 0; }
}
.cke-in {
  max-width: 1180px; margin: 0 auto; padding: .7rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap;
}
.cke-txt { font-size: .85rem; color: var(--ink-soft); flex: 1 1 340px; }
.cke-txt i { color: var(--accent); margin-right: .3rem; }
.cke-txt a { color: var(--accent); font-weight: 600; }
.cke-btns { display: flex; gap: .6rem; flex-shrink: 0; }
.cke-btn {
  padding: .55rem 1.1rem; border-radius: var(--r-sm); font-size: .82rem; font-weight: 600;
  border: 1px solid var(--line); transition: all .3s var(--ease); min-height: 38px;
}
.cke-btn-ghost { background: transparent; color: var(--ink-soft); &:hover { background: var(--surface); } }
.cke-btn-solid { background: var(--accent); color: #fff; border-color: var(--accent); &:hover { background: var(--accent-dark); } }


.hdr {
  position: sticky; top: 0; z-index: 150;
  background: rgba(250, 246, 241, .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: transform .4s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  &.hdr-hide { transform: translateY(-100%); }
  &.hdr-solid { box-shadow: var(--shadow-sm); border-color: var(--line); }
}
.hdr-in {
  max-width: 1240px; margin: 0 auto; padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.hdr-brand { display: flex; align-items: center; gap: .65rem; }
.hdr-logo { width: 38px; height: 38px; }
.hdr-brand-txt {
  font-weight: 700; font-size: 1.05rem; line-height: 1.1; display: flex; flex-direction: column;
  & small { font-weight: 500; font-size: .68rem; color: var(--ink-soft); letter-spacing: .03em; text-transform: uppercase; }
}
.hdr-nav {
  display: flex; gap: 2rem; flex: 1; justify-content: center;
  & a {
    font-size: .93rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: .3rem 0;
    transition: color .3s var(--ease);
    &::after { content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--accent); transition: width .3s var(--ease); border-radius: 2px; }
    &:hover { color: var(--ink); }
    &:hover::after { width: 100%; }
    &.is-active { color: var(--ink); font-weight: 600; }
    &.is-active::after { width: 100%; }
  }
}
.hdr-cta {
  background: var(--accent); color: #fff; padding: .65rem 1.3rem; border-radius: var(--r-md);
  font-size: .88rem; font-weight: 600; box-shadow: var(--shadow-accent); transition: all .3s var(--ease);
  &:hover { background: var(--accent-dark); transform: translateY(-2px); }
}
.hdr-burger {
  display: none; background: none; border: none; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  & span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s var(--ease); }
}


.mob-menu {
  position: fixed; inset: 0; z-index: 300; visibility: hidden; pointer-events: none;
  &.open { visibility: visible; pointer-events: auto; }
}
.mob-overlay {
  position: absolute; inset: 0; background: rgba(40,32,24,0); transition: background .45s var(--ease);
}
.mob-menu.open .mob-overlay { background: rgba(40,32,24,.5); }
.mob-panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: 80%; max-width: 340px;
  background: var(--surface); box-shadow: var(--shadow-lg);
  transform: translateX(-100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; padding: 1.5rem;
}
.mob-menu.open .mob-panel { transform: translateX(0); }
.mob-panel-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.mob-panel-brand { font-weight: 700; font-size: 1.1rem; }
.mob-close {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: none;
  font-size: 1.4rem; color: var(--ink-soft); transition: all .3s var(--ease);
  &:hover { background: var(--bg-alt); }
}
.mob-nav { display: flex; flex-direction: column; gap: 1.6rem; flex: 1; }
.mob-nav a {
  font-size: 1.35rem; font-weight: 600; color: var(--ink);
  opacity: 0; transform: translateX(-18px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}
.mob-menu.open .mob-nav a { opacity: 1; transform: translateX(0); }
.mob-panel-foot { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.mob-cta {
  display: block; text-align: center; background: var(--accent); color: #fff;
  padding: .95rem; border-radius: var(--r-md); font-weight: 600; box-shadow: var(--shadow-accent);
}


.hero {
  position: relative; overflow: hidden; padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.hero-blob {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  filter: blur(50px); z-index: 0; opacity: .55;
}
.hero-blob-a { background: radial-gradient(circle, var(--accent-soft), transparent 70%); top: -180px; left: -120px; animation: blobMoveA 20s ease-in-out infinite; }
.hero-blob-b { background: radial-gradient(circle, var(--sage-soft), transparent 70%); bottom: -200px; right: -140px; animation: blobMoveB 24s ease-in-out infinite; }
@keyframes blobMoveA {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(50px,30px) scale(1.1); }
  66% { transform: translate(-30px,-20px) scale(.94); }
}
@keyframes blobMoveB {
  0%, 100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(-40px,-30px) scale(1.08); }
  70% { transform: translate(30px,20px) scale(.92); }
}
.hero-in {
  position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--surface); border: 1px solid var(--line);
  padding: .5rem 1rem; border-radius: 999px; font-size: .82rem; font-weight: 600; color: var(--accent-dark);
  box-shadow: var(--shadow-sm); margin-bottom: 1.4rem;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 1.2rem; color: var(--ink); }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 480px; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-facts {
  display: grid; grid-template-columns: repeat(2, auto); gap: .8rem 2rem;
  & li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--ink-soft); font-weight: 500; }
  & i { color: var(--accent); background: var(--accent-soft); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .68rem; }
}
.hero-media { position: relative; }
.hero-img {
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border: 6px solid var(--surface);
}


.intro-grid { display: grid; grid-template-columns: .8fr 2.2fr; gap: 3rem; align-items: start; }
.intro-label span {
  display: inline-block; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent-dark); background: var(--accent-soft); padding: .5rem 1rem; border-radius: var(--r-sm);
}
.intro-lead { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: 1.2rem; line-height: 1.3; }
.intro-txt p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 640px; font-size: 1.05rem; }
.intro-txt p:last-child { margin-bottom: 0; }


.zig { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5rem); }
.zig-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.zig-row.zig-rev .zig-media { order: 2; }
.zig-row.zig-rev .zig-body { order: 1; }
.zig-media img {
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 5/4; object-fit: cover;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.zig-media:hover img { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.zig-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); color: var(--accent);
  font-size: 1.3rem; box-shadow: var(--shadow-sm); margin-bottom: 1.1rem;
}
.zig-body h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); margin-bottom: .9rem; }
.zig-body p { color: var(--ink-soft); margin-bottom: .8rem; }
.zig-note { font-size: .9rem; color: var(--ink-faint); font-style: italic; }

.sec-zig-alt { background: var(--bg-alt); border-radius: var(--r-xl); margin: 0 1.5rem; width: auto; max-width: none;
  & .sec-in { max-width: 1180px; }
}


.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.price-crd {
  background: var(--surface); border-radius: var(--r-lg); padding: 2rem 1.6rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  &:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
}
.price-crd-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px;
  background: var(--accent-soft); color: var(--accent-dark); border-radius: var(--r-md); font-size: 1.2rem; margin-bottom: 1rem;
}
.price-crd h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.price-crd-amt { font-size: 1.5rem; font-weight: 700; color: var(--accent-dark); margin-bottom: .7rem; }
.price-crd p { color: var(--ink-soft); font-size: .92rem; margin-bottom: .9rem; }
.price-crd ul li { color: var(--ink-faint); font-size: .85rem; padding-left: 1.1rem; position: relative; margin-bottom: .4rem;
  &::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
}

.coll-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.coll-crd {
  background: var(--bg-alt); border-radius: var(--r-lg); padding: 1.8rem; transition: transform .35s var(--ease);
  &:hover { transform: translateY(-4px); }
  & h4 { font-size: 1.1rem; margin-bottom: .6rem; color: var(--accent-dark); }
  & p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 1rem; }
  & span { font-size: .82rem; font-weight: 600; color: var(--ink); }
}

.info2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.info2-crd {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-sm);
}
.info2-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  background: var(--sage-soft); color: var(--sage); border-radius: var(--r-md); font-size: 1.15rem; margin-bottom: 1rem;
}
.info2-crd h3 { margin-bottom: .7rem; font-size: 1.15rem; }
.info2-crd p { color: var(--ink-soft); font-size: .95rem; }


.sty { padding: 4rem 0; }
.sty-in { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: .9fr 1.1fr; gap: 3.5rem; }
.sty-visual { position: sticky; top: 100px; align-self: start; height: fit-content; }
.sty-visual img { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 6px solid var(--surface); }
.sty-content { display: flex; flex-direction: column; gap: clamp(4rem, 10vh, 7rem); padding: 2rem 0; }
.sty-block { max-width: 460px; }
.sty-num { font-size: .85rem; font-weight: 700; color: var(--accent); letter-spacing: .1em; }
.sty-block h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin: .5rem 0 1rem; }
.sty-block p { color: var(--ink-soft); margin-bottom: .9rem; }


.grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-auto-rows: 220px; gap: 1.2rem; }
.grid3-tall { grid-row: span 2; }
.grid3-item {
  position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  & img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
  &:hover img { transform: scale(1.06); }
  & figcaption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.1rem .9rem;
    background: linear-gradient(to top, rgba(30,24,18,.72), transparent);
    color: #fff; font-size: .85rem; font-weight: 500;
  }
}


.sec-statement { text-align: center; }
.statement-txt { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 600; max-width: 780px; margin: 0 auto 1rem; line-height: 1.4; color: var(--ink); }
.statement-cite { color: var(--ink-faint); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }


.gal-splide .splide__slide { padding: .3rem; }
.gal-card {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--surface);
  & img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
  & figcaption { padding: 1rem 1.1rem; font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
}
.splide__pagination__page { background: var(--line); opacity: 1; }
.splide__pagination__page.is-active { background: var(--accent); transform: scale(1.3); }
.splide__arrow { background: var(--surface); box-shadow: var(--shadow-sm); opacity: 1; }
.splide__arrow svg { fill: var(--ink); }
.splide__arrow:hover { background: var(--accent-soft); }


.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, #4a3d30 100%);
  color: #fdf9f4; padding: clamp(3rem, 6vw, 5rem) 1.5rem; margin: 0 1.5rem; border-radius: var(--r-xl);
  text-align: center; box-shadow: var(--shadow-lg);
}
.cta-band-in { max-width: 640px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: .8rem; }
.cta-band p { color: rgba(255,255,255,.78); margin-bottom: 1.8rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


.pg-hero { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem); background: var(--bg-alt); }
.pg-hero-sm { padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.8rem, 3vw, 2.5rem); }
.pg-hero-in { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.pg-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
.pg-hero-lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }


.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2.5rem; align-items: start; }
.contact-side { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-crd, .contact-urgent {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.contact-info-crd h3 { margin-bottom: 1rem; font-size: 1.15rem; }
.contact-info-crd p { display: flex; align-items: center; gap: .6rem; margin-bottom: .7rem; color: var(--ink-soft); font-size: .95rem; }
.contact-info-crd p a { color: var(--ink); font-weight: 500; }
.contact-info-crd p a:hover { color: var(--accent); }
.contact-hours { font-size: .9rem !important; }
.contact-urgent { background: var(--accent-soft); border-color: transparent; }
.contact-urgent-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  background: var(--surface); color: var(--accent-dark); border-radius: 50%; font-size: 1.1rem; margin-bottom: 1rem; box-shadow: var(--shadow-sm);
}
.contact-urgent h3 { margin-bottom: .7rem; font-size: 1.05rem; }
.contact-urgent p { font-size: .9rem; color: var(--ink); }
.contact-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-map iframe { display: block; }
.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.2rem; box-shadow: var(--shadow-md);
}


.frm h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.frm-row { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: .45rem; }
.frm-row label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.frm-row input[type=text], .frm-row input[type=email], .frm-row textarea {
  padding: .85rem 1rem; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--bg);
  font-family: inherit; font-size: .95rem; color: var(--ink); transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  min-height: 44px;
  &:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
}
.frm-row textarea { resize: vertical; min-height: 120px; }
.frm-check { flex-direction: row; align-items: flex-start; gap: .7rem; }
.frm-check input { margin-top: .3rem; width: 20px; height: 20px; accent-color: var(--accent); flex-shrink: 0; }
.frm-check label { font-weight: 400; font-size: .86rem; color: var(--ink-soft); }
.frm-check label a { color: var(--accent-dark); font-weight: 600; }
.frm-submit { width: 100%; margin-top: .5rem; }


.legal-in { max-width: 820px; }
.legal-in h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: .6rem; }
.legal-updated { color: var(--ink-faint); font-size: .9rem; margin-bottom: 1.5rem; }
.legal-intro { color: var(--ink-soft); margin-bottom: 2rem; font-size: 1rem; }
.legal-note {
  display: flex; gap: .9rem; background: var(--accent-soft); border-radius: var(--r-md); padding: 1.2rem 1.4rem; margin-bottom: 2rem;
  & i { color: var(--accent-dark); font-size: 1.1rem; margin-top: .1rem; }
  & p { color: var(--ink); font-size: .92rem; }
}
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 0; background: none; border: none; text-align: left;
  font-size: 1.02rem; font-weight: 600; color: var(--ink);
  & i { color: var(--accent); transition: transform .35s var(--ease); flex-shrink: 0; }
}
.acc-item.active .acc-head i { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-body-in { padding: 0 0 1.6rem; color: var(--ink-soft); font-size: .95rem; }
.acc-body-in p { margin-bottom: .8rem; }
.acc-body-in p:last-child { margin-bottom: 0; }


.imp-h2 { font-size: 1.15rem; margin: 2rem 0 .8rem; color: var(--ink); }
.imp-tbl { width: 100%; border-collapse: collapse; margin-bottom: .5rem; box-shadow: var(--shadow-sm); border-radius: var(--r-md); overflow: hidden; }
.imp-tbl td, .imp-tbl th { padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); font-size: .92rem; text-align: left; }
.imp-tbl td:first-child { color: var(--ink-soft); font-weight: 600; width: 38%; background: var(--bg-alt); }
.imp-tbl th { background: var(--bg-alt); font-weight: 700; }
.legal-in p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1rem; }
.legal-in p a { color: var(--accent-dark); font-weight: 600; }


.thx-body { background: linear-gradient(160deg, var(--sage-soft) 0%, var(--bg) 55%); }
.thx-main { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
.thx-crd {
  background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 480px; text-align: center; border: 1px solid var(--line);
}
.thx-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px;
  background: var(--accent-soft); color: var(--accent-dark); border-radius: 50%; font-size: 1.8rem; margin-bottom: 1.4rem;
}
.thx-crd h1 { font-size: 1.8rem; margin-bottom: .8rem; }
.thx-crd p { color: var(--ink-soft); margin-bottom: 1.8rem; }


.ftr {
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--accent-soft) 130%);
  border-top: 1px solid var(--line); margin-top: 2rem;
}
.ftr-top {
  max-width: 1180px; margin: 0 auto; padding: clamp(3rem, 6vw, 4.5rem) 1.5rem 2.5rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem;
}
.ftr-col h4 { font-size: .95rem; margin-bottom: 1.1rem; color: var(--ink); }
.ftr-col a { display: block; color: var(--ink-soft); font-size: .92rem; margin-bottom: .7rem; transition: color .3s var(--ease); }
.ftr-col a:hover { color: var(--accent-dark); }
.ftr-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; font-weight: 700; font-size: 1.1rem; }
.ftr-logo img { width: 34px; height: 34px; }
.ftr-brand p { color: var(--ink-soft); font-size: .92rem; max-width: 300px; }
.ftr-col p { color: var(--ink-soft); font-size: .9rem; margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.ftr-col p a { display: inline; margin: 0; }
.ftr-bottom {
  border-top: 1px solid var(--line); padding: 1.3rem 1.5rem; text-align: center;
  font-size: .85rem; color: var(--ink-faint);
}


@media (max-width: 1024px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 480px; margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr; }
  .zig-row { grid-template-columns: 1fr; }
  .zig-row.zig-rev .zig-media { order: 0; }
  .zig-row.zig-rev .zig-body { order: 0; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .info2-grid { grid-template-columns: 1fr; }
  .sty-in { grid-template-columns: 1fr; }
  .sty-visual { position: static; margin-bottom: 2rem; }
  .grid3 { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .grid3-tall { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
  .hero-facts { grid-template-columns: 1fr; }
  .cke-in { flex-direction: column; align-items: stretch; }
  .cke-btns { justify-content: flex-end; }
  .price-grid { grid-template-columns: 1fr; }
  .coll-grid { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr; }
  .sec-zig-alt { margin: 0 .8rem; }
  .cta-band { margin: 0 .8rem; }
}

@media (max-width: 480px) {
  .sec-in { padding: 0 1.1rem; }
  .hero-eyebrow { font-size: .74rem; }
  .btn { padding: .85rem 1.4rem; font-size: .9rem; }
  .thx-crd { padding: 2rem 1.4rem; }
}