:root {
  --bg: #fbf8f3;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #171717;
  --muted: #858585;
  --line: rgba(23, 23, 23, 0.08);
  --accent: #ff8d35;
  --accent-soft: #fff0e4;
  --mint: rgba(205, 248, 234, 0.55);
  --peach: rgba(255, 233, 210, 0.65);
  --shadow: 0 24px 60px rgba(28, 24, 18, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, var(--peach), transparent 20%),
    radial-gradient(circle at top right, var(--mint), transparent 24%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
input,
select,
textarea {
  appearance: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: #050505;
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(5, 5, 5, 0.14);
}

.button-secondary {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--line);
}

.site-shell {
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 18px 24px 44px;
}

.site-sidebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 6px 20px;
}

.brand-stack {
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy small {
  font-size: 0.78rem;
  color: var(--muted);
}

.site-sidebar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.sidebar-link {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--muted);
}

.sidebar-link.is-active {
  color: var(--text);
  font-weight: 700;
}

.sidebar-promo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sidebar-promo__eyebrow,
.footer-kicker,
.section-heading__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.sidebar-promo > p {
  display: none;
}

.mobile-topbar,
.mobile-nav {
  display: none;
}

.site-main {
  width: 100%;
}

.inner-page {
  display: grid;
  gap: 28px;
}

.page-shell,
.content-band {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-shell {
  position: relative;
}

.page-shell::before,
.content-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 235, 214, 0.65), transparent 20%),
    radial-gradient(circle at top right, rgba(215, 248, 234, 0.55), transparent 24%);
}

.page-hero-card,
.content-band__inner,
.contact-grid {
  position: relative;
  z-index: 1;
}

.page-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.7fr);
  gap: 36px;
  padding: 56px 56px 52px;
  align-items: end;
}

.page-hero-card h1 {
  margin: 12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-hero-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.page-intro,
.page-side-note p,
.process-card p,
.quote-card p,
.faq-card p,
.contact-summary p,
.detail-list li,
.site-footer p,
.site-footer a,
.field span,
.checkbox-field,
.contact-form-card,
.sidebar-promo__note {
  color: var(--muted);
  line-height: 1.75;
}

.page-side-note {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.content-band__inner {
  padding: 52px 56px;
}

.content-band--soft {
  background: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.process-grid,
.faq-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.process-grid--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card,
.quote-card,
.faq-card,
.contact-summary,
.contact-form-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(29, 25, 21, 0.05);
}

.process-card h3,
.quote-card h3,
.faq-card h3,
.contact-summary h2,
.contact-form-card h2 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  padding: 52px 56px;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  padding: 14px 16px;
}

.field textarea {
  min-height: 144px;
  resize: vertical;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 18px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.site-footer {
  margin-top: 28px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr;
  gap: 22px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
}

.site-footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .site-sidebar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sidebar-promo {
    width: 100%;
    justify-content: center;
  }

  .page-hero-card,
  .contact-grid,
  .process-grid,
  .process-grid--wide,
  .faq-grid,
  .testimonial-grid,
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .site-shell {
    padding: 14px 14px 30px;
  }

  .site-sidebar {
    display: none;
  }

  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 6px 18px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    display: grid;
    place-items: center;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    margin: 2px 0;
  }

  .mobile-nav {
    display: grid;
    gap: 10px;
    padding: 0 6px 18px;
  }

  .mobile-nav a {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line);
  }

  .mobile-nav a.is-active {
    background: #050505;
    color: #ffffff;
  }

  .page-hero-card,
  .content-band__inner,
  .contact-grid {
    padding: 28px 24px;
  }

  .page-hero-card,
  .contact-grid,
  .process-grid,
  .process-grid--wide,
  .faq-grid,
  .testimonial-grid,
  .form-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 24px;
  }
}

body.has-cookie-modal {
  overflow: hidden;
}

.cookie-slot,
[data-cookie-slot] {
  position: relative;
  z-index: 9999;
}

.cookie-slot .overlay,
[data-cookie-slot] .overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(6px);
}

.cookie-slot .dialog-box,
[data-cookie-slot] .dialog-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 520px);
  max-width: calc(100vw - 40px);
  padding: 28px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 24px 60px rgba(21, 21, 21, 0.18);
  text-align: left;
  z-index: 10000;
}

.cookie-slot .dialog-box h2,
[data-cookie-slot] .dialog-box h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #171717;
}

.cookie-slot .dialog-box p,
[data-cookie-slot] .dialog-box p {
  margin: 0;
  color: #777777;
  line-height: 1.7;
}

.cookie-slot .buttons,
[data-cookie-slot] .buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.cookie-slot .accept,
.cookie-slot .deny,
[data-cookie-slot] .accept,
[data-cookie-slot] .deny {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-slot .accept,
[data-cookie-slot] .accept {
  background: #050505;
  color: #ffffff;
}

.cookie-slot .deny,
[data-cookie-slot] .deny {
  background: #f3f0eb;
  color: #171717;
}

.cookie-slot .policy-link,
[data-cookie-slot] .policy-link {
  display: inline-block;
  margin-top: 16px;
  color: #171717;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .cookie-slot .dialog-box,
  [data-cookie-slot] .dialog-box {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .cookie-slot .buttons,
  [data-cookie-slot] .buttons {
    flex-direction: column;
  }

  .cookie-slot .accept,
  .cookie-slot .deny,
  [data-cookie-slot] .accept,
  [data-cookie-slot] .deny {
    width: 100%;
  }
}
