/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --bg: #FAF8F4;
  --bg-alt: #F0EBE3;
  --dark: #1C1917;
  --accent: #B8722A;
  --accent-hover: #9A5E20;
  --text: #2C2825;
  --text-muted: #6B6459;
  --border: #E5DDD4;
  --white: #FFFFFF;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --max-width: 1160px;
  --section-pad: 100px;
  --nav-height: 72px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
}
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 400;
  color: var(--dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-eyebrow.centered,
h2.centered { text-align: center; }

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--dark); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover { border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}
.btn.full-width { width: 100%; }

/* ===========================
   NAVIGATION
=========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07); }
.nav {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 2.5rem;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-right: auto;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.nav-logo .logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }
.nav-cta { padding: 10px 20px; font-size: 0.82rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--dark);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ===========================
   PLACEHOLDER IMAGES
=========================== */
.img-placeholder {
  background: #DDD5CA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #8A7D72;
  font-family: var(--font-sans);
  font-style: italic;
  border-radius: 3px;
}
.img-placeholder.small {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.65rem;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #2E261F url('images/hero.jpg') center 30% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 16, 12, 0.5) 0%,
    rgba(20, 16, 12, 0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-height);
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===========================
   VIDEO SECTION
=========================== */
.video-section { text-align: center; }
.video-intro {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
}
.video-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===========================
   ABOUT
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 3px;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.25rem; }
.about-text .btn { margin-top: 0.75rem; }

/* ===========================
   SERVICES
=========================== */
.services-intro {
  max-width: 580px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-img .img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0;
}
.service-photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.service-body { padding: 2rem 2rem 2.25rem; }
.service-body h3 { margin-bottom: 0.75rem; }
.service-body > p { margin-bottom: 1.5rem; }
.service-includes {
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.service-includes li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-includes li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-meta strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
blockquote {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  font-style: italic;
}

/* ===========================
   GALLERY
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===========================
   CONTACT
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}
.contact-text h2 { color: var(--white); margin-bottom: 1rem; }
.contact-text p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}
.contact-text .section-eyebrow { color: var(--accent); }
.contact-text .btn { margin-bottom: 0; }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--dark);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; }
.hidden { display: none; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #141210;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}
.footer-col-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}
.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a,
.footer-social a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ===========================
   INTAKE PAGE
=========================== */
.intake-page {
  padding-top: calc(var(--nav-height) + 72px);
  padding-bottom: 120px;
  min-height: 100vh;
}
.intake-container { max-width: 700px; }
.intake-header { margin-bottom: 3rem; }
.intake-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.intake-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.intake-form .form-group { margin-bottom: 2rem; }
.intake-form label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.55;
}
.intake-form input,
.intake-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.intake-form input:focus,
.intake-form textarea:focus { border-color: var(--accent); }
.intake-form textarea { resize: vertical; }
.required { color: var(--accent); }
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.required-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===========================
   THANK YOU PAGE
=========================== */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
}
.thankyou-content {
  text-align: center;
  max-width: 520px;
  padding: 0 24px;
}
.thankyou-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  border: 1px solid var(--border);
}
.thankyou-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.thankyou-content h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.thankyou-content p { margin-bottom: 2rem; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 960px) {
  :root { --section-pad: 72px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { order: -1; }
  .about-img .img-placeholder { aspect-ratio: 3/2; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

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

@media (max-width: 600px) {
  :root { --section-pad: 56px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .contact-form { padding: 1.75rem; }
}
