:root {
  --bg: #f7f1e7;
  --bg-soft: #fcf8f1;
  --surface: rgba(248, 243, 235, 0.88);
  --surface-strong: #fffdf9;
  --surface-dark: #295f43;
  --text: #223027;
  --text-soft: #667267;
  --line: rgba(30, 23, 19, 0.1);
  --accent: #d96f22;
  --accent-soft: #e58c4a;
  --moss: #295f43;
  --gold: #8aa08f;
  --shadow: 0 20px 60px rgba(34, 24, 16, 0.12);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(222, 143, 91, 0.34),
      transparent 32%
    ),
    radial-gradient(
      circle at top right,
      rgba(47, 108, 98, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(211, 162, 72, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, #f5e9da 0%, #edd9c1 100%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-shell {
  width: min(calc(100% - 32px), 1320px);
  margin: 20px auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 247, 239, 0.78),
      rgba(249, 238, 224, 0.72)
    ),
    rgba(255, 252, 247, 0.42);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: clip;
}

.site-shell--news {
  background:
    linear-gradient(
      180deg,
      rgba(255, 245, 235, 0.92),
      rgba(247, 235, 220, 0.92)
    ),
    rgba(255, 252, 247, 0.42);
}

.site-header,
.section,
.site-footer,
.trust-bar,
.hero {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0 24px;
}

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

.brand-mark__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, #f0d3bd, #d59f72);
  border: 1px solid rgba(30, 23, 19, 0.12);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark__text strong {
  font-size: 1rem;
}

.brand-mark__text span:last-child {
  color: var(--text-soft);
  font-size: 0.87rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text-soft);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 247, 239, 0.85);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font: inherit;
}

.nav-toggle__lines {
  display: grid;
  gap: 4px;
}

.nav-toggle__lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #223027;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--moss), #1b4d45);
  color: #f8f5ef;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  box-shadow: 0 12px 24px rgba(22, 15, 11, 0.12);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(22, 15, 11, 0.15);
}

.button--ghost {
  background: rgba(255, 245, 235, 0.82);
  color: var(--text);
  border: 1px solid rgba(30, 23, 19, 0.08);
  box-shadow: none;
}

.button--small {
  min-height: 44px;
  padding-inline: 1rem;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--text-soft);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  gap: 16px;
  min-height: 290px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      130deg,
      rgba(255, 243, 232, 0.94),
      rgba(255, 243, 232, 0.48)
    ),
    radial-gradient(
      circle at 78% 28%,
      rgba(222, 143, 91, 0.48),
      transparent 24%
    ),
    radial-gradient(
      circle at 62% 70%,
      rgba(47, 108, 98, 0.32),
      transparent 28%
    ),
    linear-gradient(
      125deg,
      rgba(255, 248, 242, 0.78),
      rgba(203, 219, 211, 0.28)
    );
  border: 1px solid rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  filter: blur(6px);
}

.hero::before {
  right: 6%;
  top: 10%;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(255, 227, 199, 0.82),
    rgba(255, 243, 230, 0)
  );
}

.hero::after {
  right: 16%;
  bottom: 8%;
  width: 210px;
  height: 90px;
  background: linear-gradient(
    140deg,
    rgba(191, 94, 52, 0.48),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(-12deg);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 252, 247, 0.78) 0%,
      rgba(255, 252, 247, 0.2) 54%,
      transparent 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23dac7b8' stroke-opacity='.35'%3E%3Cpath d='M580 30c-26 63-25 112 6 148 43 50 43 93 0 130-42 35-46 77-11 124 33 45 34 88 1 129-35 43-38 90-9 140'/%3E%3Cpath d='M635 0c-9 62 8 115 49 161 37 42 41 83 10 122-28 37-31 78-10 122 26 54 21 105-18 152'/%3E%3Cpath d='M710 20c11 43 35 78 71 106'/%3E%3C/g%3E%3C/svg%3E")
      right center / cover no-repeat;
  pointer-events: none;
}

.hero__content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero__content {
  align-self: center;
  max-width: 700px;
  padding: 2px 0;
}

.hero h1,
.section h2,
.contact-card h2,
.news-hero h1,
.feature-story h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.hero__lede,
.section-heading p,
.showcase-panel p,
.price-card p,
.marketing__content p,
.marketing__panel p,
.extra-card p,
.process-card p,
.contact-card p,
.feature-story p,
.story-card p,
.news-hero p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero__lede {
  max-width: 62ch;
  margin: 14px 0 0;
  font-size: 0.98rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.hero__points li {
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  background: rgba(255, 240, 225, 0.82);
  border: 1px solid rgba(30, 23, 19, 0.08);
  color: var(--text);
}

.hero-card {
  align-self: end;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(250, 240, 229, 0.88),
    rgba(240, 233, 222, 0.8)
  );
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(41, 29, 19, 0.08);
}

.hero-card__label,
.price-card__tag,
.feature-story__meta,
.story-card__meta {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card__grid {
  display: grid;
  gap: 18px;
}

.hero-card__grid article {
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 248, 241, 0.72);
  border: 1px solid rgba(30, 23, 19, 0.07);
}

.hero-card h2,
.service-card h3,
.showcase-panel h3,
.price-card h3,
.process-card h3,
.story-card h3 {
  margin: 0 0 10px;
}

.hero-card h2 {
  font-size: 1.1rem;
}

.hero-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.trust-bar p {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(240, 246, 243, 0.88),
    rgba(255, 242, 232, 0.86)
  );
  border: 1px solid rgba(30, 23, 19, 0.06);
  color: var(--text);
  text-align: center;
}

.section {
  padding: 86px 0 0;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

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

.section h2,
.contact-card h2,
.news-hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  max-width: 12ch;
}

.section-heading h2,
.contact-card h2 {
  margin-bottom: 16px;
}

.section-heading p:last-child,
.contact-card p,
.news-hero p {
  margin: 0;
}

.service-grid,
.pricing-grid,
.process-grid,
.news-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.price-card,
.process-card,
.story-card,
.feature-story,
.contact-card,
.extra-card,
.showcase-panel,
.marketing__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 23, 19, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 248, 241, 0.9),
    rgba(247, 236, 225, 0.82)
  );
  box-shadow: 0 18px 40px rgba(33, 22, 15, 0.05);
}

.service-card,
.process-card,
.story-card,
.price-card,
.feature-story,
.extra-card,
.showcase-panel,
.marketing__panel {
  padding: 28px;
}

.service-card__number,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(191, 94, 52, 0.14);
  color: var(--accent);
  font-weight: 800;
}

.service-card p,
.process-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.showcase__intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.showcase__panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.showcase-panel {
  min-height: 280px;
}

.showcase-panel h3 {
  font-size: 1.5rem;
}

.showcase-panel--light {
  background:
    linear-gradient(
      180deg,
      rgba(255, 245, 235, 0.96),
      rgba(246, 232, 216, 0.92)
    ),
    rgba(255, 255, 255, 0.66);
}

.showcase-panel--dark {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(160deg, #17312a, #0d201a);
  color: #f6f1ea;
}

.showcase-panel--dark p {
  color: rgba(246, 241, 234, 0.78);
}

.showcase-panel--accent {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.3),
      transparent 36%
    ),
    linear-gradient(150deg, #c96f43, #964729);
  color: #fff9f3;
}

.showcase-panel--accent p {
  color: rgba(255, 249, 243, 0.8);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.pricing-grid--compact {
  margin-top: 24px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 500;
}

.price-card p,
.story-card p,
.feature-story p {
  margin: 0;
}

.price-card ul,
.marketing__list {
  margin: 8px 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.price-card--featured {
  background:
    radial-gradient(
      circle at top right,
      rgba(191, 94, 52, 0.2),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 244, 234, 0.98),
      rgba(245, 231, 218, 0.94)
    );
  border-color: rgba(191, 94, 52, 0.22);
  transform: translateY(-10px);
}

.marketing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.marketing__content h2 {
  margin-bottom: 16px;
}

.marketing__panel {
  background:
    radial-gradient(
      circle at top left,
      rgba(47, 108, 98, 0.24),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      rgba(243, 249, 246, 0.96),
      rgba(235, 241, 236, 0.94)
    );
}

.marketing__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.marketing__stats article {
  padding: 22px;
  border-radius: 12px;
  background: rgba(252, 246, 239, 0.72);
  border: 1px solid rgba(30, 23, 19, 0.07);
}

.marketing__stats span {
  display: block;
  margin-bottom: 10px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
}

.extras__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.extra-card {
  min-height: 280px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 241, 230, 0.95),
      rgba(245, 230, 214, 0.92)
    ),
    rgba(255, 255, 255, 0.66);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: end;
  padding: 34px;
  background:
    radial-gradient(
      circle at top right,
      rgba(191, 94, 52, 0.24),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(245, 249, 246, 0.96),
      rgba(242, 229, 213, 0.96)
    );
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 82px 0 18px;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-soft);
}

.site-footer__meta {
  justify-self: end;
}

.news-hero {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 82px 0 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.news-feature {
  padding-top: 28px;
}

.feature-story {
  padding: 34px;
  background:
    radial-gradient(
      circle at top left,
      rgba(47, 108, 98, 0.2),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      rgba(248, 241, 233, 0.97),
      rgba(240, 230, 218, 0.93)
    );
}

.feature-story__meta,
.story-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.feature-story h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  max-width: 13ch;
}

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

.story-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 310px;
}

.story-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .section--split,
  .marketing,
  .contact-card,
  .site-footer,
  .news-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .showcase__panels,
  .process-grid,
  .pricing-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .extras__grid,
  .marketing__stats,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .contact-actions,
  .site-footer__meta {
    justify-self: start;
  }

  .site-footer {
    padding-top: 60px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 16px), 1320px);
    margin: 8px auto;
    padding: 14px;
    border-radius: 14px;
  }

  .site-header {
    position: relative;
    flex-wrap: wrap;
    padding-bottom: 16px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 245, 235, 0.96);
    border: 1px solid rgba(30, 23, 19, 0.08);
  }

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

  .hero,
  .section,
  .news-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.3rem);
  }

  .hero__lede,
  .hero__points li,
  .section-heading p:last-child,
  .feature-story p,
  .story-card p {
    font-size: 0.98rem;
  }

  .section,
  .news-hero {
    padding-top: 62px;
  }

  .showcase__panels,
  .pricing-grid,
  .process-grid,
  .news-grid,
  .service-grid,
  .extras__grid {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    transform: none;
  }

  .contact-card {
    padding: 26px;
  }
}

body {
  background: #f6f6f1;
}

.site-shell {
  width: 100%;
  margin: 0;
  padding: 0 0 28px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}

.site-shell--news {
  background: #ffffff;
}

.site-header,
.section,
.site-footer,
.trust-bar,
.hero,
.utility-bar__inner {
  width: min(100% - 40px, var(--container));
}

.utility-bar {
  border-bottom: 1px solid #e7e7df;
  background: #f2f4eb;
}

.utility-bar__inner {
  margin-inline: auto;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #5d6658;
  font-size: 0.92rem;
}

.utility-bar__inner p {
  margin: 0;
}

.utility-bar__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-header {
  padding: 24px 0;
  border-bottom: 1px solid #ecebe4;
  background: #ffffff;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark__icon {
  background: linear-gradient(145deg, #dce7df, #f1f5f1);
  color: #2f6c62;
  border: 1px solid #d5ddd6;
}

.site-nav a {
  color: #5c6159;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #9db62c;
}

.button {
  background: #222623;
  color: #ffffff;
  box-shadow: none;
}

.button--call-mobile {
  display: none;
  background: linear-gradient(135deg, #d96f22, #c45f17);
  color: #fffdf9;
}

.button--ghost {
  background: #ffffff;
  border-color: #d8d9d2;
  color: #222623;
}

.hero--studio {
  min-height: auto;
  padding: 42px 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  background: none;
  border: 0;
}

.hero--studio::before,
.hero--studio::after,
.hero__backdrop {
  display: none;
}

.hero__content--studio {
  max-width: 620px;
  padding: 0;
}

.hero--studio h1 {
  max-width: 11ch;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.02;
}

.hero__lede {
  margin-top: 18px;
  max-width: 56ch;
  color: #5f635d;
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.hero-checks li,
.feature-list li {
  position: relative;
  padding-left: 34px;
  color: #525952;
  line-height: 1.65;
}

.hero-checks li::before,
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #b4cf36;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 18px;
  align-content: start;
}

.hero-collage__small,
.hero-collage__large {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #e2dfd6;
  box-shadow: 0 12px 34px rgba(34, 29, 22, 0.08);
}

.hero-collage__small {
  min-height: 220px;
}

.hero-collage__large {
  min-height: 290px;
  grid-column: 1 / -1;
}

.hero-collage__small::before,
.hero-collage__large::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 20px;
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 12px 50%,
      rgba(255, 255, 255, 0.8) 0 3px,
      transparent 4px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12));
}

.hero-collage__small::after,
.hero-collage__large::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-collage__small--one::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14)),
    linear-gradient(135deg, #f4efe5 0%, #d5e4db 52%, #b7cabf 100%);
}

.hero-collage__small--two::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #e4d1bb 0%, #f5efe8 50%, #ddd0bf 100%);
}

.hero-collage__large::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #f3ede4 0%, #d7dcd6 38%, #9fb8c7 100%);
}

.hero-collage__small span,
.hero-collage__large span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #232621;
  font-weight: 700;
}

.hero-mini {
  position: absolute;
  inset: 22px 18px 62px;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 10px;
}

.hero-mini__browser {
  display: flex;
  gap: 6px;
}

.hero-mini__browser i,
.hero-mini__tiles i,
.hero-mini__stack i {
  display: block;
}

.hero-mini__browser i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
}

.hero-mini__screen {
  border-radius: 18px;
  border: 1px solid rgba(255, 253, 249, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-mini__screen--design {
  min-height: 72px;
  background:
    linear-gradient(180deg, rgba(34, 48, 39, 0.16), rgba(34, 48, 39, 0.04)),
    linear-gradient(135deg, rgba(248, 242, 233, 0.96), rgba(214, 231, 221, 0.8));
}

.hero-mini__screen--support {
  min-height: 54px;
  background:
    radial-gradient(
      circle at top right,
      rgba(217, 111, 34, 0.28),
      transparent 36%
    ),
    linear-gradient(
      135deg,
      rgba(255, 250, 244, 0.94),
      rgba(227, 237, 229, 0.84)
    );
}

.hero-mini__row {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.74);
}

.hero-mini__row--short {
  width: 68%;
}

.hero-mini__tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-mini__tiles i {
  min-height: 34px;
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.74);
}

.hero-mini__badge {
  justify-self: start;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: rgba(41, 95, 67, 0.9);
  color: #fffdf9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-mini__meter {
  height: 12px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.34);
}

.hero-mini__meter b {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #295f43, #d96f22);
}

.hero-mini__stack {
  display: grid;
  gap: 8px;
}

.hero-mini__stack i {
  height: 24px;
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.76);
}

.trust-bar {
  margin-top: 8px;
  gap: 16px;
}

.trust-bar p {
  border-radius: 18px;
  background: #f7f7f2;
  border: 1px solid #e7e7df;
  box-shadow: none;
}

.section {
  padding-top: 82px;
}

.section--adaptive {
  align-items: center;
  gap: 52px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 14px;
}

.device-stage {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  background: linear-gradient(120deg, #f8f8f4 0 45%, #b6c8da 45% 100%);
  overflow: hidden;
}

.device {
  position: absolute;
  border-radius: 18px;
  background: #111111;
  box-shadow: 0 24px 40px rgba(23, 18, 13, 0.16);
}

.device--monitor {
  right: 62px;
  top: 54px;
  width: 470px;
  height: 290px;
  padding: 16px 16px 44px;
}

.device--monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -68px;
  width: 140px;
  height: 82px;
  background: linear-gradient(180deg, #d5d5d5, #9f9f9f);
  clip-path: polygon(42% 0, 58% 0, 66% 50%, 100% 100%, 0 100%, 34% 50%);
  transform: translateX(-50%);
}

.device--tablet {
  left: 48px;
  bottom: 62px;
  width: 265px;
  height: 180px;
  padding: 12px;
}

.device--phone {
  right: 18px;
  bottom: 26px;
  width: 112px;
  height: 224px;
  padding: 10px;
  border-radius: 26px;
}

.device__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(180deg, #73848b 0 17%, #f7f7f4 17% 100%);
}

.device__screen::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 8%;
  right: 8%;
  height: 35%;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.1)),
    linear-gradient(135deg, #6d7877, #e6e6de);
}

.device__screen::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 26%;
  background: linear-gradient(
    90deg,
    #d9ddd7 0 22%,
    transparent 22% 26%,
    #d9ddd7 26% 48%,
    transparent 48% 52%,
    #d9ddd7 52% 74%,
    transparent 74% 78%,
    #d9ddd7 78% 100%
  );
}

.device__screen span {
  position: absolute;
  top: 8%;
  left: 8%;
  right: 8%;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
}

.service-grid--studio {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.service-card,
.price-card,
.showcase-panel,
.marketing__panel,
.extra-card,
.process-card,
.story-card,
.feature-story,
.contact-card {
  border-radius: 20px;
  box-shadow: none;
}

.service-card {
  border-top: 4px solid #bad438;
  background: #fafaf6;
}

.service-card__number {
  background: rgba(186, 212, 56, 0.16);
  color: #7f9322;
}

.showcase-panel {
  min-height: 250px;
  border-top: 4px solid #dce3cf;
}

.showcase-panel--light {
  background: #fbfbf8;
}

.showcase-panel--dark {
  background: #2d3431;
}

.showcase-panel--accent {
  background: linear-gradient(145deg, #b8ca4b, #dfe8b7);
  color: #263020;
}

.showcase-panel--accent p {
  color: rgba(38, 48, 32, 0.78);
}

.pricing-grid,
.process-grid {
  margin-top: 30px;
}

.price-card {
  background: #fcfcfa;
  border-top: 4px solid #dfe6d4;
}

.price-card--featured {
  transform: translateY(0);
  border-top-color: #bad438;
  background: #f7f9ef;
}

.marketing__panel {
  background: linear-gradient(180deg, #f7faf8, #f0f5f2);
}

.marketing__stats article {
  background: #ffffff;
}

.extra-card {
  background: #faf8f3;
}

.contact-card {
  background: #f7f7f2;
}

.site-footer {
  padding-top: 72px;
}

@media (max-width: 1100px) {
  .hero--studio,
  .section--adaptive,
  .marketing,
  .contact-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-collage,
  .service-grid--studio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-collage__large {
    min-height: 240px;
  }

  .device-stage {
    min-height: 380px;
  }

  .device--monitor {
    right: 46px;
    width: 400px;
    height: 246px;
  }
}

@media (max-width: 760px) {
  .site-shell,
  .site-shell--news {
    padding-bottom: 18px;
  }

  .site-header,
  .section,
  .site-footer,
  .trust-bar,
  .hero,
  .utility-bar__inner {
    width: min(100% - 24px, var(--container));
  }

  .utility-bar__inner {
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero--studio {
    gap: 24px;
    padding-top: 26px;
  }

  .hero--studio h1 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .hero-collage,
  .service-grid--studio {
    grid-template-columns: 1fr;
  }

  .hero-collage__small,
  .hero-collage__large {
    min-height: 200px;
  }

  .device-stage {
    min-height: 300px;
    border-radius: 22px;
  }

  .device--monitor {
    right: 18px;
    left: 18px;
    top: 22px;
    width: auto;
    height: 190px;
  }

  .device--monitor::after {
    bottom: -52px;
    width: 100px;
    height: 62px;
  }

  .device--tablet {
    left: 12px;
    bottom: 28px;
    width: 170px;
    height: 118px;
  }

  .device--phone {
    right: 10px;
    bottom: 18px;
    width: 84px;
    height: 168px;
  }
}

/* Final brand palette aligned to the Little Bungalow Designs logo */
:root {
  --bg: #f7f1e7;
  --bg-soft: #fcf8f1;
  --surface: rgba(248, 243, 235, 0.88);
  --surface-strong: #fffdf9;
  --surface-dark: #295f43;
  --text: #223027;
  --text-soft: #667267;
  --accent: #d96f22;
  --accent-soft: #e58c4a;
  --moss: #295f43;
  --gold: #8aa08f;
}

body {
  background: #f7f1e7;
}

.utility-bar {
  border-bottom-color: #e6dfd1;
  background: #f3ede3;
}

.utility-bar__inner {
  color: #5f6b61;
}

.site-header {
  border-bottom-color: #ece5d9;
}

.brand-mark__icon {
  background: linear-gradient(145deg, #2f6b49, #295f43);
  color: #fffdf9;
  border-color: #5f846d;
}

.brand-mark__logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 14px;
  background: #f7f1e7;
  box-shadow: 0 10px 22px rgba(41, 95, 67, 0.08);
  padding: 4px;
}

.brand-mark__text strong {
  color: #295f43;
}

.site-nav a {
  color: #5d695f;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #d96f22;
}

.site-nav .button,
.site-nav .button:hover,
.site-nav .button:visited {
  color: #f4f2ed;
}

.button {
  background: linear-gradient(135deg, #295f43, #234f38);
}

.button--ghost {
  background: #fffdf8;
  border-color: #d9d2c4;
  color: #223027;
}

.hero__lede {
  color: #667267;
}

.hero-checks li,
.feature-list li {
  color: #5e6a60;
}

.hero-checks li::before,
.feature-list li::before {
  content: "\2713";
  background: #d96f22;
}

.hero-collage__small,
.hero-collage__large {
  border-color: #ddd4c7;
}

.hero-collage__small--one::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14)),
    linear-gradient(135deg, #f6efe5 0%, #95a997 52%, #6e8c79 100%);
}

.hero-collage__small--two::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #ede2d3 0%, #f6f0e7 50%, #d97929 100%);
}

.hero-collage__large::after {
  background:
    linear-gradient(180deg, rgba(19, 31, 24, 0.06), rgba(19, 31, 24, 0.28)),
    linear-gradient(90deg, rgba(247, 241, 231, 0.06), rgba(247, 241, 231, 0)),
    url("assets/hero-dulverton.jpeg") center center / cover no-repeat;
}

.hero-collage__small span,
.hero-collage__large span {
  background: rgba(255, 253, 249, 0.92);
  color: #223027;
  box-shadow: 0 10px 24px rgba(41, 95, 67, 0.12);
}

.hero-collage__large span {
  background: rgba(34, 48, 39, 0.74);
  color: #f7f3ed;
}

.trust-bar p {
  background: #faf6ef;
  border-color: #e6dfd1;
}

.trust-bar p:nth-child(1) {
  background: linear-gradient(180deg, #f7f1e8, #fbf7f1);
}

.trust-bar p:nth-child(2) {
  background: linear-gradient(180deg, #fff2e6, #fbf7f1);
}

.trust-bar p:nth-child(3) {
  background: linear-gradient(180deg, #f1f6f0, #fbf7f1);
}

.promo-banner {
  width: min(100%, var(--container));
  margin: 6px auto 0;
}

.promo-banner p {
  margin: 0;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid #e3d4c2;
  background:
    radial-gradient(circle at right, rgba(217, 111, 34, 0.12), transparent 24%),
    linear-gradient(180deg, #fff4e8, #fbf6ef);
  color: #7a4b24;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 12px 24px rgba(41, 95, 67, 0.04);
}

.device-stage {
  background: linear-gradient(120deg, #fbf7f0 0 45%, #8ea392 45% 100%);
}

.device__screen {
  background: linear-gradient(180deg, #6b8977 0 17%, #fbf7f0 17% 100%);
}

.device__screen::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.1)),
    linear-gradient(135deg, #295f43, #d9dfd5);
}

.device__screen::after {
  background: linear-gradient(
    90deg,
    #d9dfd5 0 22%,
    transparent 22% 26%,
    #d9dfd5 26% 48%,
    transparent 48% 52%,
    #d9dfd5 52% 74%,
    transparent 74% 78%,
    #d9dfd5 78% 100%
  );
}

.service-card {
  border-top-color: #6b8977;
  background: #faf6ef;
}

.service-card__number {
  background: rgba(217, 111, 34, 0.16);
  color: #b65d1e;
}

.section-heading .eyebrow,
.showcase__intro .eyebrow,
.contact-copy .eyebrow {
  color: #d96f22;
}

.section-heading h2::after,
.showcase__intro h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d96f22, #8aa08f);
}

.service-card h3,
.price-card__tag,
.marketing__stats span,
.contact-methods strong,
.site-footer strong {
  color: #295f43;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.faq-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #ddd4c7;
  background: linear-gradient(180deg, #fbf7f1, #f5eee5);
  box-shadow: 0 16px 30px rgba(41, 95, 67, 0.05);
}

.faq-card h3 {
  margin: 0 0 10px;
  color: #295f43;
  font-size: 1.16rem;
}

.faq-card p {
  margin: 0;
  color: #667267;
  line-height: 1.65;
}

.portfolio-preview__intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.portfolio-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
}

.portfolio-preview__panel {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #ddd4c7;
  background: linear-gradient(180deg, #fbf7f1, #f6efe6);
  box-shadow: 0 18px 34px rgba(41, 95, 67, 0.05);
}

.portfolio-preview__panel--soft {
  background:
    radial-gradient(
      circle at top right,
      rgba(217, 111, 34, 0.1),
      transparent 26%
    ),
    linear-gradient(180deg, #f5f7f3, #eef3ec);
}

.portfolio-preview__label {
  margin: 0 0 18px;
  color: #6f786f;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.portfolio-preview__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-preview__card {
  display: grid;
  gap: 4px;
  min-height: 132px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 253, 249, 0.92),
    rgba(247, 240, 230, 0.9)
  );
  border: 1px solid #e2d8cc;
  box-shadow: 0 14px 26px rgba(41, 95, 67, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.portfolio-preview__card:hover {
  transform: translateY(-3px);
  border-color: #d96f22;
  box-shadow: 0 18px 30px rgba(41, 95, 67, 0.1);
}

.portfolio-preview__card strong {
  color: #295f43;
  font-size: 1rem;
}

.portfolio-preview__card span {
  color: #657166;
  line-height: 1.55;
}

.portfolio-preview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-preview__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid #ddd3c6;
  color: #405046;
  font-weight: 600;
}

.portfolio-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.showcase-panel {
  border-top-color: #cdd7ce;
}

.showcase-panel--light {
  background: #fbf7f1;
}

.showcase-panel--dark {
  background: #295f43;
}

.showcase-panel--accent {
  background: linear-gradient(145deg, #e57d2f, #f1b177);
  color: #2a241d;
}

.showcase-panel--accent p {
  color: rgba(42, 36, 29, 0.8);
}

.price-card {
  background: #fdfaf5;
  border-top-color: #d4ddd2;
}

.price-card--featured {
  border-top-color: #d96f22;
  background:
    radial-gradient(
      circle at top right,
      rgba(217, 111, 34, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #fcf1e7, #f7eadc);
}

.marketing__panel {
  background:
    radial-gradient(
      circle at top right,
      rgba(217, 111, 34, 0.1),
      transparent 24%
    ),
    linear-gradient(180deg, #f5f7f3, #eaf0e8);
}

.marketing__stats article {
  background: #fffdf9;
}

.extra-card {
  background: linear-gradient(180deg, #faf6ef, #f4efe6);
}

.contact-card {
  background:
    radial-gradient(
      circle at top right,
      rgba(217, 111, 34, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(41, 95, 67, 0.12),
      transparent 24%
    ),
    linear-gradient(145deg, #f7f1e8, #efe7db);
}

.hero--studio {
  padding: 24px 0 6px;
  gap: 28px;
}

.hero__lede {
  margin-top: 12px;
  max-width: 42ch;
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero__actions {
  margin-top: 16px;
}

.contact-form__footer .button {
  color: #f4f2ed;
}

.site-footer {
  border-top: 1px solid #e6dfd1;
}

.site-footer__links a:hover {
  color: #d96f22;
}

.contact-card {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-copy p {
  margin: 0;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid #ddd3c6;
}

.contact-methods span {
  color: #7b7368;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-methods strong {
  color: #295f43;
  font-size: 1rem;
}

.contact-actions {
  justify-content: flex-start;
}

.contact-form {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid #ddd3c6;
  box-shadow: 0 18px 34px rgba(49, 39, 27, 0.06);
}

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

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.contact-form label span {
  color: #4f5d53;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7cec0;
  border-radius: 12px;
  background: #fffdf9;
  color: #223027;
  font: inherit;
  padding: 0.95rem 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(217, 111, 34, 0.18);
  border-color: #d96f22;
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.contact-form__footer p {
  margin: 0;
  color: #6e776f;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .utility-bar {
    display: none !important;
  }

  .brand-mark__logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .site-header {
    gap: 12px;
    padding: 14px 0 10px;
    border-bottom: 0;
  }

  .site-header__actions {
    margin-left: auto;
    gap: 8px;
    align-self: flex-start;
  }

  .button--call-mobile {
    display: inline-flex;
    min-height: 38px;
    padding: 0.55rem 0.78rem;
    font-size: 0.84rem;
    line-height: 1;
  }

  .brand-mark {
    gap: 10px;
  }

  .brand-mark__text {
    gap: 2px;
  }

  .brand-mark__text strong {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .brand-mark__text span:last-child {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 10px;
    border-color: #ddd4c7;
    background: #fffaf3;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    margin-top: 8px;
    padding: 14px;
    border-radius: 16px;
    background: #fffaf3;
    border-color: #e5dccf;
    box-shadow: 0 14px 28px rgba(41, 95, 67, 0.08);
  }

  .site-nav a {
    font-size: 0.94rem;
  }

  .site-nav .button {
    margin-top: 4px;
  }

  .hero--studio {
    gap: 16px;
    padding-top: 14px;
  }

  .contact-card,
  .contact-form__grid,
  .portfolio-preview__grid {
    grid-template-columns: 1fr;
  }

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

  .portfolio-preview__cards {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }

  .site-nav {
    margin-top: 4px;
  }

  .contact-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hero__support {
  margin: 12px 0 0;
  color: #295f43;
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-collage__small {
  min-height: 180px;
}

.hero-collage__large {
  min-height: 360px;
}

.hero-collage__large::after {
  background:
    linear-gradient(180deg, rgba(19, 31, 24, 0.02), rgba(19, 31, 24, 0.18)),
    linear-gradient(90deg, rgba(247, 241, 231, 0.04), rgba(247, 241, 231, 0)),
    url("assets/hero-dulverton.jpeg") center center / cover no-repeat;
}

.hero-collage__large span {
  background: rgba(34, 48, 39, 0.68);
  color: #f7f3ed;
}

.review-grid,
.directory-grid,
.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.review-card,
.directory-card,
.landing-card,
.quick-answer {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #ddd4c7;
  background: linear-gradient(180deg, #fbf7f1, #f5eee5);
  box-shadow: 0 18px 34px rgba(41, 95, 67, 0.05);
}

.review-card__label,
.directory-card__label,
.landing-card__label,
.landing-links__label {
  margin: 0 0 14px;
  color: #6f786f;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.review-card h3,
.directory-card h3,
.landing-card h3,
.quick-answer h3 {
  margin: 0 0 10px;
  color: #295f43;
  font-size: 1.35rem;
}

.review-card p,
.directory-card p,
.landing-card p,
.quick-answer p {
  margin: 0;
  color: #667267;
  line-height: 1.7;
}

.directory-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.directory-card--accent {
  background:
    radial-gradient(
      circle at top right,
      rgba(217, 111, 34, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #faf4ec, #f4eadf);
}

.page-hero {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 82px 0 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  color: #6d776d;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #295f43;
}

.landing-links {
  display: grid;
  gap: 16px;
}

.landing-links__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-links__item {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e0d7ca;
  background: rgba(255, 253, 249, 0.92);
}

.landing-links__item strong {
  display: block;
  margin-bottom: 6px;
  color: #295f43;
}

.landing-links__item span {
  color: #667267;
  line-height: 1.6;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.landing-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: start;
}

.landing-summary__aside {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #ddd4c7;
  background: linear-gradient(180deg, #fbf7f1, #f5eee5);
}

.landing-summary__aside ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #667267;
  line-height: 1.8;
}

.landing-summary__aside li + li {
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .hero-collage__large {
    min-height: 300px;
  }

  .review-grid,
  .directory-grid,
  .landing-card-grid,
  .answer-grid,
  .landing-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-collage__large {
    min-height: 280px;
  }

  .review-grid,
  .directory-grid,
  .landing-card-grid,
  .landing-links__list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 54px 0 18px;
  }
}

body.modal-open {
  overflow: hidden;
}

.form-status {
  margin-bottom: 16px;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.form-status--success {
  border: 1px solid rgba(41, 95, 67, 0.18);
  background: rgba(232, 242, 235, 0.96);
  color: #295f43;
}

.form-status--error {
  border: 1px solid rgba(217, 111, 34, 0.18);
  background: rgba(254, 241, 232, 0.98);
  color: #a9531d;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 29, 24, 0.58);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  max-height: min(88vh, 820px);
  overflow: auto;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #ddd4c7;
  background: linear-gradient(180deg, #fffdf9, #f7f1e8);
  box-shadow: 0 28px 70px rgba(31, 25, 20, 0.18);
}

.modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #295f43;
  color: #fffdf9;
  font: inherit;
  font-size: 1.45rem;
  cursor: pointer;
}

.modal__content {
  color: #5f6b61;
  line-height: 1.75;
}

.modal__content h3 {
  margin: 22px 0 8px;
  color: #295f43;
  font-size: 1.05rem;
}

.modal__content p,
.modal__content ul {
  margin: 0 0 12px;
}

.modal__content ul {
  padding-left: 1.15rem;
}

.modal__content a {
  color: #d96f22;
  font-weight: 700;
}

@media (max-width: 760px) {
  .modal {
    padding: 16px;
  }

  .modal__panel {
    padding: 22px 18px;
    border-radius: 18px;
  }
}
