/* ═══════════════════════════════════════════════════════
   HUNTERVPHOTOGRAPHY — style.css
   Dark Cinematic Luxury Theme
═══════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ─────────────────────────────── */
:root {
  /* Colors */
  --c-bg:        #1c1c1e;
  --c-bg-2:      #242426;
  --c-bg-3:      #2c2c2e;
  --c-surface:   #323234;
  --c-border:    rgba(255,255,255,.10);
  --c-border-hi: rgba(255,255,255,.20);

  --c-text:      #f0ece4;
  --c-text-2:    #b0a99f;
  --c-text-3:    #7a726b;

  --c-gold:      #c9a84c;
  --c-gold-lt:   #e0c06a;
  --c-gold-dk:   #9e7d2e;

  --c-white:     #ffffff;

  /* Typography */
  --f-display:  'Cormorant Garamond', Georgia, serif;
  --f-body:     'DM Sans', sans-serif;

  /* Spacing */
  --sidebar-w:  240px;
  --section-px: clamp(1.5rem, 5vw, 4rem);
  --section-py: clamp(5rem, 10vh, 8rem);

  /* Transitions */
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-out:   cubic-bezier(.16,1,.3,1);
}

/* ── 2. RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* iPhone Safari tap fix */
a, button, [role="button"], .filter-btn, .btn, .port-item, .price-card, .sidebar__link, .mobile-nav__link {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-bg-2); }
::-webkit-scrollbar-thumb { background: var(--c-gold-dk); border-radius: 2px; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* ── 3. SIDEBAR ───────────────────────────────────── */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  z-index: 100;
  border-right: 1px solid var(--c-border);
  background: rgba(28,28,30,.95);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.sidebar__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.75rem;
}

/* Logo */
.sidebar__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  margin-bottom: 2.5rem;
}
.logo-mark {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: .05em;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.logo-text {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-text-2);
  line-height: 1.2;
}

/* Nav links */
.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.sidebar__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-3);
  padding: .65rem .5rem;
  transition: color .25s var(--ease);
  border-radius: 4px;
}

.sidebar__link::after {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px; height: 60%;
  background: var(--c-gold);
  border-radius: 2px;
  transition: transform .25s var(--ease-out);
}

.sidebar__link:hover,
.sidebar__link.active {
  color: var(--c-text);
}

.sidebar__link:hover::after,
.sidebar__link.active::after {
  transform: translateY(-50%) scaleY(1);
}

/* CTA in sidebar */
.sidebar__cta {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: center;
}

.sidebar__meta {
  margin-top: 1rem;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-3);
  text-align: center;
}

/* ── 4. MOBILE HEADER ─────────────────────────────── */
.mobile-header {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  padding: 0 1.25rem;
  align-items: center;
  justify-content: space-between;
  background: rgba(28,28,30,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mobile-logo .logo-mark { width: 32px; height: 32px; font-size: 1rem; }
.mobile-logo .logo-text  { font-size: .65rem; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-text);
  transition: transform .3s var(--ease), opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 299;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  z-index: 300;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--c-bg-2);
  border-left: 1px solid var(--c-border);
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: .5rem;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav__close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: 1.1rem;
  color: var(--c-text-2);
  padding: 6px;
}

.mobile-nav__link {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-2);
  padding: .85rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: color .2s;
}
.mobile-nav__link:hover { color: var(--c-text); }
.mobile-nav__btn { margin-top: 1.5rem; text-align: center; }

/* ── 5. MAIN CONTENT OFFSET ───────────────────────── */
.main-content {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

/* ── 6. BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--c-gold);
  color: #0b0b0b;
  border: 1px solid var(--c-gold);
}
.btn--gold:hover {
  background: var(--c-gold-lt);
  border-color: var(--c-gold-lt);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border-hi);
}
.btn--ghost:hover {
  border-color: var(--c-text-2);
  background: rgba(255,255,255,.04);
}

.btn--outline {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid rgba(201,168,76,.35);
  font-size: .68rem;
}
.btn--outline:hover {
  background: rgba(201,168,76,.08);
  border-color: var(--c-gold);
}

.btn--sm { padding: .6rem 1.25rem; font-size: .7rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── 7. SECTION SHARED STYLES ─────────────────────── */
.section {
  padding: var(--section-py) var(--section-px);
  position: relative;
  overflow: hidden;
}

.section__tag {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 1.25rem;
}
.section__title em {
  font-style: italic;
  color: var(--c-gold);
}

.section__sub {
  font-size: .95rem;
  color: var(--c-text-2);
  max-width: 520px;
  line-height: 1.7;
}

.section__header {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

/* ── 8. HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--section-px);
  overflow: hidden;
}

/* Background — swap this <div> for a real <img> or background-image */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hero__img-placeholder {
  width: 100%; height: 100%;
  /* ↓↓↓ YOUR HERO IMAGE — just change the filename if needed ↓↓↓ */
  background: url('assets/images/hero.jpg') center/cover no-repeat;
  pointer-events: none;
}

/* Multi-layer gradient overlay for cinematic feel */
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(28,28,30,.85) 0%, rgba(28,28,30,.4) 50%, rgba(28,28,30,.2) 100%),
    linear-gradient(to top,   rgba(28,28,30,.85) 0%, transparent 50%);
}

/* Film-grain noise texture */
.hero__noise {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .035;
  pointer-events: none;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 2rem;
}

.hero__eyebrow {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--c-gold);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--c-white);
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .1em;
}
.hero__headline em {
  font-style: italic;
  color: var(--c-gold);
}

.hero__sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

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

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 5rem; left: var(--section-px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.scroll-line {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-text-3);
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* Stats bar */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--c-border);
  background: rgba(28,28,30,.75);
  backdrop-filter: blur(8px);
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  gap: .25rem;
}

.stat__num {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
}
.stat__num sup {
  font-size: .7rem;
  color: var(--c-gold);
  vertical-align: super;
}
.stat__label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-3);
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--c-border);
  flex-shrink: 0;
}

/* ── 9. PORTFOLIO ─────────────────────────────────── */
.portfolio {
  background: var(--c-bg-2);
}

.portfolio__filters {
  display: flex;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .55rem 1.1rem;
  border: 1px solid var(--c-border);
  border-radius: 2px;
  color: var(--c-text-2);
  background: transparent;
  transition: all .25s var(--ease);
}
.filter-btn:hover {
  color: var(--c-text);
  border-color: var(--c-border-hi);
}
.filter-btn.active {
  background: var(--c-gold);
  color: #0b0b0b;
  border-color: var(--c-gold);
}

/* Uniform 3:2 seamless grid */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.port-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 2;
  background: transparent;
  transition: transform .4s var(--ease);
}
.port-item.hidden {
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
  position: absolute;
}

.port-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}

.port-item > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.port-item:hover .port-item__img {
  transform: scale(1.04);
}

.port-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.port-item:hover .port-item__overlay { opacity: 1; }

.port-item__label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-2);
}

.portfolio__cta {
  margin-top: 3rem;
  text-align: center;
}

/* ── 10. SERVICES ─────────────────────────────────── */
.services {
  background: var(--c-bg-3);
}

.services__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 600;
  color: rgba(255,255,255,.015);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: .05em;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--c-bg-3);
  padding: 2.5rem 2rem;
  transition: background .3s;
  animation-delay: var(--delay, 0s);
}
.service-card:hover { background: var(--c-surface); }

.service-card__icon {
  width: 44px; height: 44px;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  opacity: .85;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: .75rem;
  line-height: 1.2;
}

.service-card__desc {
  font-size: .85rem;
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.service-card__list li {
  font-size: .75rem;
  color: var(--c-text-3);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-card__list li::before {
  content: '—';
  color: var(--c-gold);
  font-size: .65rem;
  flex-shrink: 0;
}

/* CTA card */
.service-card--cta {
  background: var(--c-bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.service-card__cta-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.service-card__cta-title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--c-white);
  line-height: 1.2;
}

/* ── 11. PRICING ──────────────────────────────────── */
.pricing {
  background: var(--c-bg);
}

/* Outer layout: 6-card grid + includes sidebar */
.pricing__layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: stretch;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* 6-card grid lives inside pricing__layout */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--c-bg);
  align-items: stretch;
}

.price-card {
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: background .3s;
  overflow: hidden;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.price-card:nth-child(3n)        { border-right: none; }
.price-card:nth-last-child(-n+3) { border-bottom: none; }
.price-card:hover { background: var(--c-bg-2); }

/* Square footage — bigger and prominent */
.price-card__range {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: .4rem;
  line-height: 1.3;
  width: 100%;
  text-align: center;
}

/* Package name — below sq ft */
.price-card__name {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
  width: 100%;
  text-align: center;
}

/* Soft divider between name and price */
.price-card__divider {
  width: 100%;
  height: 1px;
  background: rgba(201,168,76,.35);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

/* Price — sits below divider, plain display (no button behaviour) */
.price-card__price {
  font-family: var(--f-body);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 100%;
}
.price-card__price sup {
  font-size: 1.1rem;
  vertical-align: super;
  color: var(--c-text-2);
  line-height: 0;
}
.price-card__price--custom {
  font-size: 2rem;
  color: var(--c-gold);
}

/* Featured card — same as regular now */
.price-card--featured {
  background: var(--c-bg);
}
.price-card--featured:hover { background: var(--c-bg-2); }

.price-card__badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-gold);
  color: #0b0b0b;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
}

/* Custom card */
.price-card--custom {
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg-3) 100%);
}

/* Includes sidebar — spans full height of the 6-card grid */
.pricing__includes {
  background: var(--c-bg-3);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  align-self: stretch;
  border-left: 1px solid var(--c-border);
}

.pricing__includes-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
}

.pricing__includes-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 1.75rem;
}
.pricing__includes-list li {
  font-size: .85rem;
  color: var(--c-text-2);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.pricing__includes-list li::before {
  content: '✓';
  font-size: .7rem;
  color: var(--c-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing__includes-divider {
  width: 100%;
  height: 1px;
  background: var(--c-border);
  margin-bottom: 1.5rem;
}

.pricing__includes-note {
  font-size: .78rem;
  color: var(--c-text-3);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* Add-ons — tighter top margin */
.addons {
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 2rem;
}

.addons__title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 1.75rem;
}

.addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.addon-item {
  background: var(--c-bg);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .2s;
}
.addon-item:hover { background: var(--c-bg-2); }

.addon-item__name {
  font-size: .95rem;
  color: var(--c-text-2);
}
.addon-item__price {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-gold);
  white-space: nowrap;
}

.addons__note {
  font-size: .75rem;
  color: var(--c-text-3);
}

/* ── 12. ABOUT ────────────────────────────────────── */
.about {
  background: var(--c-bg-2);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about__visual { position: relative; }

.about__img-frame {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 440px;
}

.about__img-placeholder {
  width: 100%; height: 100%;
  border-radius: 2px;
  /* ↓↓↓ YOUR ABOUT PHOTO — just change the filename if needed ↓↓↓ */
  background: url('assets/images/about.jpg') center/cover no-repeat;
}

.about__title { margin-top: .5rem; }

.about__body {
  font-size: .95rem;
  color: var(--c-text-2);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about__body em {
  font-style: italic;
  color: var(--c-text);
}

.about__trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.trust-item__icon {
  font-size: 1rem;
  width: 32px; height: 32px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.trust-item strong {
  font-size: .8rem;
  font-weight: 500;
  color: var(--c-text);
}
.trust-item span {
  font-size: .78rem;
  color: var(--c-text-3);
}

/* ── 13. CONTACT ──────────────────────────────────── */
.contact {
  background: var(--c-bg);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact__desc {
  font-size: .9rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .85rem;
  color: var(--c-text-2);
  transition: color .2s;
}
a.contact-detail:hover { color: var(--c-text); }

.contact-detail__icon {
  width: 18px; height: 18px;
  color: var(--c-gold);
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 100%; height: 100%; }

/* Calendly placeholder */
.calendly-placeholder {
  border: 1px dashed var(--c-border);
  border-radius: 4px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
}
.calendly-placeholder span { font-size: 1.5rem; }
.calendly-placeholder p {
  font-size: .8rem;
  color: var(--c-text-3);
  line-height: 1.6;
}

/* Checkbox group for add-ons */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  overflow: hidden;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem .85rem;
  cursor: pointer;
  border-bottom: 1px solid var(--c-border);
  transition: background .2s;
  user-select: none;
}
.checkbox-item:last-child { border-bottom: none; }
.checkbox-item:hover { background: var(--c-bg-3); }

/* Hide native checkbox */
.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}

/* Custom box */
.checkbox-box {
  width: 15px;
  height: 15px;
  border: 1px solid var(--c-border-hi);
  border-radius: 2px;
  background: transparent;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s;
}
.checkbox-box::after {
  content: '';
  width: 8px; height: 5px;
  border-left: 1.5px solid #0b0b0b;
  border-bottom: 1.5px solid #0b0b0b;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity .15s;
}

/* Checked state */
.checkbox-item input[type="checkbox"]:checked ~ .checkbox-box {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.checkbox-item input[type="checkbox"]:checked ~ .checkbox-box::after {
  opacity: 1;
}
.checkbox-item input[type="checkbox"]:checked ~ .checkbox-label {
  color: var(--c-text);
}

.checkbox-label {
  font-size: .88rem;
  color: var(--c-text-2);
  transition: color .2s;
  text-transform: none;
  letter-spacing: 0;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

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

.form-group label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-3);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: .85rem;
  padding: .75rem 1rem;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: var(--c-surface);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-text-3); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235e5954' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--c-bg-2); }

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

.form__note {
  font-size: .72rem;
  color: var(--c-text-3);
  text-align: center;
}

/* Submit button loading state */
.btn.loading {
  opacity: .7;
  cursor: wait;
  pointer-events: none;
}

.form-success {
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(201,168,76,.04);
}
.form-success__icon {
  font-size: 2rem;
  color: var(--c-gold);
  width: 56px; height: 56px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: .75rem;
}
.form-success p {
  font-size: .85rem;
  color: var(--c-text-2);
}

/* ── 14. FOOTER ───────────────────────────────────── */
.footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  padding: 3rem var(--section-px);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer__brand .logo-mark { width: 32px; height: 32px; font-size: .95rem; }
.footer__brand .logo-text { font-size: .65rem; }

.footer__tagline {
  font-size: .72rem;
  color: var(--c-text-3);
  letter-spacing: .08em;
}

.footer__links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-3);
  transition: color .2s;
}
.footer__links a:hover { color: var(--c-gold); }

.footer__copy {
  font-size: .68rem;
  color: var(--c-text-3);
  letter-spacing: .05em;
}

/* ── 15. ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out) var(--delay, 0s),
              transform .7s var(--ease-out) var(--delay, 0s);
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger hero reveals */
.hero__content .reveal:nth-child(1) { transition-delay: .1s; }
.hero__content .reveal:nth-child(2) { transition-delay: .25s; }
.hero__content .reveal:nth-child(3) { transition-delay: .4s; }
.hero__content .reveal:nth-child(4) { transition-delay: .55s; }

/* ── 16. RESPONSIVE — TABLET (≤1100px) ───────────── */
@media (max-width: 1100px) {
  .services__grid  { grid-template-columns: repeat(2, 1fr); }
  .pricing__layout { grid-template-columns: 1fr; }
  .pricing__includes { border-top: 1px solid var(--c-border); }
  .about__layout   { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-frame{ max-width: 100%; aspect-ratio: 16/9; }
}

/* ── 17. RESPONSIVE — MOBILE (≤768px) ────────────── */
@media (max-width: 768px) {
  /* Hide sidebar, show mobile header */
  .sidebar      { display: none; }
  .mobile-header{ display: flex; }
  .mobile-nav   { display: flex; }
  .mobile-overlay{ display: block; }

  .main-content { margin-left: 0; padding-top: 60px; }

  /* Hero */
  .hero { min-height: 100svh; padding: 1.5rem; }
  .hero__bg::after {
    background: linear-gradient(to bottom, rgba(28,28,30,.7) 0%, rgba(28,28,30,.88) 100%);
  }
  .hero__stats {
    position: relative;
    flex-wrap: wrap;
  }
  .stat { padding: 1rem .5rem; }
  .stat__divider { display: none; }
  .hero__scroll-hint { display: none; }

  /* Portfolio — 2 columns on tablet/mobile */
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .port-item       { aspect-ratio: 3 / 2; }

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

  /* Pricing */
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact__layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* old 480px block removed — see mobile overrides below */

/* ══════════════════════════════════════════════════════
   MOBILE OVERRIDES — replaces previous responsive blocks
   These rules come last so they win the cascade
══════════════════════════════════════════════════════ */

/* ─ TABLET (≤1100px) ─ */
@media (max-width: 1100px) {
  .pricing__layout  { grid-template-columns: 1fr; }
  .pricing__includes{ border-top: 1px solid var(--c-border); }
  .about__layout    { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-frame { max-width: 100%; aspect-ratio: 16/9; }
  .services__grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ─ MOBILE (≤768px) ─ */
@media (max-width: 768px) {

  /* Layout */
  .sidebar        { display: none !important; }
  .mobile-header  { display: flex !important; }
  .mobile-nav     { display: flex !important; }
  .mobile-overlay { display: block !important; }
  .main-content   { margin-left: 0 !important; padding-top: 60px; }

  /* Hero — content anchored toward bottom, overlay lightened */
  .hero {
    min-height: 100svh;
    padding: 1.25rem;
    justify-content: flex-end;
    padding-bottom: 0;
  }
  .hero__content { padding-top: 0; padding-bottom: 1.5rem; }
  .hero__headline { font-size: clamp(2.6rem, 11vw, 4rem); }
  .hero__sub      { font-size: .88rem; margin-bottom: 1.5rem; }
  .hero__bg::after {
    background:
      linear-gradient(to bottom, rgba(28,28,30,.3) 0%, rgba(28,28,30,.92) 55%);
  }

  /* Hero buttons — full width stacked */
  .hero__actions          { flex-direction: column; gap: .65rem; }
  .hero__actions .btn     { width: 100%; justify-content: center; padding: .95rem 1rem; font-size: .78rem; }

  /* Stats — 2×2 grid */
  .hero__stats            { position: relative; display: grid; grid-template-columns: 1fr 1fr; }
  .stat                   { padding: .85rem .5rem; }
  .stat__num              { font-size: 1.2rem; }
  .stat__divider          { display: none; }
  .hero__scroll-hint      { display: none; }

  /* Portfolio — 2 cols */
  .portfolio__grid        { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .port-item              { aspect-ratio: 3 / 2; }
  .portfolio__filters     { gap: .35rem; }
  .filter-btn             { font-size: .62rem; padding: .4rem .75rem; }

  /* Services — single col */
  .services__grid         { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing__layout        { grid-template-columns: 1fr; }
  .pricing__grid          { grid-template-columns: repeat(2, 1fr); }
  .price-card             { padding: 1.25rem 1rem; }
  .price-card__range      { font-size: .72rem; }
  .price-card__price      { font-size: 2rem; }

  /* Pricing — force 2 cols and tighter cards */
  .pricing__layout        { grid-template-columns: 1fr; }
  .pricing__grid          { grid-template-columns: repeat(2, 1fr) !important; }
  .price-card             { padding: 1.25rem .75rem; }
  .price-card__range      { font-size: .68rem; }
  .price-card__price      { font-size: 1.75rem; }
  .price-card__name       { font-size: .58rem; }

  /* About — taller crop focused on face, not black background */
  .about__layout          { grid-template-columns: 1fr; gap: 2rem; }
  .about__img-frame       { max-width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
  .about__img-placeholder { background-position: center 15%; background-size: cover; }

  /* Contact */
  .contact__layout        { grid-template-columns: 1fr; gap: 2rem; }
  .form-row               { grid-template-columns: 1fr; }
  .calendly-placeholder   { display: none; }
}

/* ─ SMALL PHONE (≤480px) ─ */
@media (max-width: 480px) {
  :root { --section-px: 1.1rem; --section-py: 2.75rem; }

  /* Portfolio single col */
  .portfolio__grid        { grid-template-columns: 1fr; gap: 3px; }
  .port-item              { aspect-ratio: 3 / 2; }

  /* Pricing stays 2 cols — do NOT override to 1 col here */

  /* Addons */
  .addons__grid           { grid-template-columns: 1fr; }
  .addons                 { padding: 1.25rem 1rem; }

  /* Footer */
  .footer__links          { gap: .85rem; }

  /* Section titles smaller */
  .section__title         { font-size: clamp(2rem, 9vw, 2.8rem); }
}
