:root {
  --bg: #FDF8F4;
  --bg-warm: #F9EDE3;
  --bg-deep: #2D1F14;
  --fg: #2D1F14;
  --fg-muted: #6B5B4E;
  --fg-light: #9A8B7E;
  --accent: #C0704A;
  --accent-soft: #E8A882;
  --accent-glow: #F4D4BE;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  overflow: hidden;
  background: linear-gradient(168deg, var(--bg) 0%, var(--bg-warm) 50%, var(--accent-glow) 100%);
}

.hero-inner {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--fg);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-accent {
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 1;
}

/* ===== TRUST BAR ===== */
.trust {
  background: var(--bg-deep);
  padding: 40px 24px;
}

.trust-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--accent-soft);
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 24px;
  background: var(--bg);
}

.services-inner {
  max-width: 960px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.services-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(45, 31, 20, 0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 31, 20, 0.08);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== DIFFERENCE ===== */
.difference {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.difference-inner {
  max-width: 720px;
  margin: 0 auto;
}

.difference-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 24px;
}

.difference-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.difference-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(45, 31, 20, 0.1);
}

.stat-value {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-glow) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 36px;
}

.closing-actions {
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-deep);
  padding: 48px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-details {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-email {
  color: var(--accent-soft);
  font-size: 0.9rem;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-ghost {
  color: var(--fg-muted);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  padding: 14px 4px;
  transition: color 0.15s;
}

.btn-ghost:hover { color: var(--accent); }

/* ===== SERVICE CARD LINKS ===== */
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-learn-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 60px 20px 40px;
  }

  .trust-inner {
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }

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

  .service-card {
    padding: 32px 24px;
  }

  .difference-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-accent {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -40px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero {
    min-height: 60vh;
  }

  .trust-inner {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 244, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(45, 31, 20, 0.08);
  padding: 0 24px;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-brand:hover { color: var(--accent); }

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

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: background 0.15s, transform 0.15s !important;
}

.nav-cta:hover {
  background: #a85e3c !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ===== SHARED PAGE STYLES ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.btn-primary:hover {
  background: #a85e3c;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ===== PAGE HERO (non-landing pages) ===== */
.page-hero {
  padding: 80px 24px 60px;
  background: linear-gradient(168deg, var(--bg) 0%, var(--bg-warm) 50%, var(--accent-glow) 100%);
  text-align: center;
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--fg);
  margin-bottom: 20px;
}

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

/* ===== PAGE CTA ===== */
.page-cta {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-glow) 100%);
  text-align: center;
}

.page-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.page-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.page-cta p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ===== ABOUT PAGE ===== */
.about-credentials {
  padding: 80px 24px;
  background: var(--bg);
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
}

.credential-card-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.credential-card {
  background: var(--white);
  border: 1px solid rgba(45, 31, 20, 0.06);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.credential-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.credential-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.credential-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-story {
  padding: 80px 24px;
  background: var(--bg-warm);
}

.about-story-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.about-story-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 24px;
}

.about-story-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-quote {
  background: var(--bg-deep);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}

.about-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-quote cite {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

.about-location-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(45, 31, 20, 0.08);
}

.about-location-box h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-light);
  margin-bottom: 12px;
}

.about-location-box ul {
  list-style: none;
  margin-bottom: 20px;
}

.about-location-box li {
  color: var(--fg-muted);
  font-size: 0.95rem;
  padding: 4px 0;
}

.about-location-box li::before {
  content: '📍 ';
  font-size: 0.85rem;
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail {
  padding: 80px 24px;
  background: var(--bg);
}

.service-detail-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.service-detail-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--fg);
}

.service-detail-content h2:first-child {
  margin-top: 0;
}

.service-detail-content p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  margin-bottom: 16px;
}

.service-list li {
  color: var(--fg-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  padding: 6px 0 6px 24px;
  position: relative;
  border-bottom: 1px solid rgba(45, 31, 20, 0.05);
}

.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* ===== SIDEBAR CARDS (shared) ===== */
.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(45, 31, 20, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}

.sidebar-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--fg-light);
  margin-bottom: 12px;
}

.sidebar-card p {
  color: var(--fg-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sidebar-service-links, .sidebar-card ul {
  list-style: none;
}

.sidebar-service-links li, .sidebar-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(45, 31, 20, 0.05);
}

.sidebar-service-links a, .sidebar-card ul a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
}

.sidebar-service-links a:hover, .sidebar-card ul a:hover {
  text-decoration: underline;
}

.sidebar-location {
  background: var(--bg-warm);
}

.contact-link {
  display: block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.sidebar-note {
  font-size: 0.82rem !important;
  color: var(--fg-light) !important;
}

.steps-list {
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  counter-increment: steps;
  padding: 10px 0 10px 36px;
  position: relative;
  color: var(--fg-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(45, 31, 20, 0.05);
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== BOOKING FORM ===== */
.booking-section {
  padding: 60px 24px 100px;
  background: var(--bg);
}

.booking-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.booking-form-wrap { width: 100%; }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(45, 31, 20, 0.15);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.97rem;
  color: var(--fg);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 112, 74, 0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B5B4E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check .checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--accent);
}

.form-error {
  background: #fef2f0;
  border: 1px solid #e8a0a0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #c0392b;
  margin-bottom: 16px;
}

.btn-submit {
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-top: 8px;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.booking-success {
  text-align: center;
  padding: 60px 24px;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.booking-success h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.booking-success p {
  color: var(--fg-muted);
  font-size: 1rem;
}

.booking-success a {
  color: var(--accent);
}

/* ===== FOOTER NAV LINKS ===== */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

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

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

/* ===== RESPONSIVE — NEW PAGES ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(45, 31, 20, 0.1);
    box-shadow: 0 8px 24px rgba(45, 31, 20, 0.08);
  }

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

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

  .nav-links a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(45, 31, 20, 0.06);
  }

  .nav-cta {
    border-radius: var(--radius-sm) !important;
    text-align: center;
    margin-top: 8px;
  }

  /* Needed for mobile nav positioning */
  .site-nav { position: relative; }

  .credential-card-row {
    grid-template-columns: 1fr;
  }

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

  .service-detail-inner {
    grid-template-columns: 1fr;
  }

  .booking-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 60px 20px 40px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.8rem;
  }
}