/* =============================================
   KenHouseDesign – 2025 Redesign
   Aesthetic: West Coast Modern Luxury
   Palette: Deep forest + warm stone + gold
   ============================================= */

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

:root {
  --forest: #1a2e20;
  --forest-mid: #2d4a35;
  --stone: #f5f0e8;
  --stone-dark: #e8dfd0;
  --gold: #b8955a;
  --gold-light: #d4ac72;
  --cream: #faf8f4;
  --charcoal: #2c2c2c;
  --muted: #6b6b6b;
  --white: #ffffff;
  --nav-h: 96px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 400; }
p { font-size: 1rem; color: var(--muted); line-height: 1.8; }
a { color: inherit; text-decoration: none; }

.lang-zh { font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(26, 46, 32, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 16px; }
.nav-logo img { height: 58px; filter: brightness(10); }
.nav-logo .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 400;
  color: var(--white); letter-spacing: 0.03em;
}
.nav-logo .brand span { color: var(--gold-light); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 1rem; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}
.lang-toggle {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); cursor: pointer; background: none; border: none;
  padding: 6px 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
  cursor: pointer; transition: all var(--transition);
}
.lang-toggle:hover { color: var(--gold-light); border-color: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; transition: var(--transition); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(to bottom, rgba(26,46,32,0.3) 0%, rgba(26,46,32,0.65) 70%, rgba(26,46,32,0.9) 100%),
    url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1800&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 8vw 9vh;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold-light);
}
.hero h1 { color: var(--white); margin-bottom: 10px; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: rgba(255,255,255,0.7); margin-bottom: 40px; font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  padding: 14px 32px; font-size: 0.88rem; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 14px 32px; font-size: 0.88rem; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.hero-scroll {
  position: absolute; bottom: 40px; right: 8vw;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ── SECTION SCAFFOLDING ── */
.section { padding: 100px 8vw; }
.section-sm { padding: 70px 8vw; }
.section-dark { background: var(--forest); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.65); }
.section-stone { background: var(--stone); }
.section-mid { background: var(--forest-mid); color: var(--white); }
.section-mid p { color: rgba(255,255,255,0.65); }

.section-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

.section-header { max-width: 600px; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--forest-mid); padding: 50px 40px;
  position: relative; overflow: hidden;
  transition: background var(--transition);
}
.service-card:hover { background: #3a6045; }
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s ease;
}
.service-card:hover::before { width: 100%; }
.service-icon {
  font-size: 2rem; margin-bottom: 24px;
  display: block;
}
.service-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.4rem; }
.service-card p { font-size: 0.92rem; }

/* ── PROCESS STEPS ── */
.process-list { list-style: none; max-width: 800px; }
.process-list li {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 24px; align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.process-list li:last-child { border-bottom: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.process-list h4 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; font-weight: 500; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 3px;
}
.gallery-item {
  overflow: hidden; position: relative;
  aspect-ratio: 4/3; background: var(--forest-mid);
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,46,32,0.7), transparent);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: white; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 2px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.12);
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: white;
  padding: 24px 28px; text-align: center;
  box-shadow: 0 8px 30px rgba(184,149,90,0.4);
}
.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; line-height: 1;
  display: block;
}
.about-badge .label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-text .section-label { margin-top: 0; }
.stat-row { display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--stone-dark); }
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; color: var(--forest); line-height: 1;
  display: block;
}
.stat .label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.06em; }

/* ── PARTNERS ── */
.partners-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--stone-dark);
}
.partner-card {
  background: var(--cream); padding: 36px 24px;
  text-align: center;
  transition: background var(--transition);
}
.partner-card:hover { background: var(--stone); }
.partner-icon { font-size: 2.2rem; margin-bottom: 12px; }
.partner-card h4 { font-size: 1rem; color: var(--forest); margin-bottom: 6px; }
.partner-card p { font-size: 0.82rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info h2 { margin-bottom: 24px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail .icon { font-size: 1.3rem; margin-top: 2px; }
.contact-detail h4 { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail p { font-size: 0.95rem; color: var(--charcoal); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--stone); border: 1px solid var(--stone-dark);
  border-radius: var(--radius); padding: 14px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--charcoal);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit {
  background: var(--forest); color: var(--white);
  padding: 16px 36px; font-size: 0.88rem; letter-spacing: 0.08em;
  text-transform: uppercase; border: none; cursor: pointer;
  border-radius: var(--radius); transition: background var(--transition);
}
.btn-submit:hover { background: var(--forest-mid); }

/* ── KNOWLEDGE BASE ── */
.kb-intro { max-width: 700px; margin-bottom: 60px; }
.kb-categories { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.kb-cat {
  padding: 8px 20px; border-radius: 24px; font-size: 0.82rem; letter-spacing: 0.05em;
  border: 1px solid var(--stone-dark); background: var(--cream); cursor: pointer;
  transition: all var(--transition);
}
.kb-cat:hover, .kb-cat.active { background: var(--forest); color: white; border-color: var(--forest); }
.kb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.kb-card {
  border: 1px solid var(--stone-dark); border-radius: 8px;
  overflow: hidden; transition: box-shadow var(--transition), transform var(--transition);
  background: var(--white);
}
.kb-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.kb-card-header {
  background: var(--forest); color: white;
  padding: 20px 24px; display: flex; gap: 12px; align-items: flex-start;
}
.kb-card-header .q-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.kb-card-header h4 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; line-height: 1.4; }
.kb-card-body { padding: 24px; }
.kb-card-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 12px; }
.kb-card-body p:last-child { margin-bottom: 0; }
.kb-tag {
  display: inline-block; background: var(--stone); color: var(--forest);
  padding: 3px 10px; border-radius: 12px; font-size: 0.72rem;
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 8px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 60px 8vw 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
.footer-brand .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: white; margin-bottom: 14px; display: block;
}
.footer-brand .brand span { color: var(--gold-light); }
.footer-brand p { font-size: 0.88rem; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.8rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ── LANG VISIBILITY ── */
.zh-text { display: none; }
body.lang-zh-active .zh-text { display: block; }
body.lang-zh-active .en-text { display: none; }
body.lang-zh-active .zh-inline { display: inline; }
body.lang-zh-active .en-inline { display: none; }
.zh-inline { display: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 44vh; min-height: 340px;
  background: var(--forest);
  display: flex; align-items: flex-end;
  padding: 0 8vw 60px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: white; }
.page-hero .page-sub {
  color: rgba(255,255,255,0.6);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; margin-top: 8px; font-weight: 300;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--gold); color: white;
  padding: 40px 48px; border-radius: 2px;
  margin: 40px 0;
}
.highlight-box h3 { color: white; margin-bottom: 10px; font-size: 1.5rem; }
.highlight-box p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: var(--nav-h);
    background: var(--forest); padding: 40px 8vw;
    gap: 24px; z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-item.wide { grid-column: span 1; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-row { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .kb-grid { grid-template-columns: 1fr; }
}

/* ── PORTFOLIO PAGE ── */
.portfolio-tabs {
  display: flex; gap: 0; list-style: none;
  border-bottom: 2px solid var(--stone-dark);
  margin-bottom: 50px; flex-wrap: wrap;
}
.portfolio-tab {
  padding: 14px 28px; font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer; font-weight: 500;
  color: var(--muted); border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: all var(--transition);
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: 'DM Sans', sans-serif;
}
.portfolio-tab:hover { color: var(--forest); }
.portfolio-tab.active { color: var(--forest); border-bottom: 3px solid var(--gold); }

.portfolio-panel { display: none; }
.portfolio-panel.active { display: block; }

/* Masonry-style grid for portfolio images */
.port-grid {
  display: grid;
  gap: 16px;
}
.port-grid-plans {
  grid-template-columns: repeat(3, 1fr);
}
.port-grid-3d {
  grid-template-columns: repeat(3, 1fr);
}
.port-grid-interior {
  grid-template-columns: repeat(3, 1fr);
}
.port-grid-exterior {
  grid-template-columns: repeat(2, 1fr);
}

.port-item {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--stone-dark); cursor: pointer;
}
.port-item.tall { grid-row: span 2; }
.port-item.wide { grid-column: span 2; }

.port-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 220px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.port-item:hover img { transform: scale(1.06); }

.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,46,32,0.75) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-overlay-text { color: white; }
.port-overlay-text h4 { font-size: 1rem; color: white; margin-bottom: 4px; }
.port-overlay-text p { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain; border-radius: 2px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  color: white; font-size: 2rem; cursor: pointer; line-height: 1;
  opacity: 0.7; transition: opacity var(--transition);
}
.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: 2rem; padding: 14px 18px; cursor: pointer;
  border-radius: 4px; transition: background var(--transition);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-caption {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.85rem; letter-spacing: 0.05em;
  text-align: center; white-space: nowrap;
}

@media(max-width: 900px) {
  .port-grid-plans { grid-template-columns: repeat(2,1fr); }
  .port-grid-3d { grid-template-columns: repeat(2,1fr); }
  .port-grid-interior { grid-template-columns: repeat(2,1fr); }
  .port-grid-exterior { grid-template-columns: 1fr; }
  .port-item.wide { grid-column: span 1; }
  .port-item.tall { grid-row: span 1; }
  .portfolio-tab { padding: 10px 16px; font-size: 0.8rem; }
}
@media(max-width: 540px) {
  .port-grid-plans, .port-grid-3d, .port-grid-interior { grid-template-columns: 1fr; }
}

/* ── logo_org variant (full colour, no filter) ── */
.nav-logo img.logo-color { filter: none; height: 62px; }

/* ── CTA STRIP (global — was previously only in index.html <style>) ── */
.cta-strip {
  background: var(--gold); padding: 60px 8vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.cta-strip h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-strip .sub { color: rgba(255,255,255,0.8); font-size: 1rem; }
.btn-white {
  background: white; color: var(--forest);
  padding: 14px 36px; font-size: 0.88rem; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: var(--radius);
  font-weight: 500; white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
@media(max-width:768px){
  .cta-strip { flex-direction: column; text-align: center; }
}

/* ── FOOTER — compact horizontal nav ── */
.site-footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 44px 8vw 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
  align-items: start;
}
/* Horizontal nav pills in footer */
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.footer-links li { display: inline; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  white-space: nowrap;
}
.footer-links a:hover { color: white; }
/* Separator dots between inline links */
.footer-links li + li::before {
  content: '·';
  color: rgba(255,255,255,0.3);
  margin-right: 10px;
}
.site-footer .footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.footer-brand .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: white; margin-bottom: 10px; display: block;
}
.footer-brand .brand span { color: var(--gold-light); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex; justify-content: space-between;
  align-items: center; font-size: 0.78rem;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--gold-light); }
@media(max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media(max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .site-footer { padding: 36px 6vw 18px; }
}
