@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --black: #0e0e0e;
  --white: #f9f8f6;
  --accent: #b8975a;
  --gray: #6b6b6b;
  --light-gray: #e8e6e1;
  --bg: #f9f8f6;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(249,248,246,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-gray);
}

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

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--black); }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--black); transition: all 0.3s; }

/* PAGE WRAPPER */
.page { display: none; }
.page.active { display: block; }

main { padding-top: 72px; }

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6rem 5vw 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55vw; height: 110vh;
  background: linear-gradient(135deg, #f0ece3 0%, #e8e3d5 100%);
  border-radius: 3px;
  z-index: 0;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  color: var(--black);
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.8rem;
  line-height: 1.8;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-block;
}

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

.btn-secondary {
  border: 1px solid var(--black);
  color: var(--black);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover { background: var(--black); color: var(--white); }

/* STATS BAR */
.stats-bar {
  padding: 3rem 5vw;
  background: var(--black);
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat { color: var(--white); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
}
.stat-label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: #aaa; }

/* SECTIONS */
section { padding: 6rem 5vw; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-sub {
  color: var(--gray);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--light-gray);
  border: 1.5px solid var(--light-gray);
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  transition: background 0.2s;
}

.service-card:hover { background: #f3efe7; }

.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step { position: relative; padding-left: 1.5rem; border-left: 2px solid var(--light-gray); }
.process-step.highlight { border-left-color: var(--accent); }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.process-step h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: var(--gray); }

/* ABOUT PAGE */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-visual {
  background: linear-gradient(135deg, #e8e3d5, #d9d2c0);
  aspect-ratio: 4/5;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-visual::after {
  content: 'SB';
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

.values-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }

.value-item { display: flex; gap: 1rem; align-items: flex-start; }

.value-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.value-item h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.2rem; }
.value-item p { font-size: 0.875rem; color: var(--gray); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-detail { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.3rem; }
.contact-item p { font-size: 0.95rem; color: var(--gray); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; color: var(--gray); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--light-gray);
  background: var(--white);
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

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

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

.form-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 0.95rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--accent); }

/* LEGAL PAGES */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 5vw;
}

.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.legal-date { font-size: 0.85rem; color: var(--gray); margin-bottom: 3rem; }

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 2.5rem 0 0.8rem;
}

.legal-content p { font-size: 0.95rem; color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; color: var(--gray); font-size: 0.95rem; line-height: 2; margin-bottom: 1rem; }

/* FOOTER */
footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 5vw 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 2rem;
}

.footer-brand .nav-logo { color: var(--white); font-size: 1.1rem; }
.footer-brand p { font-size: 0.875rem; color: #888; margin-top: 0.8rem; max-width: 280px; line-height: 1.7; }

.footer-links { display: flex; gap: 5rem; flex-wrap: wrap; }

.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #888; margin-bottom: 1.2rem; }

.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 0.7rem;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col a:hover { color: var(--white); }

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

.footer-bottom p { font-size: 0.8rem; color: #666; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: #666; text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-bottom-links a:hover { color: #aaa; }

/* DIVIDER */
.divider { width: 48px; height: 2px; background: var(--accent); margin: 1.5rem 0 2.5rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero::before { width: 100%; height: 40%; top: auto; bottom: 0; right: 0; border-radius: 0; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { aspect-ratio: 3/2; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { gap: 2rem; }
  .footer-links { gap: 2.5rem; }
}

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* SUCCESS MESSAGE */
.form-success {
  display: none;
  background: #f0f7f0;
  border: 1px solid #c3dfc3;
  color: #2d6a2d;
  padding: 1rem 1.5rem;
  border-radius: 2px;
  font-size: 0.9rem;
}
