/* ═══════════════════════════════════════════════════════════════════════════
   O'BRIEN & SONS PAINTING — Luxury Stylesheet
   Palette: Cream (#F8F5EF) · Charcoal (#2C2C2C) · Gold (#B8973A)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom Properties ──────────────────────────────────────────────────── */
:root {
  /* Colours */
  --cream:          #F8F5EF;
  --cream-dark:     #EDE8DF;
  --cream-deeper:   #DDD5C4;
  --charcoal:       #2C2C2C;
  --charcoal-soft:  #4A4A4A;
  --charcoal-light: #6E6E6E;
  --gold:           #B8973A;
  --gold-light:     #D4AF5A;
  --gold-pale:      #F0E6C8;
  --white:          #FFFFFF;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --section-gap: clamp(5rem, 10vw, 9rem);
  --container:   1180px;
  --gap:         1.5rem;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:     cubic-bezier(0.55, 0.055, 0.675, 0.19);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(44,44,44,0.07);
  --shadow-md:  0 8px 32px rgba(44,44,44,0.10);
  --shadow-lg:  0 20px 60px rgba(44,44,44,0.14);
}

/* ── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

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

ul, ol { list-style: none; }

/* ── Container ───────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Section Shared ──────────────────────────────────────────────────────── */
.section {
  padding: var(--section-gap) 0;
}

.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header--light .section-eyebrow,
.section-header--light .section-title,
.section-header--light .section-intro {
  color: var(--cream);
}

.section-header--light .section-eyebrow {
  color: var(--gold-light);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title--left { text-align: left; }

.section-intro {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,151,58,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248,245,239,0.5);
}

.btn--ghost:hover {
  background: rgba(248,245,239,0.12);
  border-color: var(--cream);
  color: var(--cream);
}

.btn--sm { padding: 0.75rem 1.5rem; font-size: 0.7rem; }
.btn--full { width: 100%; }

/* ══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248,245,239,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s var(--ease);
  border-bottom: 1px solid rgba(184,151,58,0.12);
}

.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-decoration: none;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: 0.02em;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  transition: color 0.2s;
}

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

.nav__cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.4rem;
  letter-spacing: 0.12em;
  border: 1.5px solid var(--gold);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s !important;
}

.nav__cta:hover {
  background: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
  box-shadow: 0 4px 16px rgba(184,151,58,0.3);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(44,44,44,0.95) 0%, rgba(44,44,44,0.7) 60%, rgba(184,151,58,0.15) 100%),
    /* subtle grid pattern */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(184,151,58,0.04) 59px,
      rgba(184,151,58,0.04) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(184,151,58,0.04) 59px,
      rgba(184,151,58,0.04) 60px
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 780px;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(248,245,239,0.72);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.4);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ══════════════════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-deeper);
  border-bottom: 1px solid var(--cream-deeper);
  padding: 2.75rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-item__number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.trust-item__number sup {
  font-size: 0.55em;
  vertical-align: super;
}

.trust-item__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 0.4rem;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--cream-deeper);
}

/* ══════════════════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(184,151,58,0.12);
  position: relative;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::after { width: 100%; }

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

.service-card--accent {
  background: var(--charcoal);
  border-color: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.service-card--accent::after { background: var(--gold-light); }

.service-card--accent .service-card__title { color: var(--cream); }
.service-card--accent .service-card__desc  { color: rgba(248,245,239,0.65); }

/* ══════════════════════════════════════════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════════════════════════════════════════ */
.portfolio__filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(248,245,239,0.25);
  background: transparent;
  color: rgba(248,245,239,0.55);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.filter-btn:hover,
.filter-btn--active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,151,58,0.08);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--gap);
}

.portfolio-card {
  background: #1C1C1C;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.portfolio-card__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 240px;
  overflow: hidden;
}

.ba-wrapper {
  position: relative;
  overflow: hidden;
}

.ba-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
}

.ba-label--before {
  background: rgba(44,44,44,0.8);
  color: rgba(248,245,239,0.7);
}

.ba-label--after {
  background: var(--gold);
  color: var(--white);
}

.ba-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.ba-placeholder--before {
  background: #2A2A2A;
}

.ba-placeholder--after {
  background: linear-gradient(135deg, #3A3020, #2C2C1A);
  border-left: 1px solid rgba(184,151,58,0.3);
}

.ba-placeholder span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(248,245,239,0.45);
  line-height: 1.5;
}

.portfolio-card__info {
  padding: 1.5rem;
  border-top: 1px solid rgba(184,151,58,0.18);
}

.portfolio-card__info h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.portfolio-card__info p {
  font-size: 0.8rem;
  color: rgba(248,245,239,0.5);
  line-height: 1.7;
}

.portfolio__note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: rgba(248,245,239,0.4);
}

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════════════════ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__image-frame {
  position: relative;
  padding-bottom: 1.5rem;
  padding-right: 1.5rem;
}

.about__image-frame::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80%;
  height: 80%;
  border: 1.5px solid var(--gold);
  z-index: 0;
}

.about__image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 125%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about__image-placeholder span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  text-align: center;
  padding: 1rem;
  line-height: 1.6;
}

.about__image-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  width: 100px;
  height: 100px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
}

.badge__number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.badge__label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  margin-top: 0.2rem;
}

.about__text-col p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about__text-col .section-title { margin-bottom: 1.5rem; }

.about__signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-deeper);
}

.about__sig-line {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  height: 2px;
  width: 80px;
  background: var(--gold);
}

.about__sig-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400 !important;
  color: var(--charcoal) !important;
  margin-bottom: 0.2rem !important;
}

.about__sig-title {
  font-size: 0.7rem !important;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   PROCESS
   ══════════════════════════════════════════════════════════════════════════ */
.process__steps {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  counter-reset: none;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-deeper);
}

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

.process-step__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: right;
}

.process-step__content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.process-step__content p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════════ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
}

.testimonial {
  padding: 2.5rem;
  border: 1px solid rgba(184,151,58,0.18);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(248,245,239,0.8);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial__footer {
  border-top: 1px solid rgba(184,151,58,0.2);
  padding-top: 1rem;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.testimonial__author {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.45);
}

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════════════════ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact__text .section-title { margin-bottom: 1.25rem; }

.contact__text p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact__direct { margin-top: 2.5rem; }

.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}

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

.contact__hours {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

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

.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--cream-deeper);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  width: 100%;
  appearance: none;
}

.form-group 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 d='M1 1l5 5 5-5' stroke='%23B8973A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,58,0.1);
}

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

.contact__form .btn--full { grid-column: 1 / -1; }

.form__note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--charcoal-light);
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #1A1A1A;
  padding-top: 4rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184,151,58,0.12);
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.footer__tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__area {
  font-size: 0.78rem;
  color: rgba(248,245,239,0.4);
}

.footer__links nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links nav a {
  font-size: 0.78rem;
  color: rgba(248,245,239,0.55);
  transition: color 0.2s;
}

.footer__links nav a:hover { color: var(--gold); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__contact a {
  font-size: 0.82rem;
  color: rgba(248,245,239,0.55);
  transition: color 0.2s;
}

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

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.7rem;
  color: rgba(248,245,239,0.25);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger siblings */
.services__grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services__grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services__grid .service-card:nth-child(4) { transition-delay: 0.24s; }
.services__grid .service-card:nth-child(5) { transition-delay: 0.32s; }
.services__grid .service-card:nth-child(6) { transition-delay: 0.40s; }

.portfolio__grid .portfolio-card:nth-child(2) { transition-delay: 0.1s; }
.portfolio__grid .portfolio-card:nth-child(3) { transition-delay: 0.2s; }
.portfolio__grid .portfolio-card:nth-child(4) { transition-delay: 0.1s; }
.portfolio__grid .portfolio-card:nth-child(5) { transition-delay: 0.2s; }
.portfolio__grid .portfolio-card:nth-child(6) { transition-delay: 0.3s; }

.testimonials__grid .testimonial:nth-child(2) { transition-delay: 0.12s; }
.testimonials__grid .testimonial:nth-child(3) { transition-delay: 0.24s; }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about__inner    { grid-template-columns: 1fr; }
  .contact__inner  { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: fixed;
    inset: 76px 0 0;
    background: rgba(248,245,239,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }

  .nav__links--open { display: flex; }

  .nav__links a {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .nav__cta { padding: 0.85rem 2rem; font-size: 0.85rem; }

  /* Hero */
  .hero__headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero__actions  { flex-direction: column; }

  /* Trust bar */
  .trust-divider { display: none; }
  .trust-bar__inner { gap: 1.5rem; }

  /* Portfolio */
  .portfolio__grid { grid-template-columns: 1fr; }

  /* Contact form */
  .contact__form { grid-template-columns: 1fr; }
  .contact__form .btn--full { grid-column: 1; }

  /* Process */
  .process-step { flex-direction: column; gap: 0.5rem; }
  .process-step__number { width: auto; text-align: left; }
}

@media (max-width: 540px) {
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .portfolio-card__before-after { height: 200px; }
}

/* ── Print ───────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .hero__scroll-hint, .nav__toggle { display: none; }
  .hero { min-height: auto; padding: 3rem 0; }
}
