:root {
  --bg: #f5f2ea;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #fffdf8;
  --ink: #1d3325;
  --muted: #5f7265;
  --line: rgba(33, 61, 42, 0.12);
  --green: #5c8a5f;
  --green-deep: #2f5b3b;
  --green-soft: #dcead9;
  --sage: #b9cfbc;
  --gold: #e9c98f;
  --blush: #dba7b0;
  --shadow: 0 22px 60px rgba(36, 59, 40, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 92.5%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 230, 196, 0.6), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(233, 201, 143, 0.22), transparent 20%),
    linear-gradient(180deg, #f8f7f2 0%, #eef3eb 40%, #f6f2e8 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -4rem;
  right: -5rem;
  background: rgba(133, 181, 137, 0.2);
}

body::after {
  bottom: 8rem;
  left: -6rem;
  background: rgba(219, 167, 176, 0.14);
}

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

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

p {
  margin: 0;
  line-height: 1.7;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

input,
textarea,
button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.sticky-quote {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(47, 91, 59, 0.28);
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250, 248, 242, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(41, 62, 39, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

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

.brand strong {
  font-size: 0.98rem;
}

.brand small,
.site-nav a,
.eyebrow,
.hero-points,
.service-icon,
.form-note,
.contact-panel li {
  color: var(--muted);
}

.brand small {
  font-size: 0.8rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-deep) 100%);
  color: white;
  font-weight: 700;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.header-cta {
  min-width: 11.5rem;
  padding-inline: 1rem;
}

.site-nav a {
  font-size: 0.95rem;
  transition: color 180ms ease;
}

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

.section {
  padding: 4rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
  min-height: calc(100vh - 8rem);
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.7rem, 5.7vw, 4.9rem);
  line-height: 1;
  max-width: 10.5ch;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.02;
  max-width: 12ch;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.08;
}

.hero-text,
.section-heading p,
.showcase-copy p,
.service-card p,
.story-copy > p,
.story-steps p,
.contact-panel p,
.contact-panel li,
.service-area-card p {
  max-width: 60ch;
  font-size: 0.98rem;
}

.hero-text {
  margin-top: 1.1rem;
}

.hero-phone {
  margin-top: 1.1rem;
  color: var(--green-deep);
  font-weight: 600;
}

.hero-phone a,
.contact-phone a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 35px rgba(59, 103, 70, 0.22);
}

.button-secondary {
  border-color: rgba(47, 91, 59, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

.hero-points {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.hero-points li,
.contact-panel li {
  position: relative;
  padding-left: 1rem;
}

.hero-points li::before,
.contact-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 34rem;
}

.hero-card,
.showcase,
.service-card,
.story-gallery figure,
.service-area-card,
.contact-panel,
.contact-form,
.trust-strip article {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-card img,
.showcase img,
.story-gallery img {
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  top: 2.6rem;
  right: 0;
  width: 72%;
  height: 27.5rem;
}

.hero-card-top {
  top: 0;
  left: 0;
  width: 34%;
  height: 11rem;
}

.hero-card-bottom {
  bottom: 0;
  left: 4%;
  width: 40%;
  height: 11.5rem;
}

.hero-note {
  position: absolute;
  right: 3%;
  bottom: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 35px rgba(28, 53, 33, 0.12);
  font-size: 0.88rem;
}

.hero-note-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.trust-strip article,
.showcase,
.service-card,
.service-area-card,
.contact-panel,
.contact-form {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.trust-strip strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.showcase {
  overflow: hidden;
  padding: 0;
}

.showcase img {
  aspect-ratio: 4 / 4.6;
}

.showcase-copy {
  padding: 1.15rem 1.15rem 1.35rem;
}

.showcase-copy h3 {
  margin-bottom: 0.8rem;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: var(--shadow);
}

.inline-cta strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  display: grid;
  gap: 1rem;
  min-height: 15rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(92, 138, 95, 0.1);
  font-size: 0.84rem;
  font-weight: 700;
}

.story {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 1.1rem;
  padding-right: 0.8rem;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.3rem;
}

.story-steps div {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
}

.story-steps strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.85rem;
}

.story-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 16rem;
}

.story-gallery figure:first-child {
  grid-row: span 2;
  min-height: 32.5rem;
}

.service-area {
  padding-top: 1rem;
}

.service-area-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at right top, rgba(233, 201, 143, 0.18), transparent 28%),
    radial-gradient(circle at left bottom, rgba(185, 207, 188, 0.35), transparent 28%),
    rgba(255, 253, 248, 0.75);
  padding: 1.7rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 1.35rem;
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-panel ul {
  display: grid;
  gap: 0.75rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.96rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(47, 91, 59, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 91, 59, 0.45);
  box-shadow: 0 0 0 4px rgba(92, 138, 95, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.form-note {
  min-height: 1.5rem;
  font-size: 0.94rem;
}

.form-note.success {
  color: var(--green-deep);
}

.form-note.error {
  color: #8f4b3e;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── Hamburger toggle (hidden on desktop) ── */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.45rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 280ms ease, opacity 200ms ease;
}

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

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

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

/* ── Tablet ── */

@media (max-width: 1080px) {
  .hero,
  .story,
  .contact-layout,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 31rem;
  }

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

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

  .story-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Mobile ── */

@media (max-width: 760px) {
  html {
    font-size: 100%;
  }

  .page-shell {
    width: min(calc(100% - 2.4rem), var(--max-width));
    padding-bottom: 5.5rem;
  }

  /* Header: brand left, toggle right, nav spans below */
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "nav   nav";
    align-items: center;
    gap: 0;
    border-radius: 22px;
    padding: 0.7rem 1rem;
  }

  .nav-toggle {
    display: flex;
    grid-area: toggle;
    justify-self: end;
  }

  .brand {
    grid-area: brand;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    grid-area: nav;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease, padding 320ms ease;
  }

  .site-nav.is-open {
    max-height: 16rem;
    padding-top: 0.6rem;
    padding-bottom: 0.3rem;
  }

  .site-nav a {
    padding: 0.65rem 0;
    border-top: 1px solid var(--line);
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    max-width: none;
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
    max-width: none;
  }

  /* Hero visual: stack cards instead of absolute positioning */
  .hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    min-height: auto;
  }

  .hero-card {
    position: static;
    border-radius: var(--radius-lg);
  }

  .hero-card-main {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    max-height: 22rem;
  }

  .hero-card-top,
  .hero-card-bottom {
    width: 100%;
    height: 10rem;
  }

  .hero-note {
    position: static;
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
    font-size: 0.84rem;
  }

  /* Grids → single column */
  .trust-strip,
  .service-grid,
  .story-gallery,
  .story-steps,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .story-gallery figure {
    min-height: 14rem;
  }

  .story-gallery figure:first-child {
    grid-row: auto;
    min-height: 18rem;
  }

  .service-card {
    min-height: auto;
  }

  /* Inline CTA stack */
  .inline-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .inline-cta .button {
    width: 100%;
  }

  /* Contact */
  .contact-panel,
  .contact-form {
    padding: 1.1rem;
  }

  /* Sticky CTA */
  .sticky-quote {
    display: inline-flex;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    justify-content: center;
    font-size: 1rem;
  }
}

/* ── Very small screens ── */

@media (max-width: 400px) {
  .page-shell {
    width: calc(100% - 1.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .brand-mark {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 0.85rem;
  }

  .hero-card-top,
  .hero-card-bottom {
    height: 8rem;
  }

  .showcase-copy {
    padding: 0.9rem;
  }

  .service-area-card {
    padding: 1.2rem;
  }
}
