:root {
  --bg: #eef1ef;
  --bg-soft: #e2e7e3;
  --surface: #f7f9f7;
  --ink: #2a2e2b;
  --ink-muted: #5c635c;
  --accent: #3d4a3f;
  --accent-soft: #b7c6b8;
  --line: #cfd6d0;
  --error: #8b3a3a;
  --success: #2f5d3a;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --shell: min(1120px, calc(100% - 2.5rem));
  --radius: 2px;
  --shadow: 0 18px 40px rgba(42, 46, 43, 0.08);
  --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-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(197, 209, 192, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 230, 223, 0.9), transparent 50%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 0 0 0.85rem;
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--surface);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 242, 237, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled,
.site-header {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  background: var(--accent);
  color: var(--surface) !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: #2f3931;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle-bars {
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 5px 0 var(--ink), 0 -5px 0 var(--ink);
}

.btn {
  display: inline-block;
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

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

.btn-primary:hover {
  background: #2f3931;
  color: var(--surface);
}

.btn-secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

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

.text-link {
  font-weight: 500;
}

.hero-home {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--surface);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroRise 1.4s var(--ease) both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 46, 43, 0.25) 0%, rgba(42, 46, 43, 0.72) 70%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 10vh, 6rem) 0 clamp(3rem, 8vh, 5rem);
  max-width: 38rem;
  margin-left: max(calc((100% - var(--shell)) / 2), 1.25rem);
  margin-right: auto;
  animation: copyIn 1s 0.2s var(--ease) both;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent-soft);
  margin-bottom: 0.75rem;
}

.hero-home h1 {
  color: var(--surface);
}

.hero-home .lede {
  color: rgba(255, 252, 247, 0.88);
  font-size: 1.1rem;
  max-width: 32rem;
}

.hero-action {
  margin-top: 1.5rem;
}

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

.page-hero .lede,
.lede {
  font-size: 1.15rem;
  max-width: 40rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.section {
  padding: var(--space) 0;
}

.section-soft {
  background: rgba(232, 230, 223, 0.55);
}

.section-intro {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.flagship {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--surface);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s var(--ease) both;
}

.flagship img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

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

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.offer-list a {
  display: block;
  text-decoration: none;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  color: inherit;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.offer-list a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.offer-list p {
  margin-bottom: 0.5rem;
}

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

.steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-muted);
}

.steps li {
  margin-bottom: 0.85rem;
}

.pull-quote {
  margin: 0;
  padding: 2rem;
  background: var(--surface);
  border-left: 3px solid var(--accent-soft);
  box-shadow: var(--shadow);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
  line-height: 1.4;
}

.pull-quote footer {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.cta-band {
  text-align: center;
  padding-bottom: 4rem;
}

.cta-band .lede,
.cta-band p {
  margin-inline: auto;
}

.service-grid,
.blog-list,
.review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

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

.service-card {
  display: grid;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.service-card img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.service-card > div {
  padding: 0 1.25rem 1.35rem;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-media img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.fact-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--bg-soft);
}

.fact-list div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.75rem;
}

.fact-list dt {
  font-weight: 600;
  color: var(--ink);
}

.fact-list dd {
  margin: 0;
  color: var(--ink-muted);
}

.next-step {
  margin: 1.5rem 0;
  color: var(--ink);
}

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

.about-aside img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: var(--surface);
}

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

.rates-table th {
  font-weight: 600;
  background: var(--bg-soft);
}

.review-list blockquote {
  margin: 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.review-list footer {
  display: grid;
  gap: 0.2rem;
  margin-top: 1rem;
}

.review-list cite {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

.method-stages {
  display: grid;
  gap: 2.5rem;
}

.method-stages article {
  animation: fadeUp 0.7s var(--ease) both;
}

.method-stages img {
  margin-top: 1rem;
  box-shadow: var(--shadow);
}

.blog-list a {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.75rem;
  transition: border-color 0.25s var(--ease);
}

.blog-list a:hover {
  border-color: var(--accent);
}

.blog-list img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.post-cover {
  width: 100%;
  margin: 0 0 2rem;
  box-shadow: var(--shadow);
}

.post-body p {
  font-size: 1.05rem;
}

.post-footer {
  margin: 2.5rem 0 1rem;
}

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

.contact-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 500;
  font-size: 0.92rem;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent-soft);
  outline-offset: 1px;
}

.field-error {
  color: var(--error);
  font-size: 0.85rem;
  margin: 0;
}

.form-status {
  margin: 0.5rem 0 0;
  padding: 0.75rem 0.9rem;
}

.form-status.is-success {
  background: rgba(47, 93, 58, 0.12);
  color: var(--success);
}

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

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

.error-page {
  min-height: 55vh;
  display: grid;
  align-content: center;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: #2f3530;
  color: rgba(255, 252, 247, 0.78);
}

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

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

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

.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--surface);
  margin-bottom: 0.5rem;
}

.footer-heading {
  font-weight: 600;
  color: var(--surface);
  margin-bottom: 0.65rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-address,
.footer-tag {
  color: rgba(255, 252, 247, 0.72);
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 252, 247, 0.12);
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(42, 46, 43, 0.08);
  padding: 1rem 0;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
}

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

@keyframes heroRise {
  from {
    transform: scale(1.06);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .flagship,
  .split,
  .detail-layout,
  .about-layout,
  .contact-layout,
  .service-grid,
  .footer-grid,
  .blog-list a {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .fact-list div {
    grid-template-columns: 1fr;
  }
}

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