/* Kenneth Bordewick Interior Designs — Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Roboto:wght@300;400;500&display=swap');

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

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --cream: #f8f6f2;
  --gold: #c9a96e;
  --gold-dark: #a07d44;
  --grey-light: #f0ede8;
  --grey-mid: #e0dbd2;
  --text: #2c2c2c;
  --text-light: #666;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Roboto', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.6; }

/* ── HEADER ── */
header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--grey-mid); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--black); text-decoration: none; letter-spacing: 0.02em; }
.logo span { color: var(--gold); }

nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav a { font-family: var(--sans); font-size: 0.85rem; font-weight: 400; color: var(--text); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
nav a:hover { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: 0.7rem; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--grey-mid); min-width: 220px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 100; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 0.75rem 1.25rem; font-size: 0.8rem; border-bottom: 1px solid var(--grey-light); }
.dropdown-menu a:last-child { border-bottom: none; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--black); transition: all 0.3s; }

/* ── HERO ── */
.hero { background: var(--black); color: var(--white); padding: 120px 2rem 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, transparent 60%); pointer-events: none; }
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-family: var(--sans); }
.hero h1 { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.8; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2.2rem; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { border: 1px solid rgba(255,255,255,0.4); color: var(--white); margin-left: 1rem; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--black); color: var(--white); padding: 80px 2rem 60px; text-align: center; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 1rem; font-size: 0.95rem; }

/* ── STATS BAR ── */
.stats-bar { background: var(--grey-light); border-bottom: 1px solid var(--grey-mid); }
.stats-inner { max-width: 1280px; margin: 0 auto; padding: 1.5rem 2rem; display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 1rem; }
.stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--black); display: block; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); }

/* ── SECTIONS ── */
section { padding: 80px 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--black); line-height: 1.2; margin-bottom: 1.5rem; }
.section-title em { color: var(--gold-dark); font-style: italic; }
.section-text { color: var(--text-light); line-height: 1.9; font-size: 0.95rem; font-weight: 300; max-width: 680px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--grey-mid); }
.service-card { background: var(--white); padding: 2.5rem; }
.service-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.8; font-weight: 300; margin-bottom: 1.25rem; }
.service-card a { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ── DARK SECTION ── */
.dark-section { background: var(--black); color: var(--white); }
.dark-section .section-text { color: rgba(255,255,255,0.6); }
.dark-section .section-title { color: var(--white); }

/* ── IMAGE GRID ── */
.image-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.image-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.img-wrap { overflow: hidden; }
.img-wrap img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.img-wrap:hover img { transform: scale(1.04); }
.img-wrap.tall img { height: 400px; }
.img-wrap.portrait img { height: 480px; }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.gallery-item { overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── QUOTE BLOCK ── */
.quote-block { background: var(--grey-light); border-left: 3px solid var(--gold); padding: 2rem 2.5rem; }
.quote-block blockquote { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; font-style: italic; color: var(--black); line-height: 1.6; }
.quote-block cite { display: block; margin-top: 1rem; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); font-style: normal; }

/* ── ABOUT CARD ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.credentials-list { list-style: none; margin-top: 1.5rem; }
.credentials-list li { padding: 0.6rem 0; border-bottom: 1px solid var(--grey-mid); font-size: 0.88rem; color: var(--text-light); display: flex; align-items: center; gap: 0.75rem; }
.credentials-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--black); color: var(--white); text-align: center; padding: 80px 2rem; }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-weight: 300; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.review-card { background: var(--grey-light); padding: 2rem; border-top: 3px solid var(--gold); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.92rem; color: var(--text); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
.review-author { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 2rem; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--grey-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 0.25rem; }
.contact-value { font-family: var(--serif); font-size: 1.1rem; color: var(--black); text-decoration: none; }
.contact-value:hover { color: var(--gold); }

/* ── FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.4rem; color: var(--text-light); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--grey-mid); font-family: var(--sans); font-size: 0.9rem; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FAQ ── */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--grey-mid); padding: 1.5rem 0; }
.faq-question { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.faq-answer { font-size: 0.9rem; color: var(--text-light); line-height: 1.85; margin-top: 0.75rem; font-weight: 300; }

/* ── FOOTER ── */
footer { background: var(--black); color: var(--white); padding: 60px 2rem 30px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; font-weight: 300; line-height: 1.8; margin-top: 0.75rem; }
footer h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--white); margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; font-weight: 300; }
footer ul a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ── BREADCRUMB ── */
.breadcrumb { max-width: 1280px; margin: 0 auto; padding: 1rem 2rem; font-size: 0.8rem; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }

/* ── UTILITY ── */
.bg-cream { background: var(--cream); }
.bg-grey { background: var(--grey-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.divider { width: 48px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav ul { display: none; }
  .burger { display: flex; }
  nav.open ul { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 1rem 2rem; border-bottom: 1px solid var(--grey-mid); gap: 0.75rem; z-index: 999; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .image-grid-2, .image-grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
}
