﻿:root {
  --purple: #593b78;
  --purple-dark: #281c38;
  --gold: #d0a139;
  --gold-soft: #f4d982;
  --green: #a8cc54;
  --mint: #e8f3df;
  --paper: #fff9ee;
  --white: #ffffff;
  --ink: #1e1724;
  --muted: #665b6d;
  --line: rgba(40, 28, 56, 0.13);
  --shadow: 0 22px 70px rgba(40, 28, 56, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 86% 12%, rgba(168, 204, 84, 0.26), transparent 28rem),
    linear-gradient(180deg, #fff9ee 0%, #f7f1e7 50%, #fff 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.75rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 249, 238, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 800;
  color: var(--purple-dark);
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  gap: clamp(0.9rem, 2vw, 2rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 12px 26px rgba(89, 59, 120, 0.24);
}

.button.secondary {
  color: var(--purple-dark);
  background: var(--gold-soft);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  min-height: calc(100vh - 76px);
  padding: clamp(1.5rem, 4vw, 4.5rem) clamp(1rem, 4vw, 4.5rem) 2rem;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 9% auto auto -12%;
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  content: "";
  background: radial-gradient(circle, rgba(244, 217, 130, 0.55), rgba(168, 204, 84, 0.18) 58%, transparent 70%);
  border-radius: 50%;
}

.hero-media {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 54vh;
}

.hero-media img {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(40, 28, 56, 0.28));
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--purple-dark);
  line-height: 0.95;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3.3rem, 10vw, 8.2rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

h3 {
  margin-bottom: 0.7rem;
  color: var(--purple-dark);
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(1rem, 4vw, 4.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  transform: translateY(-1rem);
}

.trust-strip div {
  min-height: 116px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
}

.trust-strip strong,
.trust-strip span,
.feature-list strong,
.feature-list span {
  display: block;
}

.trust-strip strong,
.feature-list strong {
  margin-bottom: 0.35rem;
  color: var(--purple-dark);
  font-size: 1rem;
}

.trust-strip span,
.feature-list span,
.service-card p,
.experience-copy p,
address {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
}

.intro {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

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

.service-card {
  min-height: 280px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8e7 100%);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: var(--purple-dark);
  background: var(--green);
  font-weight: 900;
}

.experience {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: var(--mint);
}

.experience-copy p {
  max-width: 64ch;
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list div {
  padding: 1.25rem;
  border-left: 6px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.72);
}

.location {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  background: var(--purple-dark);
}

.location .eyebrow,
.location h2,
.location address {
  color: var(--white);
}

address {
  font-style: normal;
  font-size: 1.1rem;
}

.map-panel {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border-radius: 8px;
  color: var(--purple-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 48%),
    var(--gold-soft);
}

.map-panel span {
  margin-bottom: auto;
  font-weight: 900;
}

.map-panel strong {
  max-width: 14ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.96;
}

.map-panel small {
  margin-top: 1rem;
  font-size: 0.98rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 4.5rem);
  color: var(--white);
  background: var(--purple-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .hero,
  .section-heading,
  .experience,
  .location {
    grid-template-columns: 1fr;
  }

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

  .hero::before {
    inset: 1rem auto auto 50%;
    width: 72vw;
    height: 72vw;
    transform: translateX(-50%);
  }

  .hero-media {
    min-height: auto;
    order: -1;
  }

  .hero-media img {
    width: min(84vw, 430px);
  }

  h1 {
    max-width: 11ch;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 0.6rem 0.9rem;
  }

  .brand span {
    max-width: 104px;
    line-height: 1.05;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .header-action {
    min-height: 42px;
    padding-inline: 1rem;
  }

  .hero {
    padding-inline: 0.9rem;
  }

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

  .trust-strip {
    margin-inline: 0.9rem;
  }

  .section {
    padding-inline: 0.9rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

