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

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

:root {
  --navy: #1A2B3D;
  --navy-mid: #243648;
  --cream: #F8F7F4;
  --cream-dark: #EFEde8;
  --bronze: #8A7A63;
  --bronze-light: #a8967a;
  --bronze-pale: rgba(138,122,99,0.15);
  --text-body: #3a3a3a;
  --shadow-sm: 0 2px 12px rgba(26,43,61,0.07);
  --shadow-md: 0 6px 30px rgba(26,43,61,0.12);
  --shadow-lg: 0 16px 48px rgba(26,43,61,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 600; margin-bottom: 1.25rem; }
h3 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--bronze); text-underline-offset: 3px; transition: color 0.2s; }
a:hover { color: var(--bronze); }

ul { padding-left: 1.25rem; }
li { margin-bottom: 0.5rem; }

img { max-width: 100%; height: auto; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 2.75rem 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.65s ease forwards; }
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
  transition: box-shadow 0.3s;
  border-bottom: 1px solid rgba(138,122,99,0.15);
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 58px;
  width: auto;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.nav-logo:hover img { opacity: 1; }

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links li { margin: 0; }

.nav-links a {
  color: rgba(248,247,244,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  display: block;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--bronze-light); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem 2rem 1.75rem;
    gap: 0;
    border-top: 1px solid rgba(138,122,99,0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem 0; font-size: 0.85rem; border-bottom: 1px solid rgba(248,247,244,0.07); }
  .nav-links li:last-child a { border-bottom: none; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-cream {
  background: var(--cream);
  color: var(--navy);
  box-shadow: 0 2px 16px rgba(248,247,244,0.15);
}

.btn-cream:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(248,247,244,0.25);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--cream);
}

.btn-featured {
  background: var(--cream);
  color: var(--navy);
  box-shadow: 0 0 0 2px rgba(138,122,99,0.5), 0 4px 20px rgba(138,122,99,0.25);
  position: relative;
  letter-spacing: 0.08em;
}

.btn-featured::after {
  content: '→';
  margin-left: 0.6rem;
  font-weight: 400;
  transition: margin-left 0.2s;
}

.btn-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px var(--bronze), 0 8px 28px rgba(138,122,99,0.35);
  color: var(--navy);
}

.btn-featured:hover::after { margin-left: 0.9rem; }

.text-link {
  color: rgba(248,247,244,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(138,122,99,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.text-link:hover { color: var(--bronze-light); border-color: var(--bronze-light); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  padding: 5.5rem 2rem 4.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('london-skyline.png');
  background-size: cover;
  background-position: center 60%;
  opacity: 0.15;
  z-index: 0;
}

.hero-monogram {
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(14rem, 28vw, 26rem);
  font-weight: 700;
  color: rgba(248,247,244,0.035);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-inner {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 0.35rem;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero .subheadline {
  color: rgba(248,247,244,0.78);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-cta { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

/* ── OUTCOME CARDS ── */
.outcome-cards {
  background: var(--navy-mid);
  padding: 0;
  border-top: 1px solid rgba(138,122,99,0.2);
  border-bottom: 1px solid rgba(138,122,99,0.2);
}

.outcome-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.outcome-card {
  padding: 2.25rem 1.75rem;
  text-align: center;
  border-right: 1px solid rgba(138,122,99,0.2);
  transition: background 0.2s;
}

.outcome-card:last-child { border-right: none; }
.outcome-card:hover { background: rgba(138,122,99,0.08); }

.outcome-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
}
.outcome-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--bronze);
}

.outcome-card h3 {
  font-family: 'Inter', sans-serif;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-card { border-bottom: 1px solid rgba(138,122,99,0.2); }
  .outcome-card:nth-child(2n) { border-right: none; }
}

/* ── SECTION SHARED ── */
.section-light { background: var(--cream); }
.section-alt { background: var(--cream-dark); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy h2 { color: var(--cream); }
.section-navy p { color: rgba(248,247,244,0.82); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

.section-divider {
  width: 2.5rem;
  height: 2px;
  background: var(--bronze);
  margin-bottom: 1.75rem;
}

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 0.5rem;
}

.problem-group {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(138,122,99,0.2);
  background: white;
  box-shadow: var(--shadow-sm);
}

.problem-group-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
  display: block;
}

.problem-group ul { list-style: none; padding: 0; }

.problem-group li {
  padding: 0.6rem 0 0.6rem 1.25rem;
  position: relative;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(26,43,61,0.07);
  line-height: 1.55;
}

.problem-group li:last-child { border-bottom: none; }
.problem-group li::before { content: '—'; position: absolute; left: 0; color: var(--bronze); }

.problem-closing {
  margin-top: 2.5rem;
  max-width: 660px;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.8;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  padding-left: 1.5rem;
  border-left: 3px solid var(--bronze);
}

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ── PULL QUOTE ── */
.pull-quote-section {
  background: var(--navy);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pull-quote-section::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(138,122,99,0.06);
  line-height: 1;
  pointer-events: none;
}

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.pull-quote span { color: var(--bronze-light); }

/* ── CREDIBILITY ── */
.credibility-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.credibility-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.credibility-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .credibility-layout { grid-template-columns: 1fr; }
  .credibility-image { order: -1; }
  .credibility-image img { height: 260px; }
}

.credibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 2rem;
}

.credibility-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(138,122,99,0.2);
  margin: -1px 0 0 -1px;
  align-items: flex-start;
}

.credibility-check {
  color: var(--bronze-light);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.credibility-item p {
  font-size: 0.95rem;
  color: rgba(248,247,244,0.82);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .credibility-grid { grid-template-columns: 1fr; }
}

/* ── PROMISE GRID ── */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.promise-item {
  background: white;
  padding: 2rem;
  border: 1px solid rgba(138,122,99,0.18);
  box-shadow: var(--shadow-sm);
}

.promise-icon {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--bronze);
  margin-bottom: 0.85rem;
}

.promise-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.promise-item p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 640px) {
  .promise-grid { grid-template-columns: 1fr; }
}

/* ── SERVICE CARDS ── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  border: 1px solid rgba(138,122,99,0.18);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(138,122,99,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after { transform: scaleX(1); }

.service-card-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--bronze);
  display: block;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  color: var(--navy);
}

.service-card p { color: var(--text-body); font-size: 0.95rem; flex-grow: 1; line-height: 1.7; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  color: var(--bronze);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: gap 0.2s, color 0.2s;
}

.card-link:hover { color: var(--navy); gap: 0.65rem; }

@media (max-width: 768px) { .service-cards { grid-template-columns: 1fr; } }

/* ── HOW IT WORKS ── */
.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(138,122,99,0.18);
  align-items: flex-start;
}

.step:first-child { border-top: 1px solid rgba(138,122,99,0.18); }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--bronze);
  opacity: 0.45;
  line-height: 1;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.step-content p { color: rgba(248,247,244,0.75); font-size: 0.97rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--cream); margin-bottom: 1.25rem; }
.cta-section p { color: rgba(248,247,244,0.78); max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
.cta-section .cta-note { font-size: 0.88rem; color: rgba(248,247,244,0.5); margin-bottom: 2.5rem; }

/* ── VISION / SIX MONTHS ── */
.vision-section { background: var(--navy); }

.vision-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.vision-item {
  padding: 1.75rem;
  border: 1px solid rgba(138,122,99,0.2);
  background: rgba(138,122,99,0.05);
}

.vision-item p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .vision-items { grid-template-columns: 1fr; }
}

/* ── COST OF WAITING ── */
.cost-statement {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-body);
}

.cost-statement + .cost-statement { margin-top: 1.25rem; }

.cost-emphasis {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--navy);
  max-width: 640px;
  margin-top: 2rem;
  line-height: 1.45;
  font-weight: 600;
}

/* ── SERVICE PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 5.5rem 2rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,43,61,0.75);
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: var(--cream); margin-bottom: 1rem; max-width: 700px; }
.page-hero .breadcrumb {
  color: rgba(248,247,244,0.45);
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-hero .breadcrumb a { color: rgba(248,247,244,0.45); text-decoration: none; transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--bronze); }

/* ── SERVICE PAGE CONTENT ── */
.service-what-list { list-style: none; padding: 0; }

.service-what-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(138,122,99,0.2);
  font-size: 0.97rem;
  color: rgba(248,247,244,0.82);
  line-height: 1.6;
  align-items: flex-start;
}

.service-what-list li:first-child { border-top: 1px solid rgba(138,122,99,0.2); }

.service-what-list li::before {
  content: '→';
  color: var(--bronze-light);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0 2.5rem;
  border: 1px solid rgba(138,122,99,0.2);
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(138,122,99,0.15);
}

.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-item strong { color: var(--bronze); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; min-width: 75px; padding-top: 2px; }
.contact-detail-item a { color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-detail-item a:hover { color: var(--bronze); }

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
}

.form-group input,
.form-group textarea {
  background: white;
  border: 1px solid rgba(26,43,61,0.18);
  border-radius: 2px;
  padding: 0.9rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(138,122,99,0.1);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* ── FAQ ── */
.faq-list { margin-top: 1.5rem; }

.faq-item {
  border-bottom: 1px solid rgba(138,122,99,0.2);
  padding: 1.75rem 0;
}

.faq-item:first-child { border-top: 1px solid rgba(138,122,99,0.2); }
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--cream);
}
.faq-a {
  color: rgba(248,247,244,0.72);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── CHANGES BOX ── */
.changes-box {
  background: var(--navy);
  color: var(--cream);
  padding: 3rem;
  border-left: 3px solid var(--bronze);
  box-shadow: var(--shadow-md);
}

.changes-box h2 { color: var(--cream); margin-bottom: 1rem; }
.changes-box p { color: rgba(248,247,244,0.82); font-size: 1.05rem; line-height: 1.85; }

@media (max-width: 640px) { .changes-box { padding: 2rem 1.5rem; } }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 3.5rem 2rem 2.5rem;
  border-top: 1px solid rgba(138,122,99,0.2);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo img {
  height: 44px;
  width: auto;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer-logo:hover img { opacity: 0.85; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.25rem;
  justify-content: center;
}

.footer-nav a {
  color: rgba(248,247,244,0.45);
  font-size: 0.78rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--bronze-light); }

.footer-divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(138,122,99,0.15);
}

.footer-legal {
  color: rgba(248,247,244,0.3);
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  section { padding: 2.75rem 0; }
  .container { padding: 0 1.25rem; }
  .cta-section { padding: 5rem 1.5rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
