/* ==========================================================================
   DREAM LOOK EVENTS — Shared Stylesheet
   Brand tokens sourced from Dream Look Events Brand Identity Guidelines v1.0
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700&display=swap');

:root {
  /* Brand colours — exact values from brand guide */
  --maroon: #6E0F16;
  /* Deep Royal Maroon — primary */
  --maroon-dark: #4A0810;
  /* Maroon Dark — secondary */
  --gold: #E2BC6B;
  /* Soft Gold — accent */
  --gold-dark: #C9963E;
  /* Gold Dark — supporting accent */
  --ivory: #F7F3ED;
  /* Ivory — neutral */
  --ivory-cream: #E7E3DD;
  /* Ivory Cream — deep neutral */

  --ink: #2B1113;
  /* warm near-black for body copy */
  --ink-soft: #6b5a56;
  /* muted body copy on light */
  --white: #FFFFFF;

  --font-display: 'Cinzel Decorative', serif;
  --font-body: 'Cinzel', serif;

  --container: 1180px;
  --radius: 2px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}

section,
footer,
.cta-banner,
.quote-band {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
}

::selection {
  background: var(--gold);
  color: var(--maroon-dark);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width:640px) {
  .container {
    padding: 0 20px;
  }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold-dark);
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(34px, 5.2vw, 64px);
  letter-spacing: .01em;
}

h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}

h3 {
  font-size: clamp(19px, 2.2vw, 24px);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .03em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  font-size: 16px;
}

.lede {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 640px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section--tight {
  padding: 70px 0;
}

@media (max-width:780px) {
  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding: 50px 0;
  }
}

.section--maroon {
  background: var(--maroon-dark);
  color: var(--ivory);
}

.section--maroon h2,
.section--maroon h3 {
  color: var(--white);
}

.section--maroon p {
  color: #e9d7c9;
}

.section--cream {
  background: var(--ivory-cream);
}

.section-head {
  max-width: 680px;
  margin: 0 0 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 14px;
}

.gold-rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin: 20px 0;
}

.section-head.center .gold-rule {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .35s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--gold);
  box-shadow: 0 8px 24px -8px rgba(74, 8, 16, .5);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(201, 150, 62, .6);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(226, 188, 107, .55);
}

.btn-outline:hover {
  background: rgba(226, 188, 107, .12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--maroon-dark);
  border-color: var(--maroon);
}

.btn-outline-dark:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform .3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ---------- Signature flame mark ---------- */
.flame {
  display: block;
}

.flame path {
  fill: none;
  stroke: url(#flameGrad);
  stroke-width: 6;
  stroke-linecap: round;
}

.watermark-flame {
  position: absolute;
  pointer-events: none;
  opacity: .07;
  z-index: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 237, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(110, 15, 22, .1);
  transition: background .3s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .flame-icon {
  width: 26px;
  height: 34px;
}

.brand-logo {
  height: 88px !important;
  width: auto !important;
  object-fit: contain !important;
}

.footer-logo {
  height: 160px !important;
  width: auto !important;
  object-fit: contain !important;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .06em;
  color: var(--maroon-dark);
  line-height: 1.1;
}

.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .42em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--maroon-dark);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold-dark);
  transition: width .3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--maroon);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta .btn {
  padding: 12px 22px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--maroon-dark);
  margin: 5px 0;
  transition: .3s;
}

@media (max-width:1180px) {
  body {
    padding-top: 120px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--maroon-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 34px 34px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -20px 0 50px rgba(0, 0, 0, .3);
    z-index: 105;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--ivory);
    font-size: 14px;
  }

  .nav-links a.active {
    color: var(--gold);
  }

  .nav-links a::after {
    background: var(--gold);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    z-index: 110;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width:1181px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px clamp(16px, 3vw, 32px);
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-row-gap: 8px;
    grid-column-gap: clamp(14px, 2.2vw, 28px);
    justify-content: center;
    justify-items: center;
  }

  .nav-cta {
    border-left: 1px solid rgba(110, 15, 22, 0.25);
    padding-left: clamp(14px, 2.2vw, 24px);
    margin-left: clamp(14px, 2.2vw, 24px);
  }
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(74, 8, 16, .55);
  border: 1px solid var(--gold-dark);
  transition: transform .3s var(--ease);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  background: var(--maroon-dark);
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--maroon-dark);
  color: var(--ivory);
  overflow: hidden;
  padding: 150px 0 130px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background:linear-gradient(to bottom, rgba(74,8,16,.85) 0%, rgba(43,17,19,.9) 100%); */
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(226, 188, 107, .35);
  pointer-events: none;
  z-index: 3;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(226, 188, 107, .14), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(110, 15, 22, .5), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.hero .watermark-flame {
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

.hero-inner .eyebrow {
  color: var(--gold);
}

.hero-inner .eyebrow::before {
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin: 22px 0 24px;
}

.hero .lede {
  color: #eaddce;
}

.hero .btn-row {
  margin-top: 38px;
}

.hero-page {
  padding: 120px 0 90px;
}

.hero-page h1 {
  color: var(--white);
}

/* ---------- Cards ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width:900px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.pillar {
  background: var(--white);
  border-top: 3px solid var(--gold-dark);
  padding: 30px 24px;
  text-align: center;
}

.pillar h3 {
  font-size: 14px;
  letter-spacing: .16em;
  margin: 0 0 10px;
}

.pillar p {
  font-size: 14px;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width:900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  background: var(--white);
  padding: 38px 30px;
  border: 1px solid rgba(110, 15, 22, .08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -20px rgba(74, 8, 16, .28);
  border-color: var(--gold-dark);
}

.service-card .icon {
  width: 36px;
  height: 36px;
  color: var(--maroon);
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.service-card h3 {
  color: var(--maroon-dark);
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
  line-height: 1.25;
}

.service-card p {
  font-size: 14.5px;
  margin: 0;
  grid-column: 1 / span 2;
  grid-row: 2;
  margin-top: 16px;
}

/* ---------- Photo placeholder blocks (no external photos used — see note) ---------- */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, rgba(226, 188, 107, .16), rgba(110, 15, 22, .06)),
    repeating-linear-gradient(45deg, rgba(110, 15, 22, .05) 0 2px, transparent 2px 14px);
  border: 1px solid rgba(110, 15, 22, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  color: var(--maroon);
  min-height: 220px;
}

.ph .ph-icon {
  width: 34px;
  height: 34px;
  opacity: .55;
}

.ph span {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--maroon);
  opacity: .65;
  text-align: center;
  padding: 0 14px;
  font-weight: 600;
}

.ph.tall {
  min-height: 340px;
}

.ph.short {
  min-height: 160px;
}

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width:860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.split.reverse .split-media {
  order: 2;
}

@media (max-width:860px) {
  .split.reverse .split-media {
    order: 0;
  }
}

/* ---------- Quote / stat band ---------- */
.quote-band {
  background: var(--maroon);
  color: var(--ivory);
  text-align: center;
  padding: 64px 32px;
}

.quote-band p {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--gold);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}

.quote-band span {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e9d7c9;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(226, 188, 107, .25);
  border-bottom: 1px solid rgba(226, 188, 107, .25);
}

@media (max-width:700px) {
  .stat-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 36px 12px;
  border-left: 1px solid rgba(226, 188, 107, .2);
}

.stat:first-child {
  border-left: none;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold);
}

.stat span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #e9d7c9;
}

/* ---------- Process steps ---------- */
.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid rgba(110, 15, 22, .12);
}

.steps .step:last-child {
  border-bottom: 1px solid rgba(110, 15, 22, .12);
}

.step-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--gold-dark);
  line-height: 1;
}

@media (max-width:600px) {
  .step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
  }

  .step-num {
    font-size: 26px;
  }
}

/* ---------- Why choose grid ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(226, 188, 107, .25);
}

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

.value-cell {
  background: var(--maroon-dark);
  padding: 38px;
}

.value-cell h3 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: .1em;
}

.value-cell p {
  color: #e9d7c9;
  font-size: 14.5px;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

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

.testi {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid rgba(110, 15, 22, .1);
  position: relative;
}

.testi .mark {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.testi p {
  font-size: 14.5px;
  font-style: normal;
  color: var(--ink);
  margin-bottom: 18px;
}

.testi .who {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 700;
}

.testi .who small {
  display: block;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 2px;
}

/* ---------- Gallery ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--maroon);
  color: var(--maroon);
  background: transparent;
  font-weight: 600;
  transition: all .3s var(--ease);
}

.filter-btn:hover {
  background: rgba(110, 15, 22, .06);
}

.filter-btn.active {
  background: var(--maroon);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width:860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gallery-item {
  display: none;
}

.gallery-item.show {
  display: block;
  animation: fadeUp .5s var(--ease);
}

.gallery-item .ph {
  min-height: 230px;
}

.gallery-cap {
  padding: 14px 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.gallery-cap b {
  font-size: 13px;
  color: var(--maroon-dark);
  letter-spacing: .03em;
}

.gallery-cap span {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-dark);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Case studies ---------- */
.case-study {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  border: 1px solid rgba(110, 15, 22, .12);
  margin-bottom: 26px;
}

@media (max-width:820px) {
  .case-study {
    grid-template-columns: 1fr;
  }
}

.case-study .ph {
  min-height: 100%;
  border: none;
}

.case-body {
  padding: 38px;
  background: var(--white);
}

.case-body .eyebrow {
  margin-bottom: 14px;
}

.case-body h3 {
  margin-bottom: 16px;
}

.case-row {
  margin-bottom: 14px;
}

.case-row b {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 4px;
}

.case-row p {
  margin: 0;
  font-size: 14.5px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--maroon-dark);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  border: 1px solid rgba(110, 15, 22, .25);
  background: var(--white);
  padding: 14px 16px;
  font-size: 14.5px;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color .3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-dark);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--maroon);
}

.checkbox-row label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 16px;
}

.form-success {
  display: none;
  background: var(--ivory-cream);
  border-left: 3px solid var(--gold-dark);
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--maroon-dark);
  margin-top: 18px;
}

.form-success.show {
  display: block;
  animation: fadeUp .4s var(--ease);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(226, 188, 107, .3);
  margin-top: 70px;
}

@media (max-width:860px) {
  .contact-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-cell {
  background: var(--white);
  padding: 30px 24px;
}

.contact-cell .eyebrow {
  margin-bottom: 10px;
  font-size: 10.5px;
}

.contact-cell a,
.contact-cell p {
  font-size: 14px;
  color: var(--maroon-dark);
  font-weight: 600;
  margin: 0;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--maroon);
  color: var(--white);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(226, 188, 107, .4);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
}

.cta-banner p {
  color: #eaddce;
  max-width: 560px;
  margin: 16px auto 34px;
}

.cta-banner .btn-row {
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--maroon-dark);
  color: #d9c3b3;
  padding: 80px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 60px;
}

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

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

.footer-brand .brand-text {
  color: var(--white);
}

.footer-brand p {
  color: #c9ab98;
  font-size: 13.5px;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-body);
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col a {
  font-size: 13.5px;
  color: #d9c3b3;
  transition: color .25s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(226, 188, 107, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-social a:hover {
  background: rgba(226, 188, 107, .15);
  border-color: var(--gold);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(226, 188, 107, .18);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #a98a76;
}

/* ---------- Utility ---------- */
.center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.stack-lg>*+* {
  margin-top: 22px;
}