:root {
  --ink: #26312d;
  --muted: #5f7168;
  --paper: #fffaf2;
  --paper-strong: #fffdf8;
  --mist: #edf5f0;
  --sage: #6f927e;
  --sage-dark: #496e5b;
  --clay: #c97663;
  --rose: #f1d5ca;
  --gold: #d5a251;
  --blue: #607f99;
  --line: rgba(38, 49, 45, 0.14);
  --shadow: 0 22px 55px rgba(38, 49, 45, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(237, 245, 240, 0.84), rgba(255, 250, 242, 0.94) 42%, #fffdf8 100%),
    repeating-linear-gradient(90deg, rgba(111, 146, 126, 0.045) 0 1px, transparent 1px 118px);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(1.95rem, 4vw, 3.55rem);
}

h2 {
  font-size: clamp(1.35rem, 2.35vw, 1.95rem);
}

h3 {
  font-size: 1.12rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner,
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-radius: 0;
  background: url("../images/logo.png") center / contain no-repeat;
  animation: none;
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

.brand-mark::after {
  inset: 14px;
  background: rgba(255, 250, 242, 0.92);
}

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

.brand-text strong {
  font-size: 0.96rem;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.84rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.primary-nav a,
.subnav a,
.button,
.ghost-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary-nav a {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.primary-nav a:hover,
.primary-nav a.active,
.subnav a:hover,
.subnav a.active {
  color: var(--ink);
  background: rgba(111, 146, 126, 0.14);
}

.subnav-wrap {
  border-top: 1px solid rgba(38, 49, 45, 0.08);
}

.subnav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 0 10px;
}

.subnav a {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  white-space: nowrap;
}

.hero,
.page-hero,
.split-section,
.contact-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 116px);
  padding: 48px 0 64px;
}

.hero.hero-image-large {
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 690px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.24rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.ghost-button {
  padding: 11px 16px;
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
}

.button {
  color: #fffdf8;
  background: var(--sage-dark);
  box-shadow: 0 12px 26px rgba(73, 110, 91, 0.24);
}

.button:hover {
  transform: translateY(-2px);
  background: #385b49;
}

.ghost-button {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.ghost-button:hover {
  transform: translateY(-2px);
  border-color: rgba(73, 110, 91, 0.32);
  background: #fffdf8;
}

.hero-media,
.photo-frame {
  position: relative;
}

.hero-media img,
.photo-frame img,
.map-frame iframe {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 16 / 11;
  object-fit: contain;
  background: #fffdf8;
}

.focus-rings {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 176px;
  height: 176px;
  pointer-events: none;
}

.focus-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(73, 110, 91, 0.36);
  border-radius: 50%;
  animation: ring-focus 5.8s ease-in-out infinite;
}

.focus-rings span:nth-child(2) {
  inset: 22px;
  border-color: rgba(201, 118, 99, 0.34);
  animation-delay: 0.9s;
}

.focus-rings span:nth-child(3) {
  inset: 45px;
  border-color: rgba(96, 127, 153, 0.34);
  animation-delay: 1.8s;
}

.bilateral-track {
  position: relative;
  width: min(430px, 100%);
  height: 16px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(73, 110, 91, 0.16), rgba(96, 127, 153, 0.18), rgba(201, 118, 99, 0.16));
  overflow: hidden;
}

.bilateral-track::before,
.bilateral-track::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-dark);
  animation: bilateral 3.4s ease-in-out infinite;
}

.bilateral-track::after {
  background: var(--clay);
  animation-delay: 1.7s;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(237, 245, 240, 0.78), rgba(255, 250, 242, 0.74)),
    url("../images/motif-bilateral.png") center / cover;
}

.section-head {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 28px;
  display: grid;
  gap: 12px;
}

.section-head p {
  max-width: 750px;
  color: var(--muted);
}

.grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.price-card,
.blog-card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 34px rgba(38, 49, 45, 0.08);
}

.card,
.price-card,
.blog-card {
  overflow: hidden;
}

.card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body,
.price-card,
.blog-card .card-body,
.info-panel {
  padding: 22px;
}

.card p,
.price-card p,
.blog-card p,
.info-panel p,
li {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sage-dark);
  font-weight: 750;
  text-decoration: none;
}

.card-link:hover {
  color: var(--clay);
}

.page-hero {
  padding: 62px 0 38px;
}

.page-hero .lead {
  max-width: 830px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 40px;
  padding: 48px 0 78px;
}

.split-section.media-large {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
}

.presentation-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 42px;
  padding: 36px 0 76px;
}

.presentation-copy {
  display: grid;
  gap: 16px;
}

.presentation-list {
  margin: 0;
  padding-left: 1.15rem;
  columns: 2;
  column-gap: 34px;
}

.presentation-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.presentation-label {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 14px 30px rgba(38, 49, 45, 0.08);
}

.presentation-label img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
}

.presentation-label div {
  display: grid;
  gap: 10px;
}

.presentation-label p {
  color: var(--muted);
}

.presentation-label .ghost-button {
  width: fit-content;
  margin-top: 2px;
}

.presentation-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.presentation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-flow {
  display: grid;
  gap: 18px;
}

.copy-flow ul,
.check-list {
  margin: 0;
  padding-left: 1.1rem;
}

.check-list {
  display: grid;
  gap: 10px;
}

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

.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(38, 49, 45, 0.12);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-feature {
  padding: 18px;
  border-left: 4px solid var(--sage);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
}

.mini-feature:nth-child(2n) {
  border-left-color: var(--clay);
}

.mini-feature:nth-child(3n) {
  border-left-color: var(--blue);
}

.price-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.price {
  margin: 14px 0 10px;
  color: var(--sage-dark);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.price-card h2 {
  font-size: 1.15rem;
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(111, 146, 126, 0.14);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  padding: 34px 0 78px;
}

.map-frame iframe {
  min-height: 420px;
  border: 0;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.detail-line {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-line strong {
  display: block;
  margin-bottom: 4px;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.form-section {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 78px;
}

.retractation-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 34px rgba(38, 49, 45, 0.08);
}

.field-help {
  margin-top: -8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-error {
  color: #9f3c2f;
  font-weight: 700;
}

label {
  color: var(--ink);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(38, 49, 45, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-result {
  max-width: 720px;
  margin: 80px auto;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent input {
  width: auto;
  margin-top: 7px;
}

.blog-meta {
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 34px rgba(38, 49, 45, 0.08);
}

.review-stars {
  color: var(--gold);
  font-size: 1.28rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.review-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.review-card span {
  color: var(--sage-dark);
  font-size: 0.86rem;
  font-weight: 750;
}

.reviews-marquee {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.reviews-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: reviews-scroll 36s linear infinite;
}

.reviews-track .review-card {
  width: min(360px, calc(100vw - 54px));
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.video-embed {
  display: grid;
  gap: 16px;
}

.video-launch,
.video-frame,
.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-launch {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: #fffdf8;
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}

.video-launch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 220ms ease, opacity 220ms ease;
}

.video-launch:hover img {
  transform: scale(1.03);
  opacity: 0.56;
}

.video-launch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(38, 49, 45, 0.78));
}

.play-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.94);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(38, 49, 45, 0.28);
}

.play-icon::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 23px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--clay);
}

.video-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.video-copy strong {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.1;
}

.video-copy small,
.video-fallback {
  font-size: 0.94rem;
}

.video-fallback {
  color: var(--muted);
}

.video-fallback a {
  color: var(--sage-dark);
  font-weight: 750;
}

.video-embed iframe {
  display: block;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fffdf8;
}

.video-embed .button {
  width: fit-content;
}

.cta-band {
  margin-top: 24px;
  padding: 44px;
  color: #fffdf8;
  background: linear-gradient(135deg, #496e5b, #607f99 58%, #c97663);
  border-radius: var(--radius);
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.86);
  margin-top: 12px;
}

.cta-band .ghost-button {
  color: #fffdf8;
  border-color: rgba(255, 253, 248, 0.48);
  background: rgba(255, 253, 248, 0.12);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.78);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.corner-badge {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: clamp(82px, 10vw, 120px);
  height: clamp(82px, 10vw, 120px);
  display: block;
  border-radius: 50%;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(38, 49, 45, 0.2);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.corner-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 42px rgba(38, 49, 45, 0.26);
}

.corner-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes slow-breathe {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.055) rotate(6deg);
  }
}

@keyframes ring-focus {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.82;
  }
}

@keyframes bilateral {
  0%,
  100% {
    left: 6px;
  }
  50% {
    left: calc(100% - 14px);
  }
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (max-width: 1050px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner,
  .hero,
  .hero.hero-image-large,
  .split-section,
  .split-section.media-large,
  .contact-grid,
  .presentation-section {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .grid,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .container,
  .hero,
  .page-hero,
  .split-section,
  .contact-grid,
  .section-head,
  .grid,
  .price-grid,
  .subnav,
  .footer-inner,
  .presentation-section,
  .reviews-marquee {
    width: min(100% - 22px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .primary-nav a {
    padding: 8px 9px;
    font-size: 0.88rem;
  }

  .grid,
  .price-grid,
  .photo-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .presentation-list {
    columns: 1;
  }

  .presentation-label {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.75rem, 10vw, 2.55rem);
  }

  .section {
    padding: 56px 0;
  }

  .cta-band {
    padding: 28px 22px;
  }

  .focus-rings {
    right: 12px;
    bottom: -34px;
    width: 132px;
    height: 132px;
  }

  .reviews-marquee {
    width: min(100% - 22px, var(--max));
    mask-image: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reviews-track {
    animation: none;
  }
}
