/* ============ Tokens ============ */
:root {
  --cream: #FBF7F0;
  --cream-deep: #F3ECE0;
  --sage: #7C8B6F;
  --sage-deep: #5F6E52;
  --sage-tint: #EAEFE4;
  --rose: #D79A93;
  --rose-deep: #C17F78;
  --rose-tint: #FBEEEC;
  --tan: #CBA36B;
  --tan-tint: #F7ECD9;
  --brown: #4A3C30;
  --brown-soft: #6B5B4C;
  --white: #FFFFFF;
  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow-soft: 0 12px 40px rgba(74, 60, 48, 0.08);
  --font-display: "Fraunces", serif;
  --font-body: "Jost", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sage-deep);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--brown);
  font-weight: 500;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--brown-soft); }

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

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin: 0 0 0.8em;
}

.section-lead {
  max-width: 640px;
  font-size: 1.05rem;
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--sage-deep);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); }
.btn-submit { font-size: 1rem; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74, 60, 48, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand-mark { height: 78px; width: auto; }

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  color: var(--brown);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-nav a:hover { color: var(--sage-deep); }
.nav-cta {
  background: var(--rose);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 100px;
}
.nav-cta:hover { background: var(--rose-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown);
  display: block;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 74px 0 96px;
  overflow: hidden;
}
.hero-arc {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 90px solid var(--cream-deep);
  opacity: 0.7;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
h1.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--brown);
  text-align: center;
  margin-bottom: 0.5em;
}
.hero-lead {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--brown-soft);
  opacity: 0.85;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 1.4em;
}
.hero-actions { margin-top: 8px; }

.hero-media { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
}
.hero-media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px;
  aspect-ratio: 4 / 3.4;
}
.hero-logo-display {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* ============ Sections ============ */
.section { padding: 84px 0; position: relative; overflow: hidden; }
.section--cream { background: var(--cream); }
.section--sage-tint { background: var(--sage-tint); }
.section--rose-tint { background: var(--rose-tint); }
.section--tan-tint { background: var(--tan-tint); }

.section--rose-tint::before,
.section--sage-tint::before,
.section--tan-tint::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.section--rose-tint::before {
  width: 340px; height: 340px;
  border: 56px solid var(--rose);
  opacity: 0.16;
  top: -120px; left: -140px;
}
.section--sage-tint::before {
  width: 300px; height: 300px;
  border: 50px solid var(--sage);
  opacity: 0.15;
  bottom: -110px; right: -120px;
  top: auto; left: auto;
}
.section--tan-tint::before {
  width: 260px; height: 260px;
  border: 44px solid var(--tan);
  opacity: 0.18;
  top: -90px; right: 6%;
  left: auto;
}
.section--rose-tint > .wrap,
.section--sage-tint > .wrap,
.section--tan-tint > .wrap {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-media { position: relative; }
.about-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  width: 100%;
}
.about-mark {
  width: 84px;
  height: auto;
  margin-bottom: 18px;
  opacity: 0.92;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--sage);
  transition: transform 0.15s ease;
}
.service-card:hover { transform: translateY(-3px); }
.service-card:nth-child(2) { border-top-color: var(--rose); }
.service-card:nth-child(3) { border-top-color: var(--tan); }
.service-card:nth-child(4) { border-top-color: var(--sage); }
.service-card:nth-child(5) { border-top-color: var(--rose); }
.service-card:nth-child(6) { border-top-color: var(--tan); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.service-card p { margin: 0; font-size: 0.97rem; }

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: var(--sage-deep);
  margin-bottom: 14px;
}
.service-card:nth-child(2) .service-icon { color: var(--rose-deep); }
.service-card:nth-child(3) .service-icon { color: #A97F3F; }
.service-card:nth-child(5) .service-icon { color: var(--rose-deep); }
.service-card:nth-child(6) .service-icon { color: #A97F3F; }
.service-icon svg { width: 100%; height: 100%; }

.service-card-coming-soon {
  background: var(--tan-tint);
  position: relative;
}
.coming-soon-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--rose-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
}
.service-card-coming-soon p { margin-bottom: 18px; }

.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border: 1.5px solid var(--sage-deep);
  box-shadow: none;
}
.btn-outline:hover { background: var(--sage-deep); color: #fff; }
.btn-small { padding: 10px 22px; font-size: 0.92rem; }

.info-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  color: var(--sage-deep);
  margin-bottom: 12px;
}
.info-icon svg { width: 100%; height: 100%; }

/* Service areas */
.areas-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.town-list {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 32px;
}
.town-list li {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brown);
  padding-left: 22px;
  position: relative;
}
.town-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

.areas-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 26px;
  box-shadow: var(--shadow-soft);
}
.info-card h3 { margin-bottom: 0.35em; font-size: 1.05rem; color: var(--sage-deep); }
.info-card p { margin: 0; font-size: 0.96rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-intro { position: sticky; top: 110px; }
.contact-detail {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(74,60,48,0.12);
}
.contact-detail span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-deep);
  margin-bottom: 4px;
}
.contact-detail a, .contact-detail p { margin: 0; font-family: var(--font-body); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
.two-col { grid-template-columns: 1fr 1fr; }
.three-col { grid-template-columns: 1fr 1fr 1fr; }
.field { margin-bottom: 20px; }
.form-row .field { margin-bottom: 0; }
.field label, fieldset.field legend {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 7px;
}
fieldset.field {
  border: none;
  padding: 0;
  margin: 0 0 20px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--brown);
  padding: 12px 14px;
  border: 1px solid rgba(74, 60, 48, 0.2);
  border-radius: 10px;
  background: var(--cream);
  transition: border-color 0.15s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
}
textarea { resize: vertical; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox { display: flex; align-items: center; gap: 10px; font-weight: 400; font-size: 0.96rem; }
.checkbox input { width: 17px; height: 17px; accent-color: var(--sage-deep); }
.hidden-field { position: absolute; left: -9999px; }

.form-success {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.form-success h3 {
  font-size: 1.5rem;
  color: var(--sage-deep);
  margin-bottom: 0.4em;
}
.form-success p { margin: 0; }

.form-error {
  background: var(--rose-tint);
  border: 1px solid var(--rose);
  color: var(--brown);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
  margin: 0 0 20px;
}
.form-error a { color: var(--sage-deep); font-weight: 500; }

/* ============ Footer ============ */
.site-footer {
  background: var(--sage-deep);
  color: #F2EEE4;
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-mark {
  height: 96px;
  width: auto;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
}
.footer-text p { color: #F2EEE4; margin: 0 0 2px; }
.footer-name { font-family: var(--font-display); font-size: 1.05rem; }
.footer-text a { color: #F2EEE4; text-decoration: underline; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; margin-bottom: 8px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .about-photo { aspect-ratio: 4 / 3; max-width: 420px; margin: 0 auto; }
  .areas-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-intro { position: static; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-arc { width: 420px; height: 420px; top: -160px; right: -160px; }
  .hero-media-logo { padding: 32px; }
  .hero-logo-display { max-width: 220px; }
}

@media (max-width: 640px) {
  .site-nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    transition: transform 0.2s ease;
  }
  .site-nav ul.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .brand-mark { height: 46px; }
  .service-grid { grid-template-columns: 1fr; }
  .form-row.two-col, .form-row.three-col { grid-template-columns: 1fr; }
  .town-list { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .section { padding: 60px 0; }
  .section--rose-tint::before,
  .section--sage-tint::before,
  .section--tan-tint::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
