/* ============================================
   ALTURA COLLECTIVE — GLOBAL STYLES
   Brand System: Warm Neutral + Dark Luxe
   Font: Maleah (display), Belleza (accent), DM Sans (body)
   ============================================ */

/* --- FONTS --- */
@font-face {
  font-family: 'Maleah';
  src: url('fonts/maleah-light-webfont.woff2') format('woff2'),
       url('fonts/maleah-light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Maleah';
  src: url('fonts/maleah-regular-webfont.woff2') format('woff2'),
       url('fonts/maleah-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Maleah';
  src: url('fonts/maleah-bold-webfont.woff2') format('woff2'),
       url('fonts/maleah-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Maleah';
  src: url('fonts/maleah-italic-webfont.woff2') format('woff2'),
       url('fonts/maleah-italic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

/* --- VARIABLES --- */
:root {
  --espresso: #3A3330;
  --taupe: #8C7E72;
  --sand: #B5A191;
  --linen: #E8E2DA;
  --cream: #F5F0EB;
  --offwhite: #FAF8F6;
  --gold: #C4A97D;
  --gold-hover: #D4B98D;
  --dark: #1A1A1A;
  --charcoal: #5C5652;
  --white: #FFFFFF;

  --font-display: 'Maleah', 'Playfair Display', Georgia, serif;
  --font-accent: 'Belleza', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --max-width: 1280px;
  --max-width-narrow: 900px;
  --side-padding: 80px;
  --section-padding: 120px 0;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background: var(--dark, #1A1A1A); }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--espresso);
  background: var(--offwhite);
  line-height: 1.7;
  font-size: 16px;
  overscroll-behavior: none;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
a:visited { color: inherit; }
.header__logo, .header__logo:visited, .header__logo:active { color: #FFFFFF !important; }
.header__nav a:visited { color: var(--cream); }
.header__nav a.active:visited { color: var(--gold); }
.footer a:visited { color: inherit; }
.footer__blueprint-tagline, .footer__blueprint-tagline:visited { color: #FFFFFF !important; }
.footer__right-col a, .footer__right-col a:visited { color: var(--cream); }
.footer__explore-links a, .footer__explore-links a:visited { color: var(--cream); }
.footer__social a, .footer__social a:visited { color: var(--cream); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

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

/* --- TYPOGRAPHY --- */
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.label--light { color: var(--gold); }
.label--dark { color: var(--sand); }

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--espresso);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--espresso);
}

h3, .h3 {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.3;
  color: var(--espresso);
}

h4, .h4 {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--espresso);
}

.body-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--taupe);
}

.body-text--light { color: var(--sand); }

.subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--taupe);
  max-width: 640px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all 0.35s ease;
  text-align: center;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-hover);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--sand);
  color: var(--espresso);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-light {
  background: transparent;
  border: 1px solid rgba(196, 169, 125, 0.3);
  color: var(--cream);
}
.btn--outline-light:visited { color: var(--cream); }
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.text-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.3s ease;
}
.text-link:hover { gap: 18px; }
.text-link::after {
  content: '—';
  display: inline-block;
  transition: transform 0.3s ease;
}

/* --- HEADER / NAV --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--side-padding);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header--scrolled {
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 1px 0 rgba(196, 169, 125, 0.1);
}

.header__logo {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo-arch {
  width: 22px;
  height: auto;
  flex-shrink: 0;
}
.header__logo-arch path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.header__logo-full { display: inline; }
.header__logo-short { display: none; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.header__nav a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  transition: color 0.3s ease;
  position: relative;
}

.header__nav a:hover {
  color: var(--gold);
}
.header__nav a.active {
  color: #D4BC8E;
  text-shadow: 0 0 12px rgba(196,169,125,0.25);
}
.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Dropdown menu */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid rgba(196, 169, 125, 0.15);
  padding: 12px 0;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  margin-top: 12px;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  display: block;
  padding: 8px 24px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.12em !important;
  color: var(--sand) !important;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown a:hover {
  background: rgba(196, 169, 125, 0.08);
  color: var(--gold) !important;
}

/* Mobile menu toggle — arch mark icon */
.header__toggle {
  display: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  flex-direction: column;
  align-items: center;
}
.header__toggle-arch {
  width: 26px;
  height: auto;
  transition: opacity 0.3s ease;
}
.header__toggle-arch path {
  fill: none;
  stroke: var(--cream);
  stroke-width: 1.6;
  stroke-linecap: round;
  transition: stroke 0.3s ease;
}
.header__toggle:hover .header__toggle-arch path {
  stroke: var(--gold);
}
.header__toggle-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  text-align: center;
  margin-top: 2px;
  transition: color 0.3s ease;
}
.header__toggle:hover .header__toggle-label {
  color: var(--gold);
}
.header__toggle.active .header__toggle-arch { display: none; }
.header__toggle-close {
  display: none;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.header__toggle.active .header__toggle-close { display: block; }
.header__toggle.active .header__toggle-label { display: none; }

/* --- ANNOUNCEMENT BAR --- */
.announce-bar {
  background: var(--gold);
  padding: 10px 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: 38px;
}
/* Push header down when announce bar is present */
body:has(.announce-bar) .header {
  top: 38px;
}
body:has(.announce-bar) .hero {
  margin-top: 38px;
}
.announce-bar__text {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--dark);
}
.announce-bar__text strong { font-weight: 500; }
.announce-bar__link {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 1px;
  font-weight: 500;
  transition: opacity 0.3s;
}
.announce-bar__link:hover { opacity: 0.7; }
.announce-bar__link:visited { color: var(--dark); }
.announce-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--dark);
  font-size: 0.8rem;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.announce-bar__close:hover { opacity: 1; }

/* --- SEASONAL BAND --- */
.seasonal-band {
  background: var(--espresso);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seasonal-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(196,169,125,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,169,125,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.seasonal-band__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.seasonal-band__label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.seasonal-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.seasonal-band__desc {
  font-size: 0.85rem;
  color: var(--sand);
  margin-bottom: 28px;
  line-height: 1.7;
}
.seasonal-band__pricing {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
}
.seasonal-band__tier { text-align: center; }
.seasonal-band__tier-name {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 4px;
}
.seasonal-band__tier-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
}
.seasonal-band__btn {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
}
.seasonal-band__btn:hover {
  background: var(--gold);
  color: var(--dark);
}
.seasonal-band__btn:visited { color: var(--cream); }
.seasonal-band__btn:hover:visited { color: var(--dark); }

/* --- CTA BAND HERO VARIANT --- */
.cta-band--hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.cta-band--hero .cta-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-band--hero .cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26,26,26,0.60), rgba(26,26,26,0.70));
}
.cta-band--hero .container {
  position: relative;
  z-index: 1;
}
.cta-band--hero h2 {
  color: #FFFFFF;
}
.cta-band--hero .subtitle {
  color: var(--cream);
}
.cta-band--hero .btn--outline-light {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.cta-band--hero .btn--outline-light:hover {
  background: #FFFFFF;
  color: var(--dark);
}
.cta-band--hero .btn--outline-light:visited {
  color: #FFFFFF;
}

/* --- WHO WE SERVE — Signal Bar --- */
.serve-bar {
  background: #2A2724;
  padding: 32px 0;
  text-align: center;
}
.serve-bar__label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.serve-bar__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.serve-bar__item {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.serve-bar__item:visited { color: var(--cream); }
.serve-bar__item::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.serve-bar__item:hover { color: var(--gold); }
.serve-bar__item:hover::after { opacity: 1; }
.serve-bar__divider {
  width: 1px;
  height: 20px;
  background: rgba(196, 169, 125, 0.25);
  flex-shrink: 0;
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero--short {
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--side-padding);
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 36px;
}

/* --- SECTIONS --- */
.section {
  padding: var(--section-padding);
}

.section + .section,
.section + .cta-band,
.cta-band + .footer {
  border-top: 1px solid rgba(196, 169, 125, 0.15);
}

.section--dark + .section,
.section + .section--dark {
  border-top: none;
}

.section--cream { background: var(--cream); }
.section--offwhite { background: var(--offwhite); }
.section--linen { background: var(--linen); }
.section--dark { background: var(--dark); }
.section--dark .label { color: var(--gold); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .body-text { color: var(--sand); }
.section--dark .subtitle { color: var(--sand); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header .label { margin-bottom: 16px; }
.section__header h2 { margin-bottom: 16px; }
.section__header .subtitle { margin: 0 auto; }

/* --- TWO COLUMN LAYOUT --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col__img {
  overflow: hidden;
  position: relative;
}

.two-col__img img,
.two-col__img .placeholder-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Placeholder images (warm neutral gradients) */
.placeholder-img {
  width: 100%;
  display: block;
}

.placeholder-img--1 { background: linear-gradient(145deg, #D4CCC3, #E8E0D6, #CFC5BA); }
.placeholder-img--2 { background: linear-gradient(160deg, #E2DCD4, #D8D0C6, #C9BFB4); }
.placeholder-img--3 { background: linear-gradient(135deg, #DDD5CB, #E5DDD3, #D1C8BC); }
.placeholder-img--4 { background: linear-gradient(150deg, #CCC3B8, #DDD5CB, #C4BAB0); }
.placeholder-img--5 { background: linear-gradient(170deg, #E0D8CE, #D5CCC2, #C8BFB5); }
.placeholder-img--6 { background: linear-gradient(125deg, #D8D0C6, #E2DCD4, #CFC5BA); }
.placeholder-img--7 { background: linear-gradient(140deg, #D1C9BF, #E0D8CE, #C5BCB2); }
.placeholder-img--8 { background: linear-gradient(155deg, #DDD5CB, #CCC3B8, #E2DCD4); }

/* --- SERVICE CARDS --- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(58, 51, 48, 0.08);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__img img,
.service-card__img .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.service-card__body {
  padding: 32px;
}

.service-card__title {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--espresso);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-card__link:hover { color: var(--espresso); }

/* --- SERVICE FEATURE (horizontal cards) --- */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--linen);
}

.service-feature:last-of-type {
  border-bottom: none;
}

.service-feature__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-feature:hover .service-feature__img img {
  transform: scale(1.03);
}

.service-feature__text {
  padding: 20px 0;
}

.service-feature__text .label {
  margin-bottom: 12px;
}

.service-feature__text h2 {
  margin-bottom: 20px;
}

.service-feature--reverse {
  direction: rtl;
}

.service-feature--reverse > * {
  direction: ltr;
}

/* --- PROCESS STEPS --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 2px;
}

.process-step__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step__title {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--espresso);
  margin-bottom: 12px;
}

.process-step__desc {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.7;
}

/* --- VALUES / NUMBERED ITEMS --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

.value-item__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.value-item__title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--espresso);
  margin-bottom: 12px;
}

.value-item__desc {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.7;
}

/* --- PORTFOLIO GRID --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.portfolio-item { overflow: hidden; }

.portfolio-item__img {
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
}

.portfolio-item__img img,
.portfolio-item__img .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-item__img img,
.portfolio-item:hover .portfolio-item__img .placeholder-img {
  transform: scale(1.03);
}

.portfolio-item__title {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--espresso);
  margin-top: 16px;
  margin-bottom: 4px;
}

.portfolio-item__location {
  font-size: 0.8rem;
  color: var(--sand);
  letter-spacing: 0.05em;
}

/* --- TESTIMONIAL --- */
.testimonial {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.testimonial__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.7);
}

.testimonial__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.testimonial__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 48px;
}

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.testimonial__project {
  font-size: 0.75rem;
  color: var(--sand);
  margin-top: 4px;
}

/* --- CTA BAND --- */
.cta-band {
  padding: 100px 0;
  text-align: center;
  background: var(--offwhite);
}

.cta-band h2 {
  margin-bottom: 16px;
}

.cta-band .subtitle {
  margin: 0 auto 36px;
}

.cta-band__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- PRICING CARDS --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  padding: 48px 36px;
  border: 1px solid var(--linen);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 20px 60px rgba(58, 51, 48, 0.06);
}

.pricing-card--featured {
  border-color: var(--gold);
}

.pricing-card__badge {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.pricing-card__title {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--espresso);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-card__features li {
  font-size: 0.85rem;
  color: var(--charcoal);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.pricing-card__features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* --- BLOG CARDS --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-card__img img,
.blog-card__img .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img img,
.blog-card:hover .blog-card__img .placeholder-img {
  transform: scale(1.03);
}

.blog-card__category {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--espresso);
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 12px;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--sand);
}

/* --- CONTACT FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info__item {
  margin-bottom: 28px;
}

.contact-info__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--espresso);
  line-height: 1.6;
}

.form { background: var(--cream); padding: 48px; }

.form__title {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--espresso);
  margin-bottom: 32px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 8px;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--espresso);
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 14px 16px;
  transition: border-color 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--gold);
}

.form__textarea { min-height: 140px; resize: vertical; }

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--sand);
  font-weight: 300;
}

/* --- NEWSLETTER --- */
.newsletter {
  padding: 80px 0;
  text-align: center;
  background: var(--cream);
}

.newsletter h2 { margin-bottom: 12px; }

.newsletter .subtitle { margin: 0 auto 32px; }

.newsletter__form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--espresso);
  background: var(--white);
  border: 1px solid var(--linen);
  border-right: none;
  padding: 14px 20px;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.newsletter__input::placeholder { color: var(--sand); }

.newsletter__btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter__btn:hover { background: var(--gold-hover); }

/* --- FOOTER --- */
/* ===== WORKS GRID ===== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.works-grid__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  cursor: pointer;
}

.works-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 21/9;
}

.works-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.works-grid__item:hover img {
  transform: scale(1.04);
}

.works-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.works-grid__item:hover .works-grid__overlay {
  opacity: 1;
}

.works-grid__overlay span {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}

@media (max-width: 640px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
  .works-grid__item--wide {
    grid-column: span 1;
    aspect-ratio: 16/10;
  }
  .works-grid__overlay {
    opacity: 1;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 56px var(--side-padding) 40px;
}

.footer__main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(196, 169, 125, 0.1);
}

/* Blueprint title block - matches brand package horizontal lockup */
.footer__blueprint {
  border: 1px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  max-width: 300px;
  flex-shrink: 0;
}

.footer__blueprint-name {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 20px 24px 16px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
}

.footer__blueprint-info {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-bottom: 1px solid var(--gold);
}

.footer__blueprint-estd {
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 0 20px;
  text-align: center;
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__blueprint-city {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__blueprint-tagline {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 10px 24px;
  text-align: center;
}

.footer__social {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}

.footer__social a {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__social a:hover { color: var(--gold); }

.footer__columns {
  display: flex;
  gap: 64px;
  justify-content: flex-end;
  padding-top: 4px;
}

/* Footer F — Blueprint left, Explore+Connect far right */
.footer__main--compact {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__right {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 56px;
  justify-content: end;
  align-content: start;
}

.footer__right-col {
  padding-top: 4px;
}

/* Explore column — stacked sections with horizontal links */
.footer__explore-section {
  margin-bottom: 20px;
}
.footer__explore-section:last-child { margin-bottom: 0; }

.footer__explore-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
}

.footer__explore-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.footer__explore-links a {
  font-size: 0.88rem;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.footer__explore-links a:hover { color: var(--gold); }

/* Connect column */
.footer__right-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}
.footer__right-col a:hover { color: var(--gold); }

.footer__right-col .footer__col-subtle {
  font-size: 0.75rem !important;
  color: var(--sand) !important;
  margin-top: 8px;
}

.footer__col-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
  text-align: left;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--charcoal);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--charcoal);
  transition: color 0.3s ease;
}
.footer__legal a:hover { color: var(--sand); }

.footer__accent {
  height: 2px;
  max-width: var(--max-width);
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}

/* ===== EXIT-INTENT POPUP ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: exitFadeIn 0.3s ease;
}
.exit-overlay.visible { display: flex; }

@keyframes exitFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.exit-popup {
  background: var(--offwhite);
  border: 1px solid var(--gold);
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
}

.exit-popup__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.exit-popup__close:hover {
  background: var(--espresso);
}

.exit-popup__arch {
  width: 28px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}
.exit-popup__arch path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
}

.exit-popup__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--espresso);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.exit-popup__classified {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.exit-popup__desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 32px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.exit-popup__form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(196,169,125,0.6);
  margin-bottom: 12px;
}

.exit-popup__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--espresso);
  font-family: var(--font-body);
  outline: none;
}
.exit-popup__input::placeholder {
  color: var(--taupe);
  letter-spacing: 0.06em;
}

.exit-popup__submit {
  background: var(--gold);
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.exit-popup__submit:hover {
  background: var(--gold-hover);
}
.exit-popup__submit svg {
  width: 16px;
  height: 16px;
}

.exit-popup__fine {
  font-size: 0.75rem;
  color: var(--sand);
  font-style: italic;
}

.exit-popup__success {
  display: none;
  padding: 8px 0;
}
.exit-popup__success-title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--espresso);
  font-size: 1rem;
  margin-bottom: 6px;
}
.exit-popup__success-text {
  font-size: 0.78rem;
  color: var(--taupe);
}

/* ===== FLOATING ICONS ===== */
.floating-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(26,26,26,0.9);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.floating-btn:hover {
  background: rgba(44,40,36,0.95);
  border-color: var(--gold-hover);
}

.floating-cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
}

.floating-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.floating-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--linen);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--espresso);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.8;
}

/* --- ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  :root {
    --side-padding: 48px;
    --section-padding: 80px 0;
  }

  .header__nav { display: none; }
  .header__toggle { display: flex; }

  /* Mobile nav overlay */
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    padding: 48px 24px;
    gap: 24px;
    z-index: 999;
  }

  .header__nav.open a {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }

  .header__nav.open .has-dropdown {
    text-align: center;
  }

  /* Mobile dropdown - collapsed by default */
  .dropdown {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    padding: 0;
    min-width: auto;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .dropdown::before { display: none; }
  .has-dropdown.open .dropdown {
    max-height: 300px;
    padding: 8px 0 0 16px;
  }
  .dropdown a {
    padding: 6px 0 !important;
    font-size: 0.8rem !important;
    color: var(--taupe) !important;
  }
  .dropdown a:hover {
    background: transparent;
  }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* Short name on small screens */
@media (max-width: 480px) {
  .header__logo-full { display: none; }
  .header__logo-short { display: inline; }
}

@media (max-width: 768px) {
  :root {
    --side-padding: 24px;
    --section-padding: 64px 0;
  }

  .header { padding: 0 24px; }

  .hero { min-height: 500px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse { direction: ltr; }

  .service-cards { grid-template-columns: 1fr; }
  .service-feature { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .service-feature--reverse { direction: ltr; }
  .process-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .sectors-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .serve-bar__items { flex-direction: column; gap: 16px; }
  .serve-bar__divider { width: 40px; height: 1px; }
  .serve-bar__item { font-size: 1rem; }
  .announce-bar { flex-direction: column; gap: 8px; padding: 12px 40px; }
  .announce-bar__close { position: static; transform: none; margin-top: 4px; }
  .seasonal-band__pricing { flex-direction: column; gap: 20px; }
  .seasonal-band { padding: 48px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__main { grid-template-columns: 1fr; gap: 40px; }
  .footer__blueprint { max-width: 300px; width: 100%; margin: 0 auto; }
  .footer__blueprint-name { font-size: 1.3rem; padding: 16px 20px 12px; }
  .footer__blueprint-estd, .footer__blueprint-city { padding: 0 14px; min-height: 32px; }
  .footer__social { justify-content: center; }
  .footer__columns { flex-direction: column; gap: 32px; align-items: center; }
  .footer__main--compact { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer__right { grid-template-columns: 1fr; gap: 32px; justify-content: center; }
  .footer__right-col { text-align: center; }
  .footer__right-col a { text-align: center; }
  .footer__explore-links { justify-content: center; }
  .footer__explore-sub { text-align: center; }
  .footer__col-label { text-align: center; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cookie-banner { flex-direction: column; text-align: center; gap: 16px; }
  .cookie-banner__actions { justify-content: center; }
  .exit-popup { padding: 36px 24px; }
  .exit-popup__close { top: -12px; right: -12px; width: 32px; height: 32px; font-size: 0.85rem; }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 1px solid rgba(196,169,125,0.2);
  padding: 20px var(--side-padding);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner.visible {
  display: flex;
}
.cookie-banner__text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--sand);
  max-width: 600px;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 10px 20px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.cookie-banner__btn--accept {
  background: var(--gold);
  color: var(--dark);
}
.cookie-banner__btn--accept:hover {
  background: var(--gold-hover);
}
.cookie-banner__btn--decline {
  background: transparent;
  border: 1px solid rgba(196,169,125,0.3);
  color: var(--taupe);
}
.cookie-banner__btn--decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
