/* ============================================================
   VIVIDO ARCHITECT — STYLESHEET
   Sections:
   1.  Reset & Design Tokens
   2.  Typography
   3.  Navigation
   4.  Mobile Menu
   5.  Hero
   6.  Stats Bar
   7.  Services
   8.  Portfolio / Projects
   9.  About
   10. Process
   11. Testimonials
   12. Contact
   13. Newsletter & Footer
   14. Floating CTA
   15. Page Loader
   16. Scroll Reveal Animations
   17. Responsive
   ============================================================ */


/* ── 1. Reset & Design Tokens ──────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --off-white: #f8f6f3;
  --cream: #f0ede8;
  --charcoal: #1a1a1a;
  --gray: #6b6b6b;
  --light-gray: #e8e5e0;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: auto;
}

/* Lenis handles smooth scroll — native smooth conflicts with it */

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}


/* ── 2. Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--charcoal);
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.15;
}

.section-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}

section {
  padding: 100px 8%;
}


/* ── 3. Navigation ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: none;
  /* logo is white on black — shows great on dark hero */
  transition: filter var(--transition);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.65);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

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

.nav-links a:hover {
  color: #f0ede8;
}

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

.nav-links a.active {
  color: #f0ede8;
}

/* Once scrolled, switch to dark text */
nav.scrolled .nav-links a {
  color: var(--gray);
}

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

nav.scrolled .logo-img {
  filter: invert(1);
}

.nav-cta {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--gold);
  color: #0e0d0b;
  border-color: var(--gold);
}

nav.scrolled .nav-cta {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

nav.scrolled .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 310;
  width: 36px;
  height: 36px;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
  display: block;
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ── 4. Mobile Menu ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.mobile-links li {
  overflow: hidden;
}

.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.06em;
  line-height: 1.2;
  transition: color 0.2s;
  display: block;
  text-align: center;
}

.mobile-link:hover {
  color: var(--gold);
}

.mobile-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
  margin-top: 8px;
}

.mobile-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.mobile-footer-info {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mobile-footer-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.1em;
}


/* ── 5. Hero ───────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: #0a0908;
  display: flex;
  flex-direction: column;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

/* Multi-directional overlay — dark bottom for text, lighter top for drawing */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 7, 6, 0.97) 0%, rgba(8, 7, 6, 0.65) 35%, rgba(8, 7, 6, 0.1) 65%, rgba(8, 7, 6, 0) 100%),
    linear-gradient(to right, rgba(8, 7, 6, 0.6) 0%, rgba(8, 7, 6, 0.2) 40%, rgba(8, 7, 6, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Full-height inner flex column */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 96px 6% 52px;
  width: 100%;
}

/* Top strip */
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-counter {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(240, 237, 232, 0.25);
  font-family: 'Cormorant Garamond', serif;
}

/* Headline centred vertically */
.hero-headline-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(68px, 10.5vw, 158px);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: #f0ede8;
  user-select: none;
}

.hero-headline span {
  display: block;
}

.hero-headline .hl-2 {
  padding-left: 7vw;
  /* rhythmic offset — signature visual */
  color: var(--gold);
}

.hero-headline em {
  font-style: italic;
}

.hero-headline .hl-3 {
  padding-left: 14vw;
}

/* Bottom strip */
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-tagline {
  font-size: 13px;
  color: rgba(240, 237, 232, 0.48);
  line-height: 1.9;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 320px;
}

.hero-btns {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #0a0908;
  padding: 14px 32px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Architect card — inspired by HOUSEN property card */
.hero-arch-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(12, 11, 9, 0.72);
  border: 1px solid rgba(201, 169, 110, 0.18);
  padding: 14px 20px 14px 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.hero-arch-card:hover {
  border-color: rgba(201, 169, 110, 0.45);
}

.hero-arch-card img {
  width: 54px;
  height: 64px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%);
}

.hero-arch-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-arch-info strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  color: #f0ede8;
  letter-spacing: 0.04em;
}

.hero-arch-info span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.75);
}

.hero-arch-tag {
  margin-top: 4px;
  color: rgba(240, 237, 232, 0.25) !important;
}


.hero-scroll-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-v__label {
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.55);
}
.hero-scroll-v__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnimV 2s ease-in-out infinite;
}
@keyframes scrollAnimV {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Hero architect ribbon */
.hero-arch-ribbon { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,237,232,0.55); }
.hero-arch-ribbon__photo { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; object-position: center 20%; }
.hero-arch-ribbon strong { color: var(--cream, #f0ede8); font-weight: 500; }

/* SR-only utility */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }


/* Stats removed — §3 */


/* ── 7. Services ─────────────────────────────────────────────── */
.services {
  background: var(--off-white);
}
.services-head .eyebrow {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px;
}
.services-global-head {
  margin-bottom: 48px;
}
.services-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.services-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.services-eyebrow span {
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}
.services-super-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.15;
}
.services-super-title em {
  font-style: italic; color: var(--gold);
}

.services-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
}

.service-hero {
  background: #1a1a1a;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.service-focus-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 600;
  margin-top: 16px;
}
.service-num-large {
  font-family: 'Cormorant Garamond', serif; font-size: 100px; color: rgba(201,169,110,0.15); font-weight: 300; line-height: 0.8;
  font-variant-numeric: lining-nums;
}
.service-hero-mid h3 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px); color: #fff; font-weight: 300; line-height: 1.15; margin-bottom: 24px; margin-top: 40px;
}
.service-hero-mid h3 em { font-style: italic; color: var(--gold); }
.service-hero-mid p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 340px; font-weight: 300; }

.service-stats {
  display: flex; flex-direction: row; gap: 80px; margin-top: 80px;
}
.s-stat { display: flex; flex-direction: column; gap: 8px; }
.s-stat .s-n { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--gold); line-height: 1; font-variant-numeric: lining-nums; }
.s-stat small { font-family: 'Inter', sans-serif; font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 600; }

.service-list {
  list-style: none; padding: 0; margin: 0;
  background: var(--white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.service-list li {
  display: flex; gap: 40px; align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-list li:first-child { padding-top: 0; }
.service-list li:last-child { border-bottom: none; padding-bottom: 0; }
.service-list .n {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; color: rgba(201,169,110,0.6); font-weight: 300; line-height: 1; min-width: 32px; margin-top: 2px;
  font-variant-numeric: lining-nums;
}
.service-list h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--charcoal); font-weight: 400; margin-bottom: 12px; line-height: 1;
}
.service-list p {
  font-size: 13px; color: #666; line-height: 1.8; font-weight: 300; max-width: 300px;
}


/* ── 8. Portfolio / Projects ───────────────────────────────── */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}

.filter-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 22px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--light-gray);
  color: var(--gray);
  cursor: pointer;
  transition: all 0.22s;
  font-family: 'Inter', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  height: 380px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(16, 14, 10, 0.92) 0%, transparent 100%);
  padding: 48px 24px 24px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}

.project-card:hover .project-info {
  opacity: 1;
  transform: translateY(0);
}

.project-cat {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.project-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
}


/* ── 9. About ──────────────────────────────────────────────── */
.about {
  background: var(--off-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
}

.about-photo-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(26, 26, 26, 0.85); /* dark charcoal */
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  z-index: 10;
}
.about-photo-badge span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}
.about-photo-badge small {
  display: block;
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.about-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.about-eyebrow span {
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-text p em {
  color: var(--charcoal);
  font-style: italic;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.cred {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--light-gray);
}
.cred:last-child { 
  border-bottom: none; 
}

.cred-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.5;
  margin-top: 1px;
  font-variant-numeric: lining-nums;
}

.cred b {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.cred small {
  display: block;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}


/* ── 10. Process ───────────────────────────────────────────── */
.process {
  background: #1a1a1a;
  padding: 100px 8%;
}

.process-header {
  margin-bottom: 80px;
}
.process-eyebrow {
  display: flex; gap: 16px; align-items: center; margin-bottom: 24px;
}
.process-eyebrow-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.5; }
.process-eyebrow span { font-size: 10px; color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; font-family: 'Inter', sans-serif;}

.process-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 52px); color: #fff; font-weight: 300; line-height: 1.15;
}
.process-title em { font-style: italic; color: var(--gold); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.step {
  padding: 0 40px 0 0;
  position: relative;
}

.step-dot {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
}
.step-dot span { font-size: 10px; color: var(--gold); font-family: 'Inter', sans-serif; font-weight: 500;}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: lining-nums;
}

.step h4 {
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
}


/* ── 11. Testimonials ──────────────────────────────────────── */
.testimonials-section {
  background: var(--cream);
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 320px;
  line-height: 1;
  color: var(--charcoal);
  opacity: 0.04;
  position: absolute;
  top: -40px;
  left: 7%;
  pointer-events: none;
  user-select: none;
}

.testi-inner {
  position: relative;
  display: flex;
  flex-direction: column;
}

.testi-header {
  width: 50%;
  padding-right: 80px;
  margin-bottom: 56px;
}

.testi-header-row {
  display: flex; justify-content: space-between; align-items: flex-end; width: 100%;
}

.testi-eyebrow {
  display: flex; gap: 16px; align-items: center; margin-bottom: 24px;
}
.testi-eyebrow-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.5; }
.testi-eyebrow span { font-size: 10px; color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; font-family: 'Inter', sans-serif;}

.testi-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 52px); color: var(--charcoal); font-weight: 300; line-height: 1.15; max-width: 100%;
}

.testi-arrows { display: flex; gap: 12px; }
.testi-arrow { width: 48px; height: 48px; border: 1px solid var(--charcoal); background: none; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--charcoal); transition: all 0.2s; font-size: 18px; }
.testi-arrow.next { background: var(--charcoal); color: #fff; }
.testi-arrow.prev:hover { background: rgba(0,0,0,0.05); }
.testi-arrow.next:hover { opacity: 0.9; }

.testi-content-area {
  position: relative;
}

.testi-track-wrap {
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  gap: 40px;
}

.testi-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  flex: 0 0 100%;
}

.testi-slide-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40px;
}

.testi-slide-visual {
  height: 600px;
}

.testi-slide-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--charcoal);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 48px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--gold-light);
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  margin-bottom: 4px;
}

.testi-location {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.testi-bars {
  position: absolute;
  bottom: 0;
  display: flex; gap: 12px; justify-content: flex-start; align-items: center;
}

.testi-bar {
  width: 12px; height: 2px; border-radius: 1px; background: rgba(0,0,0,0.1); border: none; cursor: pointer; transition: all 0.3s;
}
.testi-bar.active {
  width: 24px; background: var(--gold);
}


/* ── 12. Contact ───────────────────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.contact-info>p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.cd-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cd-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.cd-value {
  font-size: 14px;
  color: var(--charcoal);
}

.cd-link {
  text-decoration: none;
  color: var(--charcoal);
  transition: color 0.2s;
  display: inline-block;
}

.cd-link:hover {
  color: var(--gold);
}

.insta-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  border: 1px solid var(--light-gray);
  padding: 12px 20px;
  transition: all 0.25s;
}

.insta-cta:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: var(--off-white);
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
}

input,
textarea,
select {
  border: 1px solid var(--light-gray);
  background: var(--off-white);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.submit-btn {
  background: var(--charcoal);
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.submit-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-1px);
}

.btn-arrow {
  transition: transform 0.2s;
}

.submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.form-note {
  font-size: 13px;
  color: var(--gray);
  min-height: 20px;
}


/* ── 13. Newsletter & Footer ───────────────────────────────── */
.newsletter-strip {
  background: var(--gold);
  padding: 40px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.newsletter-strip h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--charcoal);
  font-weight: 400;
  flex: 1;
  min-width: 220px;
}

.newsletter-strip h4 span {
  font-style: italic;
}

.newsletter-form {
  display: flex;
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
  flex: 1;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--charcoal);
  outline: none;
}

.newsletter-input::placeholder {
  color: #8a7a6a;
}

.newsletter-btn {
  background: var(--charcoal);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #333;
}

/* Footer */
footer {
  background: var(--charcoal);
  padding: 80px 8% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo-link {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* Logo is white on black — on dark footer it looks great as-is */
  filter: brightness(1);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.9;
  margin-top: 20px;
  max-width: 260px;
}

.footer-studio-info {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 50px;
  padding-top: 1px;
  flex-shrink: 0;
}

.footer-info-value {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.footer-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

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

.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: all 0.22s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}


/* ── 14. Floating CTA ──────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 150;
  background: var(--charcoal);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transition: background 0.25s, transform 0.25s, opacity 0.3s;
  opacity: 0;
  transform: translateY(10px);
}

.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}


/* ── 15. Page Loader ───────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.3em;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: var(--gold);
  animation: loaderFill 1.4s ease-in-out forwards;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes loaderFill {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}


/* ── 16. Scroll Reveal Animations ──────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="fade-up"] {
  transform: translateY(30px);
}

[data-reveal="fade-down"] {
  transform: translateY(-30px);
}

[data-reveal="fade-left"] {
  transform: translateX(30px);
}

[data-reveal="fade-right"] {
  transform: translateX(-30px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered delay support */
[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}


/* ── 17. Utilities & Keyframes ─────────────────────────────── */
@keyframes scrollAnim {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform-origin: top;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  [data-reveal],
  .page-loader,
  .testi-track,
  .scroll-line {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}



/* ── Tablet landscape (1024px) ─────────────────────────────── */
@media (max-width: 1100px) {
  section {
    padding: 88px 6%;
  }

  .testimonials-section {
    padding: 88px 6%;
  }

  .p1 {
    grid-column: span 7;
    height: 420px;
  }

  .p2 {
    grid-column: span 5;
    height: 420px;
  }

  .p3,
  .p4,
  .p5 {
    height: 320px;
  }

  .about-inner {
    gap: 56px;
  }

  .testi-slide {
    gap: 48px;
  }

  /* Footer — 4 cols is too cramped at this width */
  .footer-top {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

/* ── Tablet portrait (900px) ───────────────────────────────── */
@media (max-width: 900px) {
  section {
    padding: 80px 6%;
  }

  .testimonials-section {
    padding: 80px 6%;
  }

  /* Stats */
  .stats {
    flex-wrap: wrap;
  }

  .stat {
    border-right: none;
    border-bottom: none;
  }

  /* Testimonials */
  .testi-slide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testi-slide-visual {
    display: none;
  }

  /* About */
  .about-inner {
    gap: 40px;
  }

  /* Contact — collapse to single col at 900 so form isn't squished */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  /* Newsletter */
  .newsletter-strip {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
    width: 100%;
  }

  .newsletter-strip h4 {
    min-width: unset;
  }
}

/* ── Mobile landscape / large phone (768px) ────────────────── */
@media (max-width: 768px) {

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .logo-img {
    height: 38px;
  }

  /* Hero */
  .hero-inner {
    padding: 88px 5% 44px;
  }

  .hero-headline {
    font-size: clamp(48px, 11vw, 76px);
  }

  .hero-headline .hl-2 {
    padding-left: 5vw;
  }

  .hero-headline .hl-3 {
    padding-left: 10vw;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-arch-card {
    display: none;
  }

  .hero-counter {
    display: none;
  }

  .hero-scroll {
    margin-top: 20px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  /* Sections */
  section {
    padding: 64px 5%;
  }

  .stats {
    padding: 52px 5%;
  }

  .testimonials-section {
    padding: 64px 5%;
  }

  .testimonials-section::before {
    font-size: 160px;
    top: -10px;
    left: 4%;
  }

  .testi-header {
    width: 100%;
    padding-right: 0;
    margin-bottom: 32px;
  }

  .testi-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testi-arrows {
    display: none;
  }

  .testi-slide-text {
    padding-top: 0;
  }

  .testi-quote {
    font-size: clamp(20px, 5vw, 26px);
    margin-bottom: 32px;
  }

  .testi-bars {
    position: relative;
    margin-top: 32px;
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .p1,
  .p2,
  .p3,
  .p4,
  .p5 {
    grid-column: span 1;
    height: 260px;
  }

  .project-info {
    opacity: 1;
    transform: translateY(0);
  }

  /* always visible on touch */

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-accent {
    display: none;
  }

  .about-img-wrap {
    order: -1;
  }

  .about-photo {
    height: 380px;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  footer {
    padding: 60px 5% 32px;
  }

  /* Float CTA */
  .float-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
  }

  .float-cta span {
    display: none;
  }

  /* Services */
  .services-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-hero {
    padding: 48px 32px;
  }

  .service-stats {
    margin-top: 48px;
    gap: 40px;
  }

  .service-list {
    padding: 32px 24px;
  }

  /* Portfolio filter */
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .filter-btns {
    flex-wrap: wrap;
  }

  /* Process */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-connector {
    display: none;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 20px;
  }

  .step:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }

  .step:nth-child(3),
  .step:nth-child(4) {
    border-bottom: none;
  }

  .step-dot {
    display: none;
  }
}

/* ── Small mobile (480px) ──────────────────────────────────── */
@media (max-width: 480px) {

  /* Hero */
  .hero-inner {
    padding: 80px 5% 36px;
  }

  .hero-headline {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-tagline {
    font-size: 13px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-btns .btn-primary {
    display: block;
    text-align: center;
  }

  .hero-btns .btn-secondary {
    display: block;
    text-align: center;
    padding-bottom: 10px;
    border-bottom-width: 1px;
  }

  /* Typography */
  .section-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  /* Stats */
  .stats {
    flex-direction: column;
    align-items: center;
    padding: 44px 5%;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    padding: 20px 24px;
  }

  .stat:last-child {
    border-bottom: none;
  }

  /* Services */
  .services-layout {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding: 36px 20px;
  }

  .service-stats {
    gap: 24px;
    margin-top: 36px;
  }

  .service-list {
    padding: 24px 16px;
  }

  .service-list li {
    gap: 16px;
    padding: 24px 0;
  }

  /* Projects */
  .p1,
  .p2,
  .p3,
  .p4,
  .p5 {
    height: 220px;
  }

  /* About photo */
  .about-photo {
    height: 300px;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .step:nth-child(odd) {
    border-right: none;
  }

  .step:last-child {
    border-bottom: none;
  }

  /* Testimonials */
  .testi-arrows {
    display: none;
  }

  .testi-quote {
    font-size: 20px;
  }

  /* Newsletter */
  .newsletter-strip {
    padding: 32px 5%;
  }

  .newsletter-strip h4 {
    font-size: 22px;
  }

  .newsletter-form {
    flex-direction: column;
    box-shadow: none;
  }

  .newsletter-input {
    border: 1px solid rgba(0, 0, 0, 0.15);
  }

  .newsletter-btn {
    width: 100%;
    padding: 14px;
  }

  /* Contact */
  .contact-info h3 {
    font-size: 22px;
  }

  /* Footer */
  .footer-logo-img {
    height: 40px;
  }

  .footer-bottom-links {
    gap: 12px;
  }

  footer {
    padding: 48px 5% 28px;
  }
}


/* ── 18. Vivido Brand Mark (nav logo) ──────────────────────── */
.vivido-brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.vivido-brand__mark {
  height: 48px; width: auto; display: block;
  /* no filters — the PNG is already colored */
}
.vivido-brand__type { display: inline-flex; flex-direction: column; gap: 4px; line-height: 1; }
.vivido-brand__name {
  font-family: 'Cormorant Garamond', serif; /* match existing site */
  font-size: 22px; letter-spacing: 0.12em; color: #f3e9d2;
}
.vivido-brand__tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px; letter-spacing: 0.24em; color: #8a857c; text-transform: uppercase;
}

/* When scrolled, invert the brand name to dark */
nav.scrolled .vivido-brand__name {
  color: var(--charcoal);
}
nav.scrolled .vivido-brand__tag {
  color: var(--gray);
}

@media (max-width: 640px) {
  .vivido-brand__mark { height: 40px; }
  .vivido-brand__name { font-size: 18px; }
  .vivido-brand__tag { display: none; } /* keep the mobile nav compact */
  .hero-arch-ribbon { display: none; }
}