:root {
  --bg: #e7eef3;
  --bg-alt: #d7e2ea;
  --surface: #f7fafc;
  --ink: #15202b;
  --muted: #4d5f6e;
  --accent: #c45c26;
  --accent-deep: #9a4519;
  --line: #b7c6d2;
  --footer: #15202b;
  --footer-text: #d7e2ea;
  --success: #1f6b4a;
  --error: #9b2c2c;
  --shadow: 0 18px 40px rgba(21, 32, 43, 0.08);
  --radius: 6px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --space: clamp(1rem, 2vw, 1.75rem);
  --wrap: 1120px;
  --narrow: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(196, 92, 38, 0.12), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(77, 95, 110, 0.14), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #f2f6f9 48%, var(--bg-alt) 100%);
  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;
}

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

h1,
h2,
h3,
.site-header__brand,
.hero__brand,
.eyebrow,
.btn,
.site-nav {
  font-family: var(--font-display);
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin: 0 0 0.75rem;
}

h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.2rem;
  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;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - 2rem, var(--narrow));
}

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

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.75rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-deep);
  color: #fff;
}

.btn--secondary {
  background: var(--ink);
  color: #fff;
}

.btn--secondary:hover {
  background: #243447;
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(231, 238, 243, 0.86);
  border-bottom: 1px solid rgba(183, 198, 210, 0.7);
  animation: slide-down 480ms ease both;
}

.site-header__inner {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.site-header__brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-header__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
}

.site-header__toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

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

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--accent-deep);
}

.site-nav__cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
}

.site-nav__cta:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 4.25rem);
  background: var(--ink);
  color: #f3f7fa;
  overflow: hidden;
}

.hero__media {
  position: relative;
  min-height: 320px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  animation: fade-rise 900ms ease both;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 32, 43, 0.15), rgba(21, 32, 43, 0.55));
}

.hero__content {
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fade-rise 700ms ease 120ms both;
}

.hero__brand {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}

.hero__title {
  color: #fff;
  max-width: 18ch;
}

.hero__lede {
  color: #c9d6e0;
  max-width: 36ch;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 1rem;
}

.page-hero__lede {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.12rem;
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.section--tight {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section--alt {
  background: rgba(247, 250, 252, 0.72);
  border-block: 1px solid rgba(183, 198, 210, 0.55);
}

.section--cta {
  text-align: center;
}

.section__lede {
  max-width: 52ch;
  color: var(--muted);
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.feature-split__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-split__figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.check-list,
.plain-list,
.step-list {
  padding-left: 1.2rem;
  margin: 0 0 1.25rem;
}

.check-list li,
.plain-list li,
.step-list li {
  margin-bottom: 0.55rem;
}

.offer-grid,
.post-grid,
.reviews-grid,
.people-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

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

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

.offer-card,
.post-card,
.review-card,
.quote-card,
.person {
  background: var(--surface);
  border: 1px solid rgba(183, 198, 210, 0.8);
  border-radius: var(--radius);
  overflow: hidden;
}

.offer-card,
.post-card,
.person {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.offer-card:hover,
.post-card:hover,
.person:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.offer-card img,
.post-card img,
.person img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.offer-card h3,
.offer-card p,
.post-card__body,
.person h3,
.person p {
  padding-inline: 1rem;
}

.offer-card h3,
.person h3 {
  padding-top: 1rem;
}

.offer-card p,
.person p {
  color: var(--muted);
  padding-bottom: 1.1rem;
}

.post-card__body {
  padding: 1rem 1rem 1.25rem;
}

.post-card h2 {
  font-size: 1.2rem;
}

.post-card a {
  color: inherit;
  text-decoration: none;
}

.quote-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin: 1.25rem 0;
}

.quote-card,
.review-card {
  margin: 0;
  padding: 1.35rem 1.4rem;
}

.quote-card p,
.review-card p {
  font-size: 1.08rem;
}

.quote-card footer,
.review-card footer {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-card--muted {
  background: #edf3f7;
}

.service-list {
  display: grid;
  gap: 1.5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(183, 198, 210, 0.8);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0.75rem;
}

.service-row--flagship {
  border-color: rgba(196, 92, 38, 0.45);
  box-shadow: var(--shadow);
}

.service-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.detail-hero {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.detail-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  position: sticky;
  top: 5.5rem;
  align-self: start;
}

.detail-aside .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.rate-table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

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

.rate-table th {
  font-family: var(--font-display);
  background: #edf3f7;
  font-weight: 600;
}

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

.prose-figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.prose-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.prose h2 {
  margin-top: 2rem;
}

.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.process-timeline li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.25rem 4.5rem;
  position: relative;
  animation: fade-rise 600ms ease both;
}

.process-timeline li:nth-child(2) { animation-delay: 80ms; }
.process-timeline li:nth-child(3) { animation-delay: 160ms; }
.process-timeline li:nth-child(4) { animation-delay: 240ms; }

.process-timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  display: grid;
  place-items: center;
}

.cta-band {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: var(--ink);
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
}

.cta-band p {
  color: #c9d6e0;
  margin: 0;
}

.cta-band h2 {
  margin-bottom: 0.35rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

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

.form-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(196, 92, 38, 0.35);
  border-color: var(--accent);
}

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

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
}

.form-status.is-success {
  background: rgba(31, 107, 74, 0.12);
  color: var(--success);
}

.form-status.is-error {
  background: rgba(155, 44, 44, 0.12);
  color: var(--error);
}

.person img {
  aspect-ratio: 1;
}

.site-footer {
  background: var(--footer);
  color: var(--footer-text);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.site-footer a {
  color: #f0f5f8;
}

.site-footer__inner {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.site-footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.site-footer__tag {
  color: #9eb0bf;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.site-footer li {
  margin-bottom: 0.35rem;
}

.site-footer__copy {
  width: min(100% - 2rem, var(--wrap));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa3b4;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  animation: fade-rise 420ms ease both;
}

.cookie-banner__inner {
  width: min(100%, 820px);
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.15rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.island-error {
  margin: 0;
  padding: 0.75rem 1rem;
  background: rgba(155, 44, 44, 0.12);
  color: var(--error);
  text-align: center;
  font-family: var(--font-display);
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero,
  .feature-split,
  .offer-grid,
  .post-grid,
  .people-grid,
  .detail-grid,
  .service-row,
  .contact-layout,
  .site-footer__inner,
  .quote-row {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .hero__media {
    min-height: 42vh;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 250, 252, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
  }

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

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

  .site-nav a {
    display: block;
    padding: 0.65rem 0.4rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
