/*
 * css/style.css
 * Global stylesheet — Woodking Dynasty Interiors
 */

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:  #1A1A1A;
  --dark2: #111111;
  --gold:  #B8922A;
  --gold2: #D4A830;
  --ivory: #F9F5EC;
  --white: #FFFFFF;
  --mid:   #5A5A5A;
  --lgray: #E8E4DC;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
}

a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

p {
  margin-bottom: 1rem;
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   TYPOGRAPHY — clamp() scales from mobile
   to desktop without media query fights
══════════════════════════════════════════ */
h1 { font-size: clamp(2rem, 5.5vw, 4.2rem);  font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.65rem); font-weight: 500; }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem);  font-weight: 500; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,146,42,0.15);
}

/* nav-inner mirrors hero-inner: full width, capped wide, consistent padding */
.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link  { display: flex; align-items: center; }
.nav-logo   { height: 50px; width: auto; display: block; object-fit: contain; transition: transform 0.3s ease; }

.nav-menu   { display: flex; gap: 36px; align-items: center; }
.nav-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }

.nav-cta               { background: var(--gold) !important; color: var(--dark) !important; padding: 10px 20px; border-radius: 2px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover         { background: var(--gold2) !important; }

/* Hamburger — hidden on desktop */
.menu-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
.menu-toggle .bar { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s ease; }

/* ══════════════════════════════════════════
   PAGE LAYOUT
══════════════════════════════════════════ */
.page-offset           { padding-top: 72px; }
main.page-offset       { min-height: calc(100vh - 72px); }

/* ══════════════════════════════════════════
   CONTAINER — wraps content sections only.
   Hero, CTA banner and footer are full-bleed;
   they handle their own inner padding.
══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; padding: 14px 32px; border-radius: 2px; transition: all 0.25s; cursor: pointer; border: none; }
.btn--gold          { background: var(--gold);  color: var(--dark); }
.btn--gold:hover    { background: var(--gold2); }
.btn--outline-gold  { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn--outline-gold:hover { background: var(--gold); color: var(--dark); }
.btn--dark          { background: var(--dark);  color: var(--white); }
.btn--dark:hover    { background: #2a2a2a; }

/* ══════════════════════════════════════════
   HELPERS
══════════════════════════════════════════ */
.section        { padding: 96px 0; }
.section--ivory { background: var(--ivory); }
.section--dark  { background: var(--dark); }

.eyebrow { font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.gold-rule   { width: 48px; height: 2px; background: var(--gold); margin: 20px 0 28px; }
.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }

/* ══════════════════════════════════════════
   HERO — edge-to-edge, no side whitespace.
   The section itself has no horizontal padding.
   hero-inner carries the same max-width/padding
   as nav-inner so content aligns perfectly.
══════════════════════════════════════════ */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0d0a 0%, #1a1a1a 50%, #111111 100%);
  /* NO padding here — hero-inner handles it */
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.08); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; right: 5%;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.05); pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 48px 100px; /* top accounts for fixed nav */
  position: relative;
  z-index: 1;
}

.hero h1       { color: var(--white); margin-bottom: 24px; font-weight: 600; }
.hero h1 em    { color: var(--gold); font-style: italic; display: block; }
.hero p        { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; margin-bottom: 40px; }
.hero-location { font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.hero-actions  { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  width: 100%;
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0d0a 0%, #1a1a1a 60%, #111111 100%);
}
.page-hero::after {
  content: ''; position: absolute; top: -15%; right: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.07); pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 900px; }
.page-hero h1  { color: var(--white); margin-bottom: 20px; }
.page-hero p   { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 640px; margin-bottom: 0; }

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.stats-strip { width: 100%; background: var(--gold); padding: 40px 0; }
.stats-grid  { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat-num    { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: var(--dark); line-height: 1; }
.stat-label  { font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(26,26,26,0.65); margin-top: 6px; }

/* ══════════════════════════════════════════
   SERVICE CARDS (home)
══════════════════════════════════════════ */
.service-card       { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 40px 32px; border-radius: 2px; transition: border-color 0.25s; }
.service-card:hover { border-color: rgba(184,146,42,0.4); }
.service-card--gold { border-color: rgba(184,146,42,0.3); background: rgba(184,146,42,0.06); }
.service-card .number { font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.card-link          { font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; transition: gap 0.2s; }
.card-link:hover    { gap: 14px; }
.card-link::after   { content: '→'; }

/* ══════════════════════════════════════════
   SERVICES (full page blocks)
══════════════════════════════════════════ */
.service-block            { padding: 80px 0; border-bottom: 1px solid var(--lgray); }
.service-block:last-child { border-bottom: none; }
.service-block--dark      { background: var(--dark); border-bottom: none; margin: 0 -48px; padding: 80px 48px; }
.service-block__num       { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 700; color: rgba(184,146,42,0.12); line-height: 1; margin-bottom: -20px; }
.service-block__num--gold { color: rgba(184,146,42,0.25); }
.service-block__lead      { font-size: 1.15rem; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; margin-bottom: 16px !important; }
.features li              { font-size: 0.9rem; padding: 10px 0; border-bottom: 1px solid var(--lgray); color: var(--mid); padding-left: 18px; position: relative; }
.features li::before      { content: '—'; position: absolute; left: 0; color: var(--gold); }
.svc-placeholder          { background: linear-gradient(160deg, #1a1a1a, #2a2a2a); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.15); font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; flex-direction: column; gap: 10px; }
.svc-placeholder-gold-dot { font-size: 1.5rem; color: rgba(184,146,42,0.3); }

/* ══════════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════════ */
.pillars-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--lgray); }
.pillar          { padding: 48px 40px; border-right: 1px solid var(--lgray); }
.pillar:last-child { border-right: none; }
.pillar-num      { font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.testimonial         { background: var(--ivory); padding: 40px 36px; border-radius: 2px; border-top: 2px solid var(--gold); }
.testimonial blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--dark); line-height: 1.65; margin-bottom: 24px; }
.testimonial cite    { font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); }

/* ══════════════════════════════════════════
   CTA BANNER — full bleed, no side gaps
══════════════════════════════════════════ */
.cta-banner    { width: 100%; background: var(--dark); padding: 100px 48px; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 20px; }
.cta-banner p  { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 40px; font-size: 1rem; }

/* ══════════════════════════════════════════
   FOOTER — full bleed, no side gaps
══════════════════════════════════════════ */
#site-footer {
  width: 100%;
  background: var(--dark2);
  padding: 80px 0 0;
}

/* footer gets its own wider container */
#site-footer > .container {
  max-width: 1400px;
  padding: 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p   { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.75; margin: 0; }

.footer-col h5    { font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a       { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.04em;
}
.footer-bottom a   { color: var(--gold); }
.footer-social     { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a   { font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════ */
.portfolio-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.portfolio-filters button { font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; background: transparent; border: 1px solid var(--lgray); color: var(--mid); padding: 10px 20px; border-radius: 2px; cursor: pointer; transition: all 0.2s; }
.portfolio-filters button:hover,
.portfolio-filters button.active { background: var(--dark); color: var(--white); border-color: var(--dark); }
.portfolio-grid             { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.portfolio-item             { position: relative; overflow: hidden; aspect-ratio: 4/3; border-radius: 2px; background: #1a1a1a; cursor: pointer; }
.portfolio-placeholder      { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.2); font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; width: 100%; height: 100%; background: linear-gradient(160deg, #1a1a1a, #222); }
.portfolio-item__overlay    { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; background: linear-gradient(transparent, rgba(0,0,0,0.92)); transform: translateY(40px); opacity: 0; transition: all 0.35s; }
.portfolio-item:hover .portfolio-item__overlay { transform: none; opacity: 1; }
.portfolio-item__cat        { font-family: 'Jost', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.portfolio-item__overlay h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.portfolio-item__overlay p  { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.values-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.value-item   { border-top: 2px solid var(--gold); padding-top: 32px; }
.val-num      { font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.mv-grid      { display: grid; grid-template-columns: 1fr 1fr; }
.mv-block     { padding: 80px 60px; }
.mv-block:first-child { background: var(--dark); }
.mv-block:last-child  { background: #0f0d0a; }
.mv-label     { font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.mv-block p   { color: rgba(255,255,255,0.65); }
.why-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.why-item     { border-left: 2px solid var(--lgray); padding-left: 24px; }
.why-item h4  { font-size: 1rem; font-weight: 600; margin-bottom: 8px; font-family: 'Jost', sans-serif; }
.photo-placeholder { background: linear-gradient(135deg,#1A1A1A,#2A2A2A); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; flex-direction: column; gap: 10px; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-grid      { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info      { padding-top: 8px; }
.contact-detail    { margin-top: 32px; border-top: 1px solid var(--lgray); padding-top: 24px; }
.detail-label      { font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.detail-val        { font-size: 0.95rem; color: var(--dark); line-height: 1.6; }
.detail-val a      { color: var(--dark); transition: color 0.2s; }
.detail-val a:hover { color: var(--gold); }
.wk-form .form-row { margin-bottom: 20px; }
.wk-form label     { display: block; font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
.wk-form input, .wk-form select, .wk-form textarea { width: 100%; border: 1px solid var(--lgray); background: var(--white); color: var(--dark); padding: 14px 16px; font-family: 'Jost', sans-serif; font-size: 0.95rem; border-radius: 2px; outline: none; transition: border-color 0.2s; }
.wk-form input:focus, .wk-form select:focus, .wk-form textarea:focus { border-color: var(--gold); }
.wk-form textarea  { min-height: 140px; resize: vertical; }
.form-note         { font-size: 0.8rem; color: var(--mid); margin-top: 12px; text-align: center; }
.map-placeholder   { background: #E8E3D8; height: 300px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--mid); font-family: 'Jost', sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ══════════════════════════════════════════
   BRAND INTRO
══════════════════════════════════════════ */
.brand-intro       { padding: 96px 0; background: var(--white); }
.brand-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.big-quote         { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 2.8vw, 2.5rem); font-weight: 400; font-style: italic; color: var(--dark); line-height: 1.45; }
.big-quote em      { color: var(--gold); font-style: italic; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-inner, #site-footer > .container { padding: 0 32px; }
  .container  { padding: 0 32px; }
  .hero-inner { padding: 120px 32px 80px; }
  .cta-banner { padding: 80px 32px; }

  .grid-3, .grid-4   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid       { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 768px
   Goal: comfortable reading, no cramped text,
   nothing overflowing the viewport.
══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-inner     { padding: 0 20px; height: 64px; }
  .nav-logo      { height: 38px; }
  .page-offset   { padding-top: 64px; }
  main.page-offset { min-height: calc(100vh - 64px); }

  /* Show hamburger */
  .menu-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px; left: 0;
    width: 100%;
    background: rgba(17,17,17,0.98);
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    gap: 28px;
    border-top: 1px solid rgba(184,146,42,0.2);
  }
  .nav-menu.is-active { display: flex; }
  .nav-menu a  { font-size: 0.9rem; letter-spacing: 0.1em; }

  /* Container */
  .container              { padding: 0 20px; }
  #site-footer > .container { padding: 0 20px; }

  /* Sections */
  .section    { padding: 56px 0; }
  .cta-banner { padding: 64px 20px; }

  /* Hero — fill viewport, comfortable padding */
  .hero       { min-height: 100svh; }
  .hero-inner { padding: 100px 20px 64px; }
  .hero p     { font-size: 1.05rem; max-width: 100%; margin-bottom: 32px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { padding: 13px 24px; font-size: 0.72rem; }

  /* Page hero */
  .page-hero   { padding: 110px 0 60px; }
  .page-hero p { font-size: 1.05rem; }

  /* Grids → single column */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pillars-grid  { grid-template-columns: 1fr; border-top: none; }
  .pillar        { border-right: none; border-bottom: 1px solid var(--lgray); padding: 32px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .mv-grid       { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .brand-intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-grid      { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Service blocks */
  .service-block       { padding: 56px 0; }
  .service-block--dark { margin: 0; padding: 56px 20px; }

  /* Footer */
  #site-footer          { padding: 56px 0 0; }
  .footer-brand img     { width: 160px; }
  .footer-bottom        { flex-direction: column; gap: 8px; text-align: center; }

  /* Readable body text */
  p       { font-size: 1rem; }
  .stat-num { font-size: 2.2rem; }
  .mv-block { padding: 48px 24px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 480px
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .container              { padding: 0 16px; }
  #site-footer > .container { padding: 0 16px; }
  .hero-inner             { padding: 88px 16px 56px; }
  .cta-banner             { padding: 56px 16px; }

  .hero p    { font-size: 1rem; }

  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .stat-num    { font-size: 1.9rem; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }

  .btn            { padding: 12px 22px; font-size: 0.7rem; }
  .footer-brand img { width: 140px; }
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */

/* Hero */
.about-hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background: url('https://i.pinimg.com/736x/63/11/4a/63114a731c0c0653875af8c046b1669e.jpg') center/cover no-repeat;
}
.about-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.15) 100%);
}
.about-hero-content {
  position: relative; z-index: 3;
  color: var(--white);
  padding-top: 40px;
  padding-bottom: 40px;
}
.about-hero-content h1 { color: var(--white); }
.about-hero-content p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin-bottom: 0; }

/* Brand Story grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-img {
  aspect-ratio: 4/5;
  min-height: 320px;
  border-radius: 4px;
  background: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1200') center/cover;
}

/* Why Choose Us grid */
.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-why-card {
  background: var(--ivory);
  padding: 24px 20px;
  border-radius: 4px;
  border-top: 2px solid var(--lgray);
  transition: border-color 0.2s;
}
.about-why-card:hover { border-color: var(--gold); }
.about-why-card h4    { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.about-why-card p     { font-size: 0.88rem; margin-bottom: 0; }

/* ── About responsive ── */
@media (max-width: 768px) {
  .about-story-grid   { grid-template-columns: 1fr; gap: 32px; }
  .about-story-img    { aspect-ratio: 16/9; min-height: 220px; }
  .about-why-grid     { grid-template-columns: 1fr; gap: 36px; }
  .about-why-cards    { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-hero-content { padding-top: 24px; padding-bottom: 24px; }
  .about-hero-content p { font-size: 1rem; }
  /* On mobile gradient goes top-to-bottom so text stays readable */
  .about-hero-overlay {
    background: linear-gradient(180deg,
      rgba(0,0,0,0.60) 0%,
      rgba(0,0,0,0.25) 100%);
  }
}

@media (max-width: 480px) {
  .about-why-cards { grid-template-columns: 1fr; }
  .about-story-img { aspect-ratio: 3/2; }
}