/* ═══════════════════════════════════════════════
   PONPERI IT SERVICES — Global Stylesheet
   Theme: Cream + Gold + Ink (Cormorant + DM Sans)
═══════════════════════════════════════════════ */

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

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

:root {
  --ink: #1a1714;
  --ink-muted: #6b6560;
  --ink-faint: #b0ada8;
  --cream: #faf8f4;
  --cream-mid: #f0ece4;
  --cream-deep: #e6e0d4;
  --gold: #c9a84c;
  --gold-dark: #9a7a2e;
  --gold-light: #e8d49a;
  --gold-dim: rgba(201,168,76,0.10);
  --white: #ffffff;
  --nav-h: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); line-height: 1.7; overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-light); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-mid);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: baseline; gap: 0.2rem;
}
.logo .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); display: inline-block;
  margin-bottom: 1px; flex-shrink: 0;
}
.nav-links { display: flex; gap: 2.4rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-muted);
  text-decoration: none; transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.65rem 1.5rem; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ink); color: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-dark); color: var(--cream); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; border: 1px solid var(--ink);
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; border: 1px solid rgba(250,248,244,0.3);
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
.anim { animation: fadeUp 0.65s ease forwards; }
.d1 { animation-delay: 0.1s; opacity: 0; }
.d2 { animation-delay: 0.25s; opacity: 0; }
.d3 { animation-delay: 0.4s; opacity: 0; }
.d4 { animation-delay: 0.55s; opacity: 0; }
.d5 { animation-delay: 0.7s; opacity: 0; }

/* ── SECTION COMMONS ── */
section { padding: 5.5rem 6vw; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
  line-height: 1.18; color: var(--ink); margin-bottom: 0.85rem;
}
h2.section-title em { font-style: italic; color: var(--gold); }
h2.section-title strong { font-weight: 600; }
.section-desc { font-size: 0.95rem; color: var(--ink-muted); max-width: 520px; line-height: 1.85; margin-bottom: 3rem; font-weight: 300; }
.gold-rule { width: 52px; height: 1px; background: var(--gold); margin: 1.25rem 0; }

/* ── DARK BAND ── */
.dark-band { background: var(--ink); padding: 5rem 6vw; }
.dark-band .section-eyebrow { color: var(--gold); }
.dark-band h2.section-title { color: var(--cream); }
.dark-band h2.section-title em { color: var(--gold); }
.dark-band .section-desc { color: rgba(250,248,244,0.5); }

/* ── CREAM BAND ── */
.cream-band { background: var(--cream-mid); padding: 5rem 6vw; }

/* ── SERVICE CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 2px; background: var(--cream-mid); }
.svc-card { background: var(--cream); padding: 2.5rem; transition: background 0.2s; position: relative; overflow: hidden; }
.svc-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.3s; }
.svc-card:hover { background: var(--white); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 48px; height: 48px; border: 1px solid var(--cream-mid); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold); margin-bottom: 1.5rem; transition: all 0.2s; }
.svc-card:hover .svc-icon { background: var(--gold); color: var(--white); border-color: var(--gold); }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--ink); margin-bottom: 0.65rem; }
.svc-card p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.8; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.1rem; }
.tech-tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); border: 1px solid var(--cream-deep); padding: 0.2rem 0.55rem; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 26px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--gold-light),transparent); }
.step { padding: 1.5rem; text-align: center; }
.step-num { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold); background: var(--ink); margin: 0 auto 1.25rem; position: relative; z-index: 1; }
.step h4 { font-size: 0.88rem; font-weight: 500; color: var(--cream); margin-bottom: 0.4rem; }
.step p { font-size: 0.8rem; color: rgba(250,248,244,0.5); line-height: 1.7; }

/* ── NUMBERS STRIP ── */
.numbers-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 2px; background: var(--cream-mid); }
.num-block { background: var(--white); padding: 2.25rem; text-align: center; }
.num-block .big { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--ink); line-height: 1; }
.num-block .big em { font-style: normal; color: var(--gold); }
.num-block .lbl { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.3rem; }

/* ── CASE CARDS ── */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px,1fr)); gap: 2px; background: var(--cream-mid); }
.case-card { background: var(--cream); padding: 2.5rem; transition: background 0.2s; position: relative; overflow: hidden; }
.case-card:hover { background: var(--white); }
.case-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.case-card:hover::after { transform: scaleX(1); }
.case-badge { display: inline-block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); background: var(--gold-dim); border: 1px solid var(--gold-light); padding: 0.25rem 0.65rem; margin-bottom: 1.25rem; }
.case-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 400; color: var(--ink); line-height: 1.3; margin-bottom: 0.7rem; }
.case-card p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.case-metrics { display: flex; gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--cream-mid); }
.metric .val { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; color: var(--ink); display: block; line-height: 1; }
.metric .val em { font-style: normal; color: var(--gold); }
.metric .lbl { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.testi { background: var(--white); padding: 2rem; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.testi:hover { border-bottom-color: var(--gold); }
.testi::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: var(--gold-light); line-height: 1; float: left; margin-right: 0.5rem; margin-top: -0.1rem; }
.testi blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; font-weight: 300; color: var(--ink); line-height: 1.75; margin-bottom: 1.25rem; padding-top: 0.75rem; overflow: hidden; }
.testi cite { font-size: 0.8rem; font-style: normal; color: var(--ink-muted); }
.testi cite strong { display: block; font-weight: 500; color: var(--ink); margin-bottom: 0.1rem; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; }
.team-card { background: var(--white); padding: 2rem; text-align: center; border-bottom: 2px solid transparent; transition: border-color 0.2s, transform 0.2s; }
.team-card:hover { border-bottom-color: var(--gold); transform: translateY(-3px); }
.avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--cream-mid); border: 2px solid var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold-dark); margin: 0 auto 1.25rem; }
.team-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--ink); margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.team-card p { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.7; }

/* ── ABOUT SPLIT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.about-text p { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.88; margin-bottom: 1.2rem; font-weight: 300; }
.value-list { margin-top: 2rem; }
.value-row { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--cream-mid); }
.v-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--gold-light); line-height: 1; min-width: 2.5rem; }
.value-row h4 { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.2rem; }
.value-row p { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.contact-info p { font-size: 0.95rem; color: var(--ink-muted); margin-bottom: 2rem; line-height: 1.85; font-weight: 300; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--cream-mid); }
.ci-icon { width: 36px; height: 36px; border: 1px solid var(--cream-mid); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.9rem; }
.ci-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.2rem; }
.ci-value { font-size: 0.9rem; color: var(--ink); }
.contact-form { background: var(--white); padding: 2.5rem; }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.45rem; font-weight: 500; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 0.8rem 1rem; background: var(--cream); border: 1px solid var(--cream-mid); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; resize: vertical; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select { appearance: none; cursor: pointer; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--ink-faint); }
.form-note { font-size: 0.74rem; color: var(--ink-faint); margin-top: 0.75rem; }
.form-success { display: none; margin-top: 1rem; padding: 1rem; background: #f0faf5; border-left: 3px solid #3aaa7a; font-size: 0.88rem; color: #1d6642; }

/* ── STRIP ── */
.strip { background: var(--cream-mid); border-top: 1px solid var(--cream-deep); border-bottom: 1px solid var(--cream-deep); padding: 1.5rem 6vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.strip p { font-size: 0.9rem; color: var(--ink-muted); }
.strip strong { color: var(--ink); }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.ftab { font-family: 'DM Sans', sans-serif; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1.25rem; border: 1px solid var(--cream-mid); background: transparent; color: var(--ink-muted); cursor: pointer; transition: all 0.2s; }
.ftab:hover { border-color: var(--gold); color: var(--ink); }
.ftab.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ── TECH GRID ── */
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 2px; background: var(--cream-mid); }
.tech-block { background: var(--cream); padding: 1.5rem; text-align: center; transition: background 0.2s; }
.tech-block:hover { background: var(--white); }
.tech-block .ticon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.tech-block span { font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-muted); }

/* ── RECOGNITION ROW ── */
.rec-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--cream-mid); }
.rec-row span { font-size: 0.9rem; color: var(--ink); }
.rec-row em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.faq-card { background: var(--white); padding: 1.75rem; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.faq-card:hover { border-bottom-color: var(--gold); }
.faq-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.faq-card p { font-size: 0.86rem; color: var(--ink-muted); line-height: 1.75; }

/* ── CTA BAND ── */
.cta-band { background: var(--ink); padding: 5rem 6vw; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 32px); }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--cream); margin-bottom: 1rem; position: relative; }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { font-size: 1rem; color: rgba(250,248,244,0.55); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.85; font-weight: 300; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── HERO (index only) ── */
.hero { min-height: calc(100vh - var(--nav-h)); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 6rem; padding: 5rem 6vw 4rem; position: relative; overflow: hidden; padding-top: calc(var(--nav-h) + 3rem); }
.hero::after { content: ''; position: absolute; top: 0; right: 0; width: 46%; height: 100%; background: var(--cream-mid); z-index: 0; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 46%; height: 100%; z-index: 1; background-image: repeating-linear-gradient(135deg, var(--cream-deep) 0px, var(--cream-deep) 1px, transparent 1px, transparent 28px); opacity: 0.5; }
.hero-text { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.65rem; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
h1.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 300; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 1.5rem; }
h1.hero-title em { font-style: italic; color: var(--gold); }
h1.hero-title strong { font-weight: 600; }
.hero-desc { font-size: 1rem; color: var(--ink-muted); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.85; font-weight: 300; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-end; }
.stat-card { background: var(--white); padding: 1.75rem 2rem; border-left: 3px solid var(--gold); width: 260px; transition: transform 0.2s; }
.stat-card:hover { transform: translateX(-4px); }
.stat-card .num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; line-height: 1; color: var(--ink); margin-bottom: 0.2rem; }
.stat-card .num em { font-style: normal; color: var(--gold); }
.stat-card .lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.stat-card:first-child { transform: translateX(-32px); }
.stat-card:first-child:hover { transform: translateX(-36px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: calc(var(--nav-h) + 4rem) 6vw 3rem; background: var(--cream); border-bottom: 1px solid var(--cream-mid); }
.page-hero .section-eyebrow { margin-bottom: 0.75rem; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 300; color: var(--ink); line-height: 1.1; margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 1rem; color: var(--ink-muted); max-width: 560px; line-height: 1.85; font-weight: 300; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 3.5rem 6vw 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.75rem; }
.footer-brand p { font-size: 0.83rem; color: rgba(250,248,244,0.4); margin-top: 0.75rem; line-height: 1.75; max-width: 250px; font-weight: 300; }
.footer-col h5 { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,248,244,0.3); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.84rem; color: rgba(250,248,244,0.55); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.76rem; color: rgba(250,248,244,0.3); }
.footer-badge { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 0.3rem 0.75rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--cream); text-decoration: none; display: flex; align-items: baseline; gap: 0.2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: calc(var(--nav-h) + 2rem) 6vw 3rem; }
  .hero::after, .hero::before { display: none; }
  .hero-visual { align-items: flex-start; }
  .stat-card:first-child { transform: none; }
  .about-split, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  nav { padding: 0 4vw; }
  .nav-links { gap: 1.25rem; }
  .nav-cta { display: none; }
  .page-hero { padding: calc(var(--nav-h) + 2rem) 4vw 2rem; }
}
