:root {
  --green: #162520;
  --green-mid: #1f3530;
  --green-dark: #0e1a17;
  --bg: #ede8e0;
  --bg-warm: #e6e0d6;
  --bronze: #b5793a;
  --bronze-light: #c98a48;
  --text: #1a1a1a;
  --text-muted: #5a5550;
  --white: #ffffff;
  --border: #d8d2c8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── NAV ── */

nav {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(181, 121, 58, 0.3);
}

.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4375rem;
  color: var(--bronze);
  text-decoration: none;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.nav-logo span {
  color: rgba(181, 121, 58, 0.55);
  font-weight: 400;
  font-style: italic;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--bronze-light); }

.nav-links .nav-cta a {
  background: var(--bronze);
  color: var(--white);
  padding: 0.4375rem 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}

.nav-links .nav-cta a:hover {
  background: var(--bronze-light);
  color: var(--white);
}

/* ── BUTTONS ── */

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 0.875rem 2rem;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-block;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--green-mid); }

.btn-outline {
  border: 1.5px solid var(--green);
  color: var(--green);
  padding: 0.875rem 2rem;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}

.btn-outline:hover { background: var(--green); color: var(--white); }

.btn-gold {
  background: var(--bronze);
  color: var(--white);
  padding: 0.9375rem 2.5rem;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-block;
  transition: opacity 0.15s;
}

.btn-gold:hover { opacity: 0.9; }

/* ── HOMEPAGE HERO ── */

.hero {
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(181, 121, 58, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 52rem;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--bronze);
  opacity: 0.6;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.12;
  color: var(--green);
  margin-bottom: 1.625rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--bronze);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.72;
  font-weight: 300;
  max-width: 42ch;
  margin: 0 auto 2.75rem;
}

.hero-ctas {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ornament {
  width: 3rem;
  height: 1px;
  background: var(--bronze);
  margin: 4rem auto 0;
  position: relative;
}

.hero-ornament::before,
.hero-ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--bronze);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-ornament::before { left: -0.75rem; }
.hero-ornament::after { right: -0.75rem; }

/* ── INNER PAGE HERO ── */

.page-hero {
  background: var(--green);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(181, 121, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(181, 121, 58, 0.8);
  margin-bottom: 1.125rem;
}

.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--bronze);
  opacity: 0.5;
}

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.125rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--bronze);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
  font-weight: 300;
  max-width: 46ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── HOMEPAGE SERVICES ── */

.services {
  background: var(--bg);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  color: var(--green);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.section-label p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--white);
  padding: 2.25rem 2rem 2rem;
  border-top: 3px solid var(--bronze);
  border-left: 3px solid transparent;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: border-left-color 0.2s;
}

.service-card:hover { border-left-color: var(--green); }

.service-icon {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3125rem;
  color: var(--green);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.68;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: auto;
}

.service-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.01em;
}

.service-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bronze);
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.service-link:hover { border-bottom-color: var(--bronze); }

/* ── WHY ROOTSHOST ── */

.why {
  padding: 5.5rem 2rem;
  background: var(--bg-warm);
}

.why-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.why-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: sticky;
  top: 5.5rem;
}

.why-heading em {
  display: block;
  font-style: italic;
  color: var(--bronze);
}

.why-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 1.125rem;
}

.why-content p:last-of-type { margin-bottom: 2rem; }

.why-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.site-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
  border: 1px solid rgba(22, 37, 32, 0.3);
  padding: 0.3125rem 0.6875rem;
  background: transparent;
}

/* ── INNER PAGE SECTIONS ── */

.section {
  padding: 5rem 2rem;
}

.section--alt {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  color: var(--green);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-heading em {
  font-style: italic;
  color: var(--bronze);
}

/* ── TWO-COL LAYOUT ── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.two-col--wide {
  grid-template-columns: 5fr 7fr;
}

/* ── PROSE ── */

.prose p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 1.125rem;
}

.prose p:last-child { margin-bottom: 0; }

/* ── FEATURES GRID ── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.feature-item {
  background: var(--white);
  padding: 1.875rem;
  border-left: 3px solid var(--bronze);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.feature-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  color: var(--green);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.65;
}

/* ── PRICING ── */

.pricing-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.pricing-card {
  background: var(--white);
  border-top: 3px solid var(--bronze);
  padding: 2.25rem 2rem;
  text-align: center;
  flex: 1;
  min-width: 11rem;
  max-width: 16rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pricing-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.875rem;
}

.pricing-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.pricing-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.pricing-card--recommended {
  border-top-color: var(--green);
  position: relative;
}

.pricing-recommended-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 0.25rem 0.625rem;
  margin-bottom: 1rem;
}

/* ── CURRENCY TOGGLE ── */

.currency-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.currency-btn {
  background: none;
  border: 1.5px solid var(--border);
  padding: 0.375rem 1.125rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.currency-btn:first-child { border-right: none; }

.currency-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.currency-btn:not(.active):hover {
  border-color: var(--green);
  color: var(--green);
}

/* ── CONTACT FORM ── */

.form-wrap {
  max-width: 40rem;
}

.form-group {
  margin-bottom: 1.375rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--green);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.15s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}

.form-group textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.6;
}

.form-submit { margin-top: 1.875rem; }

/* ── CTA BANNER ── */

.cta-banner {
  background: var(--green);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(181, 121, 58, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

/* ── THANK YOU ── */

.thankyou {
  padding: 8rem 2rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-inner {
  max-width: 32rem;
  margin: 0 auto;
}

.thankyou h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.thankyou p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── FOOTER ── */

footer {
  background: var(--green-dark);
  padding: 2.75rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--bronze);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.15s;
}

.footer-nav a:hover { color: var(--bronze); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

/* ── FAQ ── */

.faq-list {
  max-width: 52rem;
  margin: 2.5rem auto 0;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list details:first-child {
  border-top: 1px solid var(--border);
}

.faq-list summary {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  color: var(--green);
  font-weight: 600;
  padding: 1.375rem 2.5rem 1.375rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  letter-spacing: -0.01em;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bronze);
  font-family: 'Lato', sans-serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-list details[open] > summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-body {
  padding: 0 0 1.5rem;
}

.faq-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.faq-body p:last-child { margin-bottom: 0; }

/* ── RESPONSIVE ── */

@media (max-width: 56rem) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-heading { position: static; }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .two-col,
  .two-col--wide {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-row { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 22rem; width: 100%; }
}

/* ── HAMBURGER ── */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
}

.nav-toggle span {
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--bronze);
  transition: transform 0.2s, opacity 0.2s;
}

.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);
}

@media (max-width: 56rem) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background: var(--green);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .nav-links .nav-cta a {
    background: transparent;
    padding: 0.75rem 2rem;
    color: var(--bronze);
  }

  .nav-links .nav-cta a:hover {
    background: transparent;
    color: var(--bronze-light);
  }
}

@media (max-width: 40rem) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
