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

:root {
  --teal: #c8860a;
  --teal-dark: #a36d08;
  --teal-light: #fef3c7;
  --forest: #c8860a;
  --forest-dark: #a36d08;
  --forest-light: #fef3c7;
  --text: #1c1209;
  --text-muted: #6b5a45;
  --bg: #fdfaf6;
  --bg-alt: #f7f0e6;
  --border: #e8ddd0;
  --radius: 18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.5px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.btn-nav:hover { background: var(--teal-dark) !important; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: -0.2px;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  padding: 140px 24px 100px;
  background: linear-gradient(160deg, #fef3c7 0%, #fdfaf6 60%);
  text-align: center;
}

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

.hero-label {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.font-lora { font-family: 'Fraunces', serif; }
.font-merriweather { font-family: 'Fraunces', serif; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ===== SECTIONS ===== */
.section { padding: 96px 24px; }
.section-alt { background: var(--bg-alt); }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

h2, h3, h4 {
  font-family: 'Fraunces', serif;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== SERVICES ===== */
.services-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.services-toggle {
  display: block;
  margin: 0 auto 0;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.services-toggle:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.services-toggle.open {
  color: var(--teal);
  border-color: var(--teal);
}

.services-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.services-expanded.open {
  max-height: 800px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.service-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.service-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

.services-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .services-featured { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== WHAT'S INCLUDED ===== */
#included {
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--border);
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.include-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}

.include-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.include-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ===== WANT MORE ===== */
.want-more {
  background: linear-gradient(135deg, #c2622a, #a34e1e);
  padding: 64px 24px;
}

.want-more-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.want-more h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.want-more p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  max-width: 520px;
}

.btn-outline {
  flex-shrink: 0;
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-outline:hover {
  background: #fff;
  color: var(--teal-dark);
}

@media (max-width: 640px) {
  .want-more-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.portfolio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.portfolio-card {
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 134, 10, 0.15);
}

.portfolio-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-img.placeholder {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.portfolio-info {
  padding: 20px 24px;
}

.portfolio-tag {
  display: inline-block;
  background: var(--forest-light);
  color: var(--forest-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.portfolio-info h4 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.portfolio-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.view-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.3px;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.modal-close:hover { background: var(--bg-alt); }

.modal-header {
  margin-bottom: 28px;
}

.modal-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 8px 0 6px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modal-images {
  display: grid;
  gap: 16px;
}

.modal-images.two-up {
  grid-template-columns: 1fr 1fr;
}

.modal-images.three-up {
  grid-template-columns: 1fr 1fr;
}

.modal-images.three-up img:first-child {
  grid-column: 1 / -1;
}

.modal-images img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: cover;
}

@media (max-width: 600px) {
  .modal-images.two-up,
  .modal-images.three-up { grid-template-columns: 1fr; }
  .modal-images.three-up img:first-child { grid-column: auto; }
  .modal-box { padding: 24px; }
}

/* ===== ABOUT ===== */
.about-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

.about-img {
  width: 240px;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.about-text h2 { margin-bottom: 20px; }

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

/* ===== INTAKE FORM ===== */
.intake-form {
  max-width: 580px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 165, 160, 0.08);
}

.form-group textarea { resize: vertical; }

.intake-form .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: #1c1209;
  color: #fff;
  padding: 48px 24px;
  text-align: center;
}

.footer .logo { color: #f59e0b; display: block; margin-bottom: 12px; }

.footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-small { font-size: 0.78rem !important; margin-top: 20px; }

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

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

  .about-photo {
    display: flex;
    justify-content: center;
  }

  .photo-placeholder {
    width: 200px;
    height: 240px;
  }
}
