/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F7F4EF;
  --warm-white: #FDFBF8;
  --charcoal: #1E1E1E;
  --stone: #6B6560;
  --gold: #B8935A;
  --gold-light: #D4AF80;
  --border: #E2DDD8;
  --section-gap: 100px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--warm-white); color: var(--charcoal); font-size: 15px; line-height: 1.7; }

/* ── NAV ── */
nav#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  background: rgba(253,251,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s, box-shadow 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { width: 40px; height: 40px; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--gold); font-weight: 700; letter-spacing: 1px; flex-shrink: 0; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--charcoal); font-weight: 600; letter-spacing: 0.5px; line-height: 1.2; }
.nav-logo-sub { font-size: 10px; color: var(--stone); letter-spacing: 2px; text-transform: uppercase; }
#primary-menu { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
#primary-menu li a { text-decoration: none; color: var(--stone); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
#primary-menu li a:hover, #primary-menu li.current-menu-item a { color: var(--gold); }
.nav-cta { background: var(--gold); color: #fff; padding: 10px 24px; text-decoration: none; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: #9a7843; color: #fff; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--charcoal); display: block; transition: all 0.3s; }

/* Mobile Menu */
#mobile-menu { display: none; position: fixed; inset: 0; background: var(--warm-white); z-index: 99; flex-direction: column; justify-content: center; align-items: center; gap: 32px; }
#mobile-menu.open { display: flex; }
#mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--charcoal); text-decoration: none; }
#mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 28px; right: 36px; font-size: 28px; cursor: pointer; color: var(--stone); background: none; border: none; font-family: sans-serif; }

/* ── SECTION BASE ── */
section { padding: var(--section-gap) 60px; }
.section-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.15; color: var(--charcoal); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { color: var(--stone); max-width: 560px; line-height: 1.8; }

/* ── BUTTONS ── */
.btn-primary { background: var(--charcoal); color: #fff; padding: 14px 32px; text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold); color: #fff; }
.btn-outline { border: 1px solid var(--charcoal); color: var(--charcoal); padding: 13px 32px; text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO ── */
#hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 86px; position: relative; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 60px; background: var(--cream); }
.hero-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 5.5vw, 80px); font-weight: 300; line-height: 1.1; color: var(--charcoal); margin-bottom: 28px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc { color: var(--stone); font-size: 15px; line-height: 1.8; max-width: 420px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; padding-top: 40px; border-top: 1px solid var(--border); }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: var(--charcoal); font-weight: 600; line-height: 1; }
.hero-stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--stone); margin-top: 4px; }
.hero-right { position: relative; overflow: hidden; background: #1A1816; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: transform 0.8s ease; display: block; }
.hero-right:hover img { transform: scale(1.03); }
.hero-badge { position: absolute; bottom: 40px; left: 0; background: var(--gold); color: #fff; padding: 14px 28px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-accent { position: absolute; bottom: -20px; right: -20px; width: 140px; height: 140px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-direction: column; color: #fff; text-align: center; }
.about-accent-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 700; line-height: 1; }
.about-accent-text { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 20px 0 36px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--stone); font-size: 14px; }
.about-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ── SERVICES ── */
#services { background: var(--warm-white); }
.services-header { max-width: 1200px; margin: 0 auto 56px; }
.services-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--cream); padding: 44px 36px; position: relative; overflow: hidden; transition: background 0.3s; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #fff; }
.service-icon { font-size: 28px; margin-bottom: 20px; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--charcoal); margin-bottom: 12px; }
.service-desc { color: var(--stone); font-size: 14px; line-height: 1.8; }
.service-link { display: inline-block; margin-top: 20px; color: var(--gold); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; text-decoration: none; }
.service-link:hover { text-decoration: underline; color: var(--gold); }

/* ── PORTFOLIO ── */
#portfolio { background: var(--charcoal); padding: var(--section-gap) 60px; }
#portfolio .section-title { color: #fff; }
#portfolio .section-eyebrow { color: var(--gold-light); }
.portfolio-header { max-width: 1200px; margin: 0 auto 56px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.portfolio-header .section-sub { color: #aaa; }
.portfolio-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 3px; }
.portfolio-item { position: relative; overflow: hidden; cursor: pointer; }
.portfolio-item.large { grid-row: span 2; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; min-height: 220px; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); display: flex; align-items: flex-end; padding: 24px; opacity: 0; transition: opacity 0.3s; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #fff; font-weight: 400; }
.portfolio-overlay-text p { font-size: 12px; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* ── EXPERTISE STRIP ── */
#expertise { background: var(--gold); padding: 48px 60px; }
.expertise-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 60px; align-items: center; flex-wrap: wrap; justify-content: center; }
.expertise-item { text-align: center; color: #fff; }
.expertise-item .icon { font-size: 26px; margin-bottom: 8px; }
.expertise-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; }
.expertise-item p { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.85; margin-top: 4px; }

/* ── PROCESS ── */
#process { background: var(--cream); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; }
.process-step { padding: 36px 28px; border-right: 1px solid var(--border); }
.process-step:last-child { border-right: none; }
.process-step-num { font-family: 'Cormorant Garamond', serif; font-size: 60px; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 16px; }
.process-step-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.process-step-desc { color: var(--stone); font-size: 14px; line-height: 1.8; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--warm-white); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.tcard { background: var(--cream); padding: 36px; border-top: 3px solid transparent; transition: border-color 0.3s; }
.tcard:hover { border-top-color: var(--gold); }
.tcard-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.tcard-text { color: var(--stone); font-size: 14px; line-height: 1.9; font-style: italic; margin-bottom: 24px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.tcard-name { font-weight: 600; font-size: 14px; color: var(--charcoal); }
.tcard-role { font-size: 12px; color: var(--stone); }

/* ── CONTACT ── */
#contact { background: var(--charcoal); padding: var(--section-gap) 60px; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
#contact .section-title { color: #fff; }
#contact .section-eyebrow { color: var(--gold-light); }
#contact .section-sub { color: #aaa; margin-bottom: 40px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-info-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; }
.contact-info-val { color: #ccc; font-size: 14px; line-height: 1.6; }
.contact-info-val a { color: #ccc; text-decoration: none; }
.contact-info-val a:hover { color: var(--gold-light); }

/* Contact Form (CF7 / WPForms compatible) */
.contact-form-wrap .wpcf7-form,
.contact-form-wrap form { display: flex; flex-direction: column; gap: 16px; }
.contact-form-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-wrap .form-group { display: flex; flex-direction: column; gap: 6px; }
.contact-form-wrap label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #888; }
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap select,
.contact-form-wrap textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; resize: none; width: 100%; }
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus { border-color: var(--gold); }
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder { color: #666; }
.contact-form-wrap select { appearance: none; color: #aaa; }
.contact-form-wrap select option { background: #1E1E1E; color: #fff; }
.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit { background: var(--gold); color: #fff; border: none; padding: 15px 36px; font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover { background: #9a7843; }
.wpcf7-not-valid-tip { color: #ff6b6b; font-size: 12px; margin-top: 4px; }
.wpcf7-response-output { color: var(--gold-light); font-size: 13px; margin-top: 12px; border: none !important; padding: 0 !important; }

/* ── FOOTER ── */
footer#site-footer { background: #111; padding: 60px 60px 30px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: #666; font-size: 13px; line-height: 1.8; max-width: 260px; margin-top: 16px; }
.footer-col h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.footer-col ul li a { color: #666; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col p { color: #666; font-size: 13px; line-height: 1.8; }
.footer-col a { color: #666; text-decoration: none; }
.footer-col a:hover { color: var(--gold-light); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; color: #444; font-size: 12px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: #555; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav#site-nav { padding: 18px 30px; }
  #primary-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 70px 30px; }
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 30px; }
  .hero-right { min-height: 320px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.large { grid-row: span 1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  #portfolio, #contact { padding: var(--section-gap) 30px; }
  footer#site-footer { padding: 48px 30px 24px; }
  #expertise { padding: 48px 30px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .expertise-inner { gap: 28px; }
  .contact-form-wrap .form-row { grid-template-columns: 1fr; }
}
