:root {
  --bg: #eef5f8;
  --bg-deep: #d7e3ea;
  --surface: rgba(255, 255, 255, 0.58);
  --surface-strong: rgba(255, 252, 245, 0.88);
  --text: #24313a;
  --muted: #5f6d77;
  --line: rgba(71, 93, 109, 0.18);
  --amber: #cb9126;
  --amber-deep: #885a14;
  --ice: #f9fdff;
  --shadow: 0 24px 60px rgba(70, 86, 100, 0.14);
  --radius: 26px;
  --font-display: "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(255, 214, 135, 0.52), transparent 28%),
    radial-gradient(circle at right center, rgba(198, 220, 232, 0.65), transparent 32%),
    linear-gradient(180deg, #f7fbfd 0%, #e8f0f4 48%, #f9f5ea 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 8px);
}

a {
  color: var(--amber-deep);
}

main {
  overflow: clip;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(238, 245, 248, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark__orb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffe6a8 0%, #cb9126 52%, #845913 100%);
  box-shadow: 0 0 0 7px rgba(255, 247, 221, 0.55);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  color: var(--amber-deep);
}

.nav-toggle {
  display: none;
}

.hero,
.page-hero {
  padding: 72px 0 32px;
}

.hero-grid,
.contact-panel,
.split-panel,
.process-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-card,
.page-hero .shell,
.contact-form,
.service-detail,
.timeline article,
.blog-card,
.post-card,
.cta-panel,
.legal .narrow,
.cookie-banner__inner {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy,
.hero-card,
.page-hero .shell,
.contact-form,
.service-detail,
.timeline article,
.blog-card,
.post-card,
.cta-panel,
.cookie-banner__inner {
  border-radius: var(--radius);
}

.hero-copy,
.hero-card__body,
.page-hero .shell,
.contact-form,
.service-detail,
.timeline article,
.blog-card div,
.post-card div,
.cta-panel,
.legal .narrow,
.cookie-banner__inner {
  padding: 28px;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-panel h2,
.service-detail h2,
.blog-card h2,
.post-card h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  margin: 0 0 16px;
}

.eyebrow,
.meta {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.lead {
  font-size: 1.1rem;
  color: #31404a;
}

.hero-actions,
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(155, 105, 20, 0.26);
  background: linear-gradient(135deg, #f9f2dc 0%, #d9a43b 62%, #b57f22 100%);
  color: #34250d;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, #fff8e9 0%, #efb94d 62%, #bb7f15 100%);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.46);
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.metric,
.price {
  font-weight: 700;
  color: var(--amber-deep);
}

.section {
  padding: 24px 0 48px;
}

.section-heading {
  margin-bottom: 24px;
}

.card-grid,
.blog-grid,
.service-detail-grid {
  display: grid;
  gap: 24px;
}

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

.service-card,
.blog-card,
.service-detail,
.post-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.service-card__body {
  padding: 22px;
}

.section--frost {
  position: relative;
}

.section--frost::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto 15%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 223, 154, 0.45), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.testimonial-stack {
  display: grid;
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

.post-list,
.timeline {
  display: grid;
  gap: 20px;
}

.post-card {
  display: grid;
  grid-template-columns: 260px 1fr;
}

.section--contact {
  padding-bottom: 72px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(94, 108, 120, 0.28);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font: inherit;
}

.form-status,
.inline-error {
  min-height: 1.5em;
  margin: 0;
  color: #7e2418;
}

.form-status.is-success {
  color: #256743;
}

.service-detail {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: center;
}

.blog-grid,
.service-detail-grid,
.timeline {
  grid-template-columns: 1fr;
}

.article-page {
  padding-bottom: 72px;
}

.article-cover {
  margin: 24px 0;
}

.article-body p {
  font-size: 1.06rem;
}

.article-cta {
  padding-top: 16px;
  font-weight: 700;
}

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

.timeline article span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #f8efcf, #ca8c16);
  font-weight: 700;
}

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

.legal .narrow {
  border-radius: var(--radius);
}

.site-footer {
  padding: 0 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(36, 49, 58, 0.9);
  color: #eef5f8;
}

.footer-grid a {
  color: #ffe9b9;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 18px;
  z-index: 20;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 900px) {
  .card-grid,
  .hero-grid,
  .contact-panel,
  .split-panel,
  .process-intro,
  .service-detail,
  .post-card,
  .timeline,
  .footer-grid,
  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 252, 245, 0.95);
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    min-height: 42px;
    padding: 0 16px;
  }

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