/* ============================================================
   DESIGN TOKENS - MINIMAL LIGHT PALETTE
   Pure White, Light Gray, Single Sage Accent
   ============================================================ */
:root {
  --white:       #FFFFFF;
  --off-white:   #F9F9F9;
  --light-gray:  #E8E8E8;
  --medium-gray: #B0B0B0;
  --text:        #2A2A2A;
  --accent:      #7B9E9E;
  --accent-dk:   #5A7F7F;
  --border:      #E0E0E0;
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 32px rgba(0,0,0,0.12);
  --radius-card: 0px;
  --radius-btn:  0px;
  --radius-pill: 0px;
  --section-pad: 100px;
  --font-serif:  'Lora', serif;
  --font-sans:   'Figtree', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.3px;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
h4 { font-size: 1rem; font-weight: 500; }

em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

p {
  font-size: 16px;
  line-height: 1.8;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--light-gray);
  color: var(--text);
  z-index: 9999;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
}
.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-content p {
  flex: 1;
  font-size: 14px;
  color: var(--text);
}
.cookie-content a {
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
}
.cookie-btns { display: flex; gap: 16px; flex-shrink: 0; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(2px);
}
.modal-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 48px;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-md);
  position: relative;
}
.modal-form-box { padding: 48px; }
.modal-box h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}
.modal-sub {
  font-size: 15px;
  color: var(--medium-gray);
  margin-bottom: 28px;
  line-height: 1.7;
}
.cookie-option { margin-bottom: 20px; }
.cookie-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
}
.cookie-option label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent);
}
.cookie-option p {
  font-size: 13px;
  color: var(--medium-gray);
  margin-top: 6px;
  padding-left: 30px;
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--medium-gray);
  cursor: pointer;
  padding: 0;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--text); }

.request-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.request-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.request-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.request-form input,
.request-form textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 15px;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.3s, background 0.3s;
  resize: vertical;
}
.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--off-white);
}
.btn-full { width: 100%; text-align: center; }
.optional {
  font-size: 12px;
  font-weight: 400;
  color: var(--medium-gray);
  text-transform: none;
  letter-spacing: 0;
}

.form-success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 32px;
  text-align: center;
}
.success-icon {
  width: 80px; height: 80px;
  background: var(--accent);
  color: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 500;
}
.form-success-box p {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--text);
  padding: 14px 40px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--text);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--text);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  background: var(--white);
  color: var(--text);
  padding: 14px 40px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  font-family: var(--font-sans);
}
.btn-outline:hover {
  background: var(--off-white);
  border-color: var(--text);
}

.btn-ghost {
  display: inline-block;
  background: var(--white);
  color: var(--accent);
  padding: 14px 40px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-family: var(--font-sans);
}
.btn-ghost:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.btn-link:hover {
  color: var(--text);
}

.btn-large {
  padding: 16px 48px;
  font-size: 15px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 48px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
}
.nav-links a:hover { color: var(--accent); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  border-radius: 0;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
  background: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: none;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  max-width: 100%;
  text-align: center;
}
.hero-badge {
  display: none;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.hero-accent {
  color: var(--accent);
  font-weight: 500;
}
.hero-desc {
  font-size: 17px;
  margin-bottom: 40px;
  color: var(--medium-gray);
  max-width: 100%;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  display: none;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--text);
  text-align: center;
}
.section-sub {
  font-size: 16px;
  color: var(--medium-gray);
  max-width: 100%;
  line-height: 1.8;
  margin-bottom: 52px;
  text-align: center;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.phil-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}
.phil-text .section-label { display: none; }
.philosophy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--text);
}
.phil-text p {
  font-size: 16px;
  color: var(--medium-gray);
  line-height: 1.9;
  margin-bottom: 24px;
}
.phil-text p:last-of-type { margin-bottom: 32px; }
.phil-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  display: none;
}
.phil-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.phil-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 0;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: none;
}
.phil-badge-num {
  display: block;
  font-size: 28px;
  font-weight: 500;
}
.phil-badge-lbl {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.phil-spacer {
  display: none;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 80px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  display: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-divider {
  display: none;
}
.stat-item {
  padding: 20px 0;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
  color: var(--accent);
}
.stat-suffix {
  font-size: 12px;
  font-weight: 500;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: none;
}
.stat-label {
  font-size: 14px;
  opacity: 1;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--medium-gray);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 0;
  display: none;
}
.service-row:first-of-type { margin-top: 0; }
.service-row--reverse {
  direction: ltr;
}
.service-row--reverse > * {
  direction: ltr;
}
.service-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 360px;
  display: none;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-row:hover .service-img img {
  transform: scale(1.06);
}
.service-tag {
  display: none;
}
.service-text h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}
.service-text ul {
  list-style: none;
  margin: 0 0 22px 0;
  display: none;
}
.service-text ul li {
  font-size: 15px;
  color: var(--medium-gray);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}
.service-text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  font-weight: 500;
  color: var(--accent);
  font-size: 16px;
}
.service-price {
  margin: 16px 0 0 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Service items - new minimal layout */
.service-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.service-item:last-child {
  border-bottom: none;
}
.service-item h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}
.service-item p {
  font-size: 15px;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 12px;
}
.service-item .service-price {
  margin: 16px 0 0 0;
}

.service-cta {
  text-align: center;
  padding-top: 32px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.faq-item {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.faq-item:hover {
  border-color: var(--accent);
  background: var(--white);
}
.faq-item h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 15px;
  color: var(--medium-gray);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.contact-item {
  text-align: center;
  padding: 28px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  transition: none;
}
.contact-item:last-child {
  border-bottom: none;
}
.contact-item:hover {
  border-color: var(--border);
}
.contact-icon {
  font-size: 0;
  margin-bottom: 0;
  display: none;
}
.contact-item h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.contact-item p {
  font-size: 15px;
  color: var(--medium-gray);
  line-height: 1.8;
}
.contact-item a {
  color: var(--accent);
  font-weight: 500;
  transition: color 0.3s;
}
.contact-item a:hover {
  color: var(--text);
}

.map-wrap {
  margin-bottom: 52px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  display: none;
}

.contact-cta {
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  color: var(--text);
  padding-top: 64px;
  border-top: 1px solid var(--border);
}
.footer-logo {
  color: var(--accent);
  margin-bottom: 20px;
  display: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  max-width: 700px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 12px;
}
.footer-brand .disclaimer {
  font-size: 12px;
  color: var(--medium-gray);
  font-style: italic;
}
.footer-links h4 {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--medium-gray);
  transition: color 0.3s;
  position: relative;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  max-width: 700px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--medium-gray);
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-pref-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  font-family: var(--font-sans);
}
.cookie-pref-btn:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .services { grid-template-columns: 1fr; gap: 24px; }
  .phil-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row--reverse { direction: ltr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 24px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .hero { margin-top: 70px; padding: 0; }
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
  }
  .nav-links li a::after { display: none; }
  .burger { display: flex; }
  .modal-box { padding: 36px 28px; }
  .stats-grid { grid-template-columns: 1fr; }
  .service-row { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-large { padding: 14px 32px; }
  .contact-item { padding: 24px 0; }
  .section-title { font-size: 1.6rem; }
}
