@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream:      #f7f3ee;
  --warm-white: #fdfaf6;
  --linen:      #ede6da;
  --tan:        #c9b99a;
  --brown:      #7a5c3e;
  --dark:       #2a1f14;
  --charcoal:   #3d3530;
  --accent:     #8c6642;
  --text:       #3d3530;
  --text-light: #7a6e65;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;
  --nav-h: 72px;
  --section-pad: clamp(4rem, 10vw, 8rem);
  --max-w: 1140px;
  --radius: 2px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--warm-white); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }
.section-label { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: block; }
.section-title { font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 300; line-height: 1.15; color: var(--dark); }
.section-title em { font-style: italic; color: var(--accent); }

.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 2rem; font-family: var(--ff-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s var(--ease-out); border-radius: var(--radius); line-height: 1; }
.btn-primary { background: var(--dark); color: var(--cream); }
.btn-primary:hover { background: var(--brown); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--cream); transform: translateY(-1px); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.42s; }

/* ── NAV ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; transition: background 0.4s, box-shadow 0.4s; }
#navbar.scrolled { background: rgba(253,250,246,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--linen); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 400; color: var(--dark); }
.nav-logo span { color: var(--accent); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); position: relative; padding-bottom: 2px; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s var(--ease-out); }
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

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

.mobile-nav { display: none; position: fixed; inset: 0; top: var(--nav-h); background: var(--warm-white); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--ff-display); font-size: 2rem; font-weight: 300; color: var(--dark); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--accent); }

/* ── HERO ── */
#hero { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; padding-top: var(--nav-h); overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem,8vw,6rem) clamp(1.5rem,5vw,4rem) clamp(3rem,8vw,6rem) clamp(1.5rem,8vw,6rem); }
.hero-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--accent); }
.hero-title { font-family: var(--ff-display); font-size: clamp(3rem,6vw,5.5rem); font-weight: 300; line-height: 1.05; color: var(--dark); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--accent); display: block; }
.hero-subtitle { font-size: 1rem; color: var(--text-light); max-width: 420px; margin-bottom: 2.5rem; line-height: 1.8; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--linen); }
.stat-num { font-family: var(--ff-display); font-size: 2.25rem; font-weight: 300; color: var(--dark); line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-top: 0.3rem; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }
.hero-badge { position: absolute; bottom: 2rem; left: -1rem; background: var(--warm-white); padding: 1rem 1.5rem; border-left: 3px solid var(--accent); box-shadow: 0 8px 32px rgba(42,31,20,0.14); font-size: 0.8rem; color: var(--text-light); }
.hero-badge strong { display: block; font-family: var(--ff-display); font-size: 1.05rem; font-weight: 400; color: var(--dark); }

/* ── SERVICES ── */
#services { padding: var(--section-pad) 0; background: var(--warm-white); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--linen); border: 1.5px solid var(--linen); }
.service-card { background: var(--warm-white); padding: 2.5rem 2rem; transition: background 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.4s var(--ease-out); }
.service-card:hover { background: var(--cream); }
.service-card:hover::before { width: 100%; }
.service-icon { width: 44px; height: 44px; margin-bottom: 1.5rem; color: var(--accent); }
.service-card h3 { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 400; color: var(--dark); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; font-weight: 300; }

/* ── GALLERY ── */
#gallery { padding: var(--section-pad) 0; background: var(--cream); }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
.gallery-item { overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; background: var(--linen); }
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); display: block; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(42,31,20,0); transition: background 0.3s; display: flex; align-items: flex-end; padding: 1.25rem; }
.gallery-item:hover .gallery-overlay { background: rgba(42,31,20,0.3); }
.gallery-caption { color: white; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: all 0.3s; }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 200; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: white; font-size: 1.5rem; cursor: pointer; padding: 1rem 1.25rem; transition: background 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── ABOUT ── */
#about { padding: var(--section-pad) 0; background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,8vw,7rem); align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-img-accent { position: absolute; width: 52%; aspect-ratio: 1; background: linear-gradient(135deg, var(--tan), var(--brown)); border: 6px solid var(--warm-white); bottom: -2rem; right: -2rem; display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 1.1rem; font-style: italic; color: var(--cream); text-align: center; line-height: 1.4; padding: 1rem; }
.about-content { max-width: 520px; }
.about-content p { color: var(--text-light); font-weight: 300; margin-bottom: 1.25rem; font-size: 0.95rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.value-item { padding: 1.25rem; background: var(--cream); border-top: 2px solid var(--accent); }
.value-item h4 { font-family: var(--ff-display); font-size: 1rem; font-weight: 400; color: var(--dark); margin-bottom: 0.3rem; }
.value-item p { font-size: 0.82rem; margin: 0; }

/* ── TESTIMONIALS ── */
#testimonials { padding: var(--section-pad) 0; background: var(--dark); position: relative; overflow: hidden; }
#testimonials::before { content: '\201C'; position: absolute; top: -3rem; left: 4%; font-family: var(--ff-display); font-size: 28rem; color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none; }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-label { color: var(--tan); }
.testimonials-header .section-title { color: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 2rem; transition: background 0.3s; }
.testimonial-card:hover { background: rgba(255,255,255,0.08); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; color: var(--tan); font-size: 0.85rem; }
.testimonial-text { font-family: var(--ff-display); font-size: 1.05rem; font-style: italic; font-weight: 300; color: var(--cream); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); color: var(--cream); font-size: 1rem; flex-shrink: 0; }
.author-name { font-size: 0.82rem; font-weight: 500; color: var(--cream); letter-spacing: 0.06em; }
.author-location { font-size: 0.75rem; color: var(--tan); margin-top: 0.1rem; }
.google-badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 3rem; padding: 0.75rem 1.5rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); font-size: 0.8rem; color: var(--tan); }
.google-badge svg { flex-shrink: 0; }

/* ── CONTACT ── */
#contact { padding: var(--section-pad) 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(3rem,8vw,6rem); align-items: start; }
.contact-info > p { color: var(--text-light); font-weight: 300; margin-bottom: 2.5rem; font-size: 0.95rem; margin-top: 1rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.detail-icon { width: 40px; height: 40px; background: var(--dark); color: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.detail-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.2rem; }
.detail-value { font-size: 0.95rem; color: var(--dark); line-height: 1.6; }
.detail-value a { transition: color 0.2s; }
.detail-value a:hover { color: var(--accent); }
.detail-note { font-size: 0.75rem; color: var(--text-light); font-weight: 300; display: block; margin-top: 0.15rem; }

.hours-block { padding: 1.5rem; background: var(--dark); color: var(--cream); }
.hours-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tan); margin-bottom: 0.75rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; font-weight: 300; padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--tan); }
.hours-row .time { color: var(--cream); }

/* Quote Form */
.quote-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.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); }
.form-group label .required-star { color: var(--accent); margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea { padding: 0.9rem 1rem; border: 1.5px solid var(--linen); background: var(--warm-white); font-family: var(--ff-body); font-size: 0.9rem; color: var(--dark); border-radius: var(--radius); outline: none; transition: border-color 0.25s, box-shadow 0.25s; -webkit-appearance: none; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(140,102,66,0.1); }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #c0392b; }
.field-error { font-size: 0.75rem; color: #c0392b; margin-top: 0.2rem; display: none; }
.field-error.show { display: block; }
.form-group textarea { resize: vertical; min-height: 120px; }

.photo-upload-zone { border: 2px dashed var(--linen); padding: 1.75rem 1.5rem; text-align: center; cursor: pointer; transition: border-color 0.25s, background 0.25s; background: var(--warm-white); border-radius: var(--radius); position: relative; }
.photo-upload-zone:hover, .photo-upload-zone.dragover { border-color: var(--accent); background: var(--cream); }
.photo-upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; border: none; padding: 0; }
.upload-icon { color: var(--accent); margin: 0 auto 0.75rem; }
.upload-label { font-size: 0.85rem; color: var(--text-light); font-weight: 300; }
.upload-label strong { color: var(--dark); font-weight: 500; }
.upload-hint { font-size: 0.72rem; color: var(--text-light); margin-top: 0.35rem; }
.photo-previews { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.75rem; }
.photo-thumb-wrap { position: relative; }
.photo-thumb-wrap img { width: 72px; height: 72px; border-radius: var(--radius); object-fit: cover; border: 1.5px solid var(--linen); display: block; }
.photo-thumb-wrap button { position: absolute; top: -6px; right: -6px; width: 18px; height: 18px; border-radius: 50%; background: var(--dark); color: white; border: none; cursor: pointer; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; }

.phone-note { background: var(--linen); border-left: 3px solid var(--accent); padding: 0.85rem 1rem; font-size: 0.82rem; color: var(--charcoal); display: flex; align-items: center; gap: 0.6rem; }
.phone-note svg { flex-shrink: 0; color: var(--accent); }

.form-submit-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.form-privacy { font-size: 0.72rem; color: var(--text-light); }
.form-success { display: none; padding: 2rem; background: var(--dark); color: var(--cream); text-align: center; }
.form-success .success-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.form-success h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 300; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.88rem; color: var(--tan); font-weight: 300; }

/* ── FOOTER ── */
footer { background: var(--dark); color: var(--tan); padding: 3rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-logo { font-family: var(--ff-display); font-size: 1.5rem; color: var(--cream); display: block; margin-bottom: 1rem; }
.footer-logo span { color: var(--tan); font-style: italic; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; font-weight: 300; max-width: 280px; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; font-weight: 300; color: var(--tan); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; font-weight: 300; color: rgba(201,185,154,0.55); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 1.5rem 3rem; }
  .services-header { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 400px; }
  .about-img-accent { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; aspect-ratio: 4/3; }
  .about-values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-stats { gap: 1.5rem; }
}
