@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Nunito+Sans:wght@300;400;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

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

:root {
  --bark:    #3B2A1A;
  --walnut:  #5C3D2E;
  --cedar:   #8B5E3C;
  --sand:    #D4B896;
  --cream:   #F5EFE6;
  --sage:    #7A8C6E;
  --sage-dk: #4E5E44;
  --white:   #FDFAF6;
  --mid:     #9E8878;
  --text:    #2E1F0F;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(59,42,26,0.96);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--sand); text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--sage); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sand); text-decoration: none;
  opacity: 0.7; transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--sand); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--sand); transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bark); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--sand); text-decoration: none;
}
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--sand); font-size: 2rem; cursor: pointer;
}
.mobile-cta {
  background: var(--sage); color: var(--white) !important;
  padding: 0.8rem 2rem; border-radius: 4px; font-size: 1.2rem !important;
}

/* Sticky mobile bar */
.sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--bark);
  padding: 0.8rem 1rem;
  gap: 0.5rem;
}
.sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; text-transform: uppercase;
}
.sticky-bar .call { background: var(--sage); color: var(--white); }
.sticky-bar .quote { background: var(--cedar); color: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--bark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-texture {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 80px,rgba(212,184,150,0.03) 80px,rgba(212,184,150,0.03) 81px),
    repeating-linear-gradient(90deg,transparent,transparent 80px,rgba(212,184,150,0.03) 80px,rgba(212,184,150,0.03) 81px);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 3.5rem 6rem 4rem; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 2px; background: var(--sage); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 900; line-height: 1.08;
  color: var(--cream); margin-bottom: 0.5rem;
}
.hero-title em { font-style: italic; color: var(--sand); }
.hero-subtitle {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: var(--mid); margin: 1.8rem 0 2.5rem;
  max-width: 420px;
  border-left: 2px solid var(--cedar);
  padding-left: 1.2rem;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(212,184,150,0.35);
  color: var(--sand); padding: 0.35rem 0.9rem; border-radius: 3px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--sage); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 4px; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--sage-dk); }
.btn-secondary {
  border: 1px solid rgba(212,184,150,0.5); color: var(--sand);
  padding: 0.9rem 2rem; border-radius: 4px; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--sand); color: var(--cream); }

.hero-right {
  position: relative; overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.75;
}
.hero-img-placeholder {
  width: 100%; height: 100%; min-height: 100vh;
  background: linear-gradient(135deg, var(--walnut) 0%, var(--cedar) 50%, var(--sage-dk) 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-placeholder p {
  font-family: 'Barlow Condensed', sans-serif;
  color: rgba(245,239,230,0.4); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bark) 0%, transparent 30%);
}
.hero-stats {
  position: absolute; bottom: 2.5rem; left: 2rem; right: 2rem;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; z-index: 3;
}
.stat {
  background: rgba(59,42,26,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(212,184,150,0.2);
  padding: 1rem 1.2rem; border-radius: 6px; text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--sand);
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mid); margin-top: 0.2rem;
}

/* ── SECTIONS ── */
.section { padding: 6rem 4rem; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--bark); }

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sage);
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem;
}
.section-eyebrow::before { content: ''; display: block; width: 30px; height: 2px; background: var(--sage); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--cedar); }
.section-dark .section-title { color: var(--cream); }
.section-dark .section-title em { color: var(--sand); }
.section-dark .section-eyebrow { color: var(--sage); }
.section-dark .section-eyebrow::before { background: var(--sage); }

.section-body {
  font-size: 1.05rem; line-height: 1.8; color: var(--walnut); max-width: 640px;
}
.section-dark .section-body { color: var(--mid); }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem;
}
.service-card {
  background: var(--white); border-radius: 8px;
  border: 1px solid rgba(139,94,60,0.15);
  padding: 2.5rem 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(59,42,26,0.12); }
.service-icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--bark); margin-bottom: 0.8rem;
}
.service-body { font-size: 0.95rem; line-height: 1.7; color: var(--walnut); }

/* ── PHOTO GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem; margin-top: 3rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 6px;
  background: var(--cedar);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 220px;
  transition: transform 0.4s ease;
}
.gallery-item.tall .gallery-img { min-height: 460px; }
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%; min-height: 220px;
  background: linear-gradient(135deg, var(--walnut), var(--cedar));
  display: flex; align-items: center; justify-content: center;
}
.gallery-item.tall .gallery-placeholder { min-height: 460px; }
.gallery-placeholder span {
  font-family: 'Barlow Condensed', sans-serif;
  color: rgba(245,239,230,0.4); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
}

/* ── PHOTO FRAME ── */
.photo-frame {
  position: relative; display: inline-block;
}
.photo-frame img {
  display: block; width: 100%; border-radius: 6px;
}
.photo-frame::after {
  content: ''; position: absolute;
  top: 12px; left: 12px; right: -12px; bottom: -12px;
  border: 3px solid var(--cedar);
  border-radius: 6px; z-index: -1;
}

/* ── WHY US ── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem;
}
.why-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.why-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(122,140,110,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--bark); margin-bottom: 0.4rem;
}
.why-body { font-size: 0.93rem; line-height: 1.7; color: var(--walnut); }

/* ── QUOTE ── */
.quote-block {
  text-align: center; max-width: 700px; margin: 0 auto; padding: 4rem 2rem;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 0.5; color: var(--cedar); opacity: 0.4;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-style: italic; line-height: 1.6;
  color: var(--cream); margin: 1.5rem 0 1rem;
}
.quote-attr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage);
}

/* ── CTA ── */
.cta-block {
  text-align: center; padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--walnut) 0%, var(--bark) 100%);
}
.cta-block .section-title { color: var(--cream); margin-bottom: 1rem; }
.cta-block p { color: var(--mid); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; align-items: start;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--bark); margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem;
}
.contact-detail-icon { font-size: 1.2rem; margin-top: 0.1rem; }
.contact-detail-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 0.2rem;
}
.contact-detail-value { font-size: 0.98rem; color: var(--walnut); }
.contact-detail-value a { color: var(--cedar); text-decoration: none; }
.contact-detail-value a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--sage);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(139,94,60,0.3);
  border-radius: 4px; background: var(--white);
  font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; color: var(--text);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--sage);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--bark);
  padding: 3rem 4rem 2rem;
  border-top: 1px solid rgba(212,184,150,0.15);
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.9rem; color: var(--mid); line-height: 1.7; margin-top: 0.8rem;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.9rem; color: var(--mid); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--sand); }
.footer-col address { font-style: normal; font-size: 0.9rem; color: var(--mid); line-height: 1.8; }
.footer-col address a { color: var(--cedar); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(212,184,150,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--mid); }
.footer-bottom a { color: var(--cedar); text-decoration: none; }
.cda-credit {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid);
}
.cda-credit a { color: var(--sage); text-decoration: none; }
.cda-credit a:hover { color: var(--sand); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sticky-bar { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 7rem 1.5rem 4rem; }

  .section { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall .gallery-img { min-height: 220px; }
  .gallery-item.tall .gallery-placeholder { min-height: 220px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 3rem 1.5rem 5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  body { padding-bottom: 70px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 0.5rem; }
}
