/* Data Synchive — layered sage theme */
:root {
  --ink: #1b3a32;
  --ink-soft: #2d4f45;
  --sage-deep: #4a6b5c;
  --sage: #7a9a88;
  --sage-mist: #d8e6de;
  --sage-wash: #eef5f1;
  --paper: #f7faf8;
  --accent: #c45c3e;
  --accent-deep: #9e432a;
  --highlight: #e8c57a;
  --white: #ffffff;
  --line: rgba(27, 58, 50, 0.12);
  --shadow: 0 18px 50px rgba(27, 58, 50, 0.12);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --max: 1120px;
  --narrow: 720px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(122, 154, 136, 0.28), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(232, 197, 122, 0.18), transparent 55%),
    linear-gradient(180deg, var(--sage-wash), var(--paper) 40%, var(--sage-mist));
  background-attachment: fixed;
  min-height: 100vh;
}

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

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--ink);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.25rem; margin: 0 0 0.5rem; }

p { margin: 0 0 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.btn--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(27, 58, 50, 0.22);
}

.btn--primary:hover {
  background: var(--ink-soft);
  color: var(--white);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--ink);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--highlight);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--highlight);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 248, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.site-header__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--ink) 0 45%, transparent 45% 55%, var(--accent) 55%),
    var(--sage-mist);
  box-shadow: inset 0 0 0 2px rgba(27, 58, 50, 0.15);
}

.site-header__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.site-header__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.site-header__toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease);
}

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

.site-header__list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 550;
  font-size: 0.95rem;
}

.site-header__list a:hover { color: var(--ink); }

.site-header__cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .site-header__toggle { display: flex; }

  .site-header__nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(247, 250, 248, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--space) 1.25rem;
    display: none;
  }

  .site-header__nav.is-open { display: block; }

  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* Hero home — layered */
.hero--home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__layer {
  position: absolute;
  inset: 0;
}

.hero__layer--one {
  background:
    linear-gradient(160deg, rgba(27, 58, 50, 0.92) 0%, rgba(45, 79, 69, 0.75) 45%, rgba(27, 58, 50, 0.55) 100%);
  z-index: 2;
}

.hero__layer--two {
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 197, 122, 0.35), transparent 35%),
    radial-gradient(circle at 15% 80%, rgba(196, 92, 62, 0.25), transparent 40%);
  z-index: 3;
  animation: drift 18s ease-in-out infinite alternate;
}

.hero__layer--photo {
  background:
    url("https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?w=1600&h=1200&fit=crop") center / cover no-repeat;
  z-index: 1;
  transform: scale(1.05);
  animation: slowZoom 22s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-2%, 1.5%, 0); }
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--space) clamp(3rem, 7vw, 5rem);
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  color: var(--white);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  animation: riseIn 0.9s var(--ease) both;
}

.hero__title {
  max-width: 16ch;
  color: var(--sage-mist);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  margin-bottom: 1rem;
  animation: riseIn 0.9s 0.1s var(--ease) both;
}

.hero__lead {
  max-width: 38rem;
  color: rgba(238, 245, 241, 0.9);
  font-size: 1.08rem;
  animation: riseIn 0.9s 0.2s var(--ease) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
  animation: riseIn 0.9s 0.3s var(--ease) both;
}

.hero__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero__actions .btn--primary {
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(196, 92, 62, 0.35);
}

.hero__actions .btn--primary:hover {
  background: var(--accent-deep);
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(216, 230, 222, 0.65), rgba(238, 245, 241, 0.4));
}

.section--cta-band {
  background:
    linear-gradient(120deg, var(--ink), var(--ink-soft));
  color: var(--sage-mist);
}

.section--cta-band .section__title,
.section--cta-band h2 { color: var(--white); }

.section--cta-band .btn--primary {
  background: var(--highlight);
  color: var(--ink);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
}

.section__inner--narrow {
  max-width: var(--narrow);
}

.section__title { max-width: 20ch; }

.section__lead {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.section__more {
  margin-top: 2rem;
  font-weight: 600;
}

.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 1rem;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background:
    radial-gradient(600px 240px at 90% 0%, rgba(232, 197, 122, 0.28), transparent 70%),
    radial-gradient(500px 200px at 0% 40%, rgba(122, 154, 136, 0.25), transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  position: relative;
}

.page-hero__inner p:last-child {
  max-width: 40rem;
  color: var(--ink-soft);
}

.offer-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}

.offer-spotlight img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  min-height: 320px;
}

.offer-spotlight__meta {
  color: var(--sage-deep);
  font-weight: 600;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-teaser {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-teaser:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-teaser img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-teaser h3,
.service-teaser p,
.service-teaser__meta {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.service-teaser h3 { margin-top: 1rem; }

.service-teaser h3 a {
  text-decoration: none;
  color: var(--ink);
}

.service-teaser__meta {
  color: var(--sage-deep);
  font-size: 0.92rem;
  font-weight: 600;
  padding-bottom: 1.25rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.pull-panel {
  background: var(--ink);
  color: var(--sage-mist);
  padding: 1.75rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.pull-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: rgba(232, 197, 122, 0.18);
}

.pull-panel blockquote {
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}

.pull-panel blockquote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--white);
}

.pull-panel footer {
  color: var(--sage);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.pull-panel a {
  color: var(--highlight);
  position: relative;
  z-index: 1;
}

/* Services list */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.service-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}

.service-row:hover { box-shadow: var(--shadow); }

.service-row--flagship {
  border-color: rgba(196, 92, 62, 0.35);
  background:
    linear-gradient(90deg, rgba(232, 197, 122, 0.18), rgba(255, 255, 255, 0.8));
}

.service-row__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.service-row__body {
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.service-row__body h2 a {
  text-decoration: none;
  color: var(--ink);
}

.service-row__meta {
  color: var(--sage-deep);
  font-weight: 600;
}

/* Detail */
.detail__hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--space);
  align-items: center;
}

.detail__hero-media img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
  box-shadow: var(--shadow);
}

.detail__summary {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.detail__meta {
  font-weight: 700;
  color: var(--sage-deep);
}

.detail__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  padding-bottom: 4rem;
}

.info-card {
  background: var(--ink);
  color: var(--sage-mist);
  padding: 1.75rem;
  border-radius: var(--radius);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.info-card h2 {
  color: var(--white);
  font-size: 1.1rem;
  margin-top: 1.25rem;
}

.info-card h2:first-child { margin-top: 0; }

.info-card ol {
  padding-left: 1.2rem;
}

.info-card__next {
  margin: 1.25rem 0;
  color: var(--highlight);
}

.info-card .btn--primary {
  background: var(--accent);
  width: 100%;
}

/* About */
.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.about-split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

/* Pricing */
.rates-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.rates-table th,
.rates-table td {
  text-align: left;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.rates-table th {
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
}

.rates-table tr:last-child td { border-bottom: 0; }

.pricing-notes {
  max-width: 42rem;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.review-card {
  margin: 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.review-card p {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.45;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--sage-deep);
  font-size: 0.92rem;
}

.review-card__service {
  color: var(--accent-deep);
  font-weight: 600;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.story-card {
  padding: 1.75rem;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.story-card__meta {
  color: var(--sage-deep);
  font-size: 0.95rem;
}

/* Blog */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.post-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease);
}

.post-card:hover { transform: translateY(-5px); }

.post-card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.post-card time {
  font-size: 0.85rem;
  color: var(--sage-deep);
  font-weight: 600;
}

.post-card h2 a {
  text-decoration: none;
  color: var(--ink);
}

.post__header {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--space) 0;
}

.post__cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.5rem 0 0;
  box-shadow: var(--shadow);
}

.post__body {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.post__body p {
  font-size: 1.08rem;
}

.post__cta {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--sage-mist);
  border-radius: 12px;
}

/* Return path */
.path-steps {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.path-step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease);
}

.path-step:hover { transform: translateX(6px); }

.path-step__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.path-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.path-cta img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.path-cta .btn { margin: 0.35rem 0.5rem 0.35rem 0; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-details {
  padding: 1.75rem;
  background: var(--ink);
  color: var(--sage-mist);
  border-radius: var(--radius);
}

.contact-details h2 { color: var(--white); }

.contact-details a { color: var(--highlight); }

.contact-details__address {
  word-break: break-word;
  font-weight: 600;
}

.contact-details__note {
  color: var(--sage);
  font-size: 0.95rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.form-field {
  margin-bottom: 1.15rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 154, 136, 0.25);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border-color: var(--accent);
}

.form-field__error {
  color: var(--accent-deep);
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}

.form-status.is-success {
  background: rgba(122, 154, 136, 0.25);
  color: var(--ink);
}

.form-status.is-error {
  background: rgba(196, 92, 62, 0.15);
  color: var(--accent-deep);
}

.prose-legal {
  max-width: 48rem;
}

.prose-legal h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.section--error {
  min-height: 60vh;
  display: grid;
  align-items: center;
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: 2rem;
  color: var(--sage-mist);
  overflow: hidden;
}

.site-footer__layers {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #163029, #1b3a32 50%, #243f37),
    radial-gradient(500px 240px at 10% 0%, rgba(232, 197, 122, 0.2), transparent 60%);
  background-blend-mode: normal;
}

.site-footer__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem var(--space) 2rem;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.35rem;
}

.site-footer__tag {
  color: var(--sage);
  max-width: 28rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

.site-footer__heading {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.85rem;
}

.site-footer__address {
  word-break: break-word;
}

.site-footer a {
  color: var(--sage-mist);
  text-decoration: none;
}

.site-footer a:hover { color: var(--highlight); }

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li { margin-bottom: 0.45rem; }

.site-footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--sage);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner[hidden] { display: none !important; }

.cookie-banner__panel {
  pointer-events: auto;
  max-width: 720px;
  width: 100%;
  background: rgba(247, 250, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  animation: riseIn 0.45s var(--ease);
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .offer-spotlight,
  .split,
  .detail__hero,
  .detail__grid,
  .about-split,
  .path-cta,
  .contact-layout,
  .site-footer__cols,
  .card-grid,
  .review-grid,
  .post-grid,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row__body { padding: 0 1.25rem 1.35rem; }

  .about-split img { position: static; }
  .info-card { position: static; }
}

@media (max-width: 600px) {
  .hero--home { min-height: 85vh; }
  .hero__brand { font-size: clamp(2.4rem, 12vw, 3.4rem); }
}
