/* ReelEstate — "Apple Luxury" Refresh */

:root {
  /* Color System - Premium HSL Palette */
  --bg-h: 40;
  --bg-s: 15%;
  --bg-l: 98%;
  --bg: hsl(var(--bg-h), var(--bg-s), var(--bg-l));
  --bg2: hsl(var(--bg-h), 10%, 95%);

  --surface-h: 0;
  --surface-s: 0%;
  --surface-l: 100%;
  --surface: hsl(var(--surface-h), var(--surface-s), var(--surface-l));
  --surface2: hsl(var(--surface-h), 0%, 98%);

  --text-h: 240;
  --text-s: 6%;
  --text-l: 10%;
  --text: hsl(var(--text-h), var(--text-s), var(--text-l));
  --muted: hsl(var(--text-h), 4%, 55%);

  --line: hsla(0, 0%, 0%, 0.06);

  /* Glassmorphism Refinement */
  --glass-bg: hsla(var(--surface-h), var(--surface-s), var(--surface-l), 0.7);
  --glass-border: hsla(0, 0%, 100%, 0.4);
  --glass-shadow: 0 8px 32px 0 hsla(0, 0%, 0%, 0.08);
  --glass-blur: blur(12px);

  /* Modern deep shadows */
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow2: 0 4px 20px rgba(0, 0, 0, 0.05);

  /* Accent: "Radiant Luxury" Gold */
  --accent: hsl(38, 45%, 52%);
  --accent-light: hsl(38, 45%, 75%);
  --accent2: hsl(38, 45%, 35%);

  --danger: hsl(0, 85%, 60%);

  /* Layout */
  --radius: 16px;
  --radius2: 28px;
  --max: 1200px;

  /* Typography */
  --h1: clamp(3.2rem, 7vw, 6rem);
  --h2: clamp(2.2rem, 4vw, 3.5rem);
  --h3: 1.75rem;
  --p: 1.125rem;

  --tracking-tight: -0.03em;
  --tracking-wide: 0.05em;

  --pad: clamp(1rem, 2.5vw, 2rem);
  --section: clamp(2.5rem, 6vw, 4.5rem);

  --font-sans: "Outfit", "Inter", -apple-system, sans-serif;
  --font-serif: "Fraunces", serif;

  /* Animation */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);

  /* Miami Neon Pulse */
  --neon-blue: hsl(190, 100%, 50%);
  --neon-purple: hsl(280, 100%, 60%);
  --neon-glow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-purple);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* No noise texture for this clean look */

/* Typography Refinements */
h1,
h2,
h3,
.eyebrow {
  letter-spacing: var(--tracking-tight);
  transition: text-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}

h1:hover,
h2:hover,
h3:hover {
  text-shadow: 0 0 15px rgba(181, 148, 90, 0.25);
}

.hero h1 {
  /* Existing styles will be overridden or cascaded */
  letter-spacing: -0.04em;
}

/* Cinematic Reveal Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 1.5s var(--ease-out-expo), transform 1.5s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

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

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section);
  scroll-margin-top: 96px;
}

.section--tight {
  padding-block: clamp(38px, 5vw, 64px);
}

#main {
  scroll-margin-top: 96px;
  background: radial-gradient(1200px 700px at 20% -10%, #fff 0%, var(--bg) 45%, var(--bg2) 100%);
}

/* a11y */
[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow2);
}

.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
}

.eyebrow:hover {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(181, 148, 90, 0.2);
  color: var(--text);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(181, 148, 90, .15);
}

/* Glass Utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass--dark {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Header */
/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease);
}

.header--overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.header--overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.nav--iconOnly {
  padding: 16px 0;
  justify-content: flex-end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand--iconOnly {
  min-width: 0;
}

.mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #e7d1a7);
  box-shadow: var(--shadow2);
}

.brand b {
  display: block;
  letter-spacing: .2px;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 650;
}

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

.links a {
  color: var(--muted);
  font-weight: 500;
  font-size: .95rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
}

.links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
  border-radius: 2px;
}

.links a:hover {
  color: var(--text);
  background: hsla(var(--bg-h), var(--bg-s), 90%, 0.5);
}

.links a:hover::after {
  width: 20px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.actions--iconOnly {
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--bg2);
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: var(--tracking-tight);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--text);
  color: var(--surface);
  box-shadow: 0 10px 25px -5px hsla(var(--text-h), var(--text-s), var(--text-l), 0.3);
}

.btn-primary:hover {
  background: #333;
  box-shadow: 0 15px 35px -5px hsla(var(--text-h), var(--text-s), var(--text-l), 0.4);
}

.iconBtn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .28);
  color: #fff;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
  backdrop-filter: blur(10px);
}

.iconBtn:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, .38);
  border-color: rgba(255, 255, 255, .30);
}

.iconBtn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.iconBtn--primary {
  background: linear-gradient(135deg, var(--accent), #e9d4ad);
  border-color: rgba(181, 148, 90, .55);
  color: #1a140b;
}

.iconBtn--primary:hover {
  border-color: rgba(181, 148, 90, .75);
  background: linear-gradient(135deg, var(--accent), #f0ddb7);
}

.hamburger {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
  cursor: pointer;
}

/* Mobile menu */
.mobile {
  display: block;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  padding: 0 0 16px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

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

.mobilePanel {
  width: min(400px, 100%);
  margin-left: auto;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobilePanel a {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(20, 18, 15, .10);
  background: rgba(255, 255, 255, .78);
  color: var(--text);
  font-weight: 850;
}

.mobilePanel a:hover {
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: auto;
  overflow: hidden;
  margin: 0;
  padding-block: clamp(64px, 10vh, 110px);
  background: #000;
}

.hero.full-bleed {
  left: 0;
  right: auto;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  transform: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  padding-bottom: calc(clamp(28px, 6vh, 72px) + env(safe-area-inset-bottom));
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(0, 0, 0, .45), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, .62), rgba(0, 0, 0, .25) 55%, rgba(251, 248, 242, .06));
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(0, 0, 0, .45), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, .62), rgba(0, 0, 0, .25) 55%, rgba(251, 248, 242, .06));
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

.hero__content {
  text-align: left;
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero__content h1 {
  margin: 1rem 0;
  font-weight: 700;
  line-height: 1;
}

.hero__content .lead {
  margin: 0 0 2rem;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-item {
  padding: 0.6rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  white-space: nowrap;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay-card {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 2;
  transition: all 0.4s var(--ease);
}

.hero__overlay-card:hover {
  transform: translateY(-5px);
  background: var(--surface);
  color: var(--text);
}

.mini-testimonial {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

.hero h1 {
  font-size: var(--h1);
  line-height: 1.05;
  margin: 16px 0 16px;
  letter-spacing: var(--tracking-tight);
  font-family: var(--font-sans);
  /* Switch back to Sans for modern look */
  font-weight: 700;
  color: #FFFFFF;
  /* Kept white for now as it's over video */
}

.hero h1 .accent {
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
  transition: text-shadow 0.5s var(--ease);
}

.hero h1 .accent:hover {
  text-shadow: var(--neon-glow);
}

.lead {
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  color: rgba(255, 255, 255, .82);
  margin: 0 0 20px;
  max-width: 58ch;
  margin-inline: auto;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: center;
}

.hero--banner .fineprint {
  color: rgba(255, 255, 255, .72);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .65);
  border-radius: var(--radius);
  padding: 14px 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.pill small {
  display: block;
  color: var(--muted);
  font-weight: 650;
}

.pill b {
  display: block;
  font-size: 1.12rem;
  margin-top: 3px;
}

.serving-text--short {
  display: none;
}

.hero--banner .pill {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.hero--banner .pill small {
  color: rgba(255, 255, 255, .72);
}

.hero--banner .pill b {
  color: #fff;
}

.hero-card {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius2);
  box-shadow: var(--glass-shadow);
  padding: var(--pad);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(600px 280px at 20% 10%, rgba(181, 148, 90, .22), transparent 55%),
    radial-gradient(540px 280px at 80% 40%, rgba(141, 109, 59, .16), transparent 55%);
  pointer-events: none;
}

.hero-media {
  position: relative;
  border-radius: calc(var(--radius2) - 8px);
  overflow: hidden;
  border: 1px solid rgba(20, 18, 15, .10);
  background: linear-gradient(135deg, #fff, #f2eadf);
  aspect-ratio: 4 / 3;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  overflow: hidden;
  filter: saturate(1.02) contrast(1.05) brightness(.82);
}

.hero-bg-embed iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.08);
  transform-origin: center;
}

.hero-bg-embed {
  pointer-events: none;
}

.tags {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  z-index: 2;
}

.tag {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .75);
  font-weight: 800;
  font-size: .92rem;
  backdrop-filter: blur(10px);
}

.hero-caption {
  position: relative;
  margin-top: 14px;
}

.hero-caption b {
  display: block;
  font-size: 1.05rem;
}

.hero-caption small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-top: 2px;
}

/* Section headings */
.head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.head h2 {
  font-size: var(--h2);
  margin: 0;
  letter-spacing: var(--tracking-tight);
  font-family: var(--font-sans);
  font-weight: 700;
}

.sub {
  color: var(--muted);
  max-width: 70ch;
  margin: 6px 0 0;
}

.marketing-hero .head {
  align-items: flex-start;
}

.marketing-hero h1 {
  font-size: var(--h1);
  line-height: 1.05;
  margin: 12px 0 10px;
  letter-spacing: -.02em;
  font-family: var(--font-serif);
}

.marketing-hero .sub {
  max-width: 70ch;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius2);
  padding: 24px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

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

.card h3 {
  margin: 0 0 8px;
  font-size: var(--h3);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--p);
}

.list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: .98rem;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tick {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(181, 148, 90, .18);
  border: 1px solid rgba(181, 148, 90, .35);
  flex: 0 0 20px;
  margin-top: 2px;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.price {
  padding: 32px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius2);
  box-shadow: var(--glass-shadow);
  position: relative;
  transition: all 0.4s var(--ease);
}

.price:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.price.popular {
  border: 2px solid var(--accent);
  background: #FAFAFC;
}

.price .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(181, 148, 90, .16);
  border: 1px solid rgba(181, 148, 90, .35);
  font-weight: 900;
  font-size: .9rem;
}

.price h3 {
  margin: 0;
  font-size: 1.25rem;
}

.price .desc {
  color: var(--muted);
  margin: 6px 0 14px;
}

.money {
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -.02em;
  margin: 0;
}

.money small {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 800;
}

.cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Results */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.result-card {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius2);
  padding: 24px;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s var(--ease);
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.result-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -.02em;
  display: block;
}

.result-label {
  color: var(--muted);
  font-size: .98rem;
  margin-top: 6px;
  display: block;
}

.results-proof {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: .95rem;
}

.results-proof span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
  border-radius: 999px;
  padding: 8px 12px;
}

/* Compare */
.compare-table-wrap {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, .9);
  overflow-x: auto;
  box-shadow: var(--shadow2);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: .98rem;
}

.compare-table th {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  background: rgba(181, 148, 90, .12);
}

.compare-table tbody td:nth-child(3) {
  background: rgba(181, 148, 90, .08);
}

.addons {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.addons-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  color: var(--muted);
  font-size: .98rem;
}

.addons-list li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .8);
}

.compare-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Lead magnet */
.lead-card {
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, .9);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow2);
  align-items: start;
}

.lead-card h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.15;
}

.lead-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.lead-list li {
  position: relative;
  padding-left: 20px;
}

.lead-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  align-content: start;
}

/* Specific field spans to make it compact but logical */
.field--full {
  grid-column: 1 / -1;
}

.lead-form .field {
  margin-bottom: 0;
}

.lead-form label {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 12px;
  font-size: 0.95rem;
}

.lead-form textarea {
  min-height: 80px;
}

/* Calendar embed */
.calendar-embed {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  justify-items: start;
}

/* Work grid */
.work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.work--featured {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

.workCard {
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.workCard img,
.workCard video {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  display: block;
}

.workCardMedia {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  display: block;
  position: relative;
}

.workCardMedia iframe,
.workCardMedia video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.workCardMedia video {
  object-fit: cover;
}

.workCardFrame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.workCardBody {
  padding: 16px 18px 18px;
  flex: 1;
}

.workCardBody h3 {
  margin: 0 0 6px;
}

.workCardBody p {
  margin: 0;
  color: var(--muted);
}

.work .thumb {
  border-radius: calc(var(--radius2) - 8px);
  border: 1px solid rgba(20, 18, 15, .10);
  background: linear-gradient(135deg, #fff, #efe4d5);
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
  margin-bottom: 12px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .65);
  color: var(--muted);
  font-weight: 800;
  font-size: .85rem;
}

/* Testimonials */
.testimonials {
  padding-block: clamp(32px, 5vw, 72px);
}

.testimonials__header {
  max-width: 900px;
  margin: 0 0 22px;
}

.testimonials__header h2 {
  margin: 0 0 6px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: -.02em;
  font-family: var(--font-serif);
}

.testimonials__header p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s var(--ease);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.testimonial__quote {
  margin: 0 0 12px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
}

.testimonial__name {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

/* Team */
.team {
  padding-block: clamp(32px, 5vw, 72px);
}

.team__header {
  max-width: 900px;
  margin: 0 0 22px;
}

.team__header h2 {
  margin: 0 0 6px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: -.02em;
  font-family: var(--font-serif);
}

.team__header p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team__card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s var(--ease);
}

.team__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.team__top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.team__avatar {
  --team-avatar-size: clamp(96px, 10vw, 140px);
  width: var(--team-avatar-size);
  height: var(--team-avatar-size);
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  padding: 6px;
  /* white frame */
  background: #fff;
  border: 1px solid rgba(20, 18, 15, .12);
  box-shadow: 0 12px 26px rgba(20, 18, 15, .10);
  overflow: hidden;
  flex: 0 0 var(--team-avatar-size);
}

.teamAvatar {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

.team__meta h3 {
  margin: 0;
  font-size: 1.05rem;
}

.team__role {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
}

.team__bio {
  margin: 0;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.55;
}

.team__cta {
  margin-top: 18px;
  text-align: center;
}

/* Reels (iPhone mockups) */
.reels-section {
  padding-block: clamp(32px, 5vw, 72px);
  background: radial-gradient(1200px 600px at 50% 0%, rgba(0, 0, 0, 0.04), transparent 60%);
}

.reels-header {
  max-width: 900px;
  margin: 0 0 28px;
}

.reels-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  margin: 0 0 8px;
  letter-spacing: -.02em;
}

.reels-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

.reels-section .reel-card {
  text-align: center;
}

.reels-section .reel-card h3 {
  margin: 14px 0 6px;
  font-size: 1.05rem;
}

.reels-section .reel-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

/* iPhone mock */
.iphone {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 42px;
  background: #fff;
  border: 1px solid rgba(20, 18, 15, .12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.iphone:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.iphone__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 30px;
  overflow: hidden;
  background: #111;
}

.lazyVideoOverlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}

.lazyVideoOverlay__btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, background 180ms ease;
}

.lazyVideoOverlay__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.lazyVideoOverlay:hover .lazyVideoOverlay__btn {
  transform: scale(1.04);
  background: rgba(0, 0, 0, 0.58);
}

.lazyVideoOverlay:focus-visible .lazyVideoOverlay__btn {
  outline: 3px solid rgba(251, 248, 242, 0.85);
  outline-offset: 3px;
}

.reels-section .iphone__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
  z-index: 1;
}

.reels-section .iphone__screen.reel-ready .iphone__media,
.reels-section .iphone__media.is-visible {
  opacity: 1;
  visibility: visible;
}

.reel-thumb,
.reel-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  background: #0f0f0f;
  transition: opacity 200ms ease;
}

.reel-thumb.is-hidden,
.reel-poster.is-hidden,
.reels-section .iphone__screen.reel-ready .reel-thumb,
.reels-section .iphone__screen.reel-ready .reel-poster {
  opacity: 0;
  visibility: hidden;
}

.iphone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  background: #fff;
  border: 1px solid rgba(20, 18, 15, .12);
  border-radius: 0 0 14px 14px;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* CTA */
.reels-cta {
  text-align: center;
  margin-top: 26px;
}

/* Services redesign */
.servicesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.serviceCard {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.serviceTop {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.serviceIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(181, 148, 90, .16);
  border: 1px solid rgba(181, 148, 90, .35);
  font-size: 18px;
}

.serviceCard h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
}

.serviceCard p {
  margin: 0;
  color: var(--muted);
}

.servicePoints {
  margin: 10px 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.servicePoints li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;
}

.servicePoints li::before {
  content: "✓";
  color: var(--accent2);
}

/* ============================
   ENHANCEMENTS
   ============================ */

/* 2. Lightbox */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.9);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightboxVideo {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

#closeLightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 20;
}

/* 2b. Quote Modal */
.quote-modal {
  border: none;
  padding: 0;
  background: transparent;
  width: min(640px, 92vw);
  max-width: 640px;
}

.quote-modal::backdrop {
  background: rgba(10, 9, 8, 0.65);
  backdrop-filter: blur(6px);
}

.quote-modal__panel {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 32px);
  max-height: 90vh;
  overflow: auto;
  display: grid;
  gap: 12px;
}

.quote-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(20, 18, 15, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
}

.quote-modal__close:hover {
  background: #fff;
}

/* 3. Trusted By Bar */
.trust-bar {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}

.trust-label {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 1rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  color: #ccc;
  font-weight: 700;
}

.faa-badge {
  color: #333;
  background: #f4f4f4;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* 4. Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #eee;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(5px);
}

.sticky-cta.visible {
  transform: translateY(0);
}

/* Hide on desktop */
@media(min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* Concierge chat */
.concierge {
  position: fixed;
  right: clamp(16px, 2.6vw, 32px);
  bottom: clamp(18px, 2.6vw, 30px);
  z-index: 90;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  pointer-events: none;
}

.concierge-btn,
.concierge-panel {
  pointer-events: auto;
}

.concierge-btn {
  border: 1px solid rgba(181, 148, 90, 0.45);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78));
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(20, 18, 15, 0.12);
  cursor: pointer;
}

.concierge-panel {
  width: min(380px, calc(100vw - 32px));
  max-height: min(640px, 78vh);
  margin-bottom: 12px;
  border: 1px solid rgba(181, 148, 90, 0.32);
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 44px rgba(20, 18, 15, 0.16);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: conciergePop 0.3s var(--ease-out-expo);
}

@keyframes conciergePop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

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

.concierge-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.concierge-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 900;
}

.concierge-sub {
  margin-top: 2px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 800;
}

.concierge-close {
  border: 1px solid rgba(20, 18, 15, .10);
  background: rgba(255, 255, 255, .85);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 36px;
}

.concierge-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 14px 12px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.concierge-body {
  padding: 16px 14px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.concierge-lead-gate {
  padding: 18px 14px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(181, 148, 90, 0.03);
}

.concierge-lead-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.field-sm {
  margin-bottom: 10px;
}

.field-sm input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(20, 18, 15, 0.12);
  background: #fff;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.field-sm input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(181, 148, 90, 0.1);
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.field-check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.field-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
}

.btn-full {
  width: 100%;
  margin-top: 4px;
}

.chatMsg {
  padding: 12px 16px;
  border-radius: 20px;
  border: 1px solid rgba(20, 18, 15, .08);
  background: #fff;
  line-height: 1.5;
  font-size: 0.95rem;
  max-width: 85%;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  overflow-wrap: break-word;
  word-break: break-word;
}

.chatMsg--user {
  background: rgba(181, 148, 90, .08);
  border-color: rgba(181, 148, 90, .15);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: #5a4b32;
}

.chatMsg--assistant {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border-color: var(--line);
}

.chatMeta {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.chatMsg--user .chatMeta {
  text-align: right;
  color: var(--accent2);
}

.concierge-card {
  display: grid;
  gap: 6px;
}

.concierge-card h4 {
  font-size: 0.88rem;
  margin: 0 0 4px;
  font-weight: 900;
}

.concierge-card p {
  margin: 0 0 6px;
}

.concierge-card ul {
  margin: 0 0 8px;
  padding-left: 18px;
}

.concierge-card li {
  margin: 4px 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 800;
}

.concierge-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.concierge-card-actions .btn {
  padding: 6px 10px;
  font-size: 0.82rem;
}

.concierge-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: #fff;
  flex-shrink: 0;
}

.concierge-input {
  border: 1px solid rgba(20, 18, 15, .14);
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  width: 100%;
}

.concierge-input:focus {
  outline: none;
  box-shadow: 0 0 0 6px rgba(181, 148, 90, .18);
  border-color: rgba(181, 148, 90, .55);
}

.concierge-send {
  white-space: nowrap;
}

.concierge-actions {
  display: flex;
  gap: 10px;
  padding: 8px 14px 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  justify-content: flex-end;
  background: #fafafa;
  flex-shrink: 0;
}



.serviceBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.serviceMeta {
  color: var(--muted);
  font-weight: 800;
  font-size: .95rem;
}

.reel {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
  position: relative;
}

.reel-video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #fff, #eee0cc);
}

.reel .meta {
  padding: 12px 14px 14px;
}

.reel .meta b {
  display: block;
}

.reel .meta small {
  color: var(--muted);
  font-weight: 750;
}

.mute {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .75);
  padding: 10px 12px;
  font-weight: 950;
  cursor: pointer;
  z-index: 2;
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .75);
  padding: 18px;
}

.num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(181, 148, 90, .16);
  border: 1px solid rgba(181, 148, 90, .35);
  font-weight: 950;
  margin-bottom: 10px;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

details {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
}

/* Booking */
.booking {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.4vw, 28px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.quote-chooser {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow2);
  padding: clamp(16px, 2.2vw, 24px);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.quote-chooser h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.quote-chooser__note {
  margin: 0 0 14px;
  color: var(--muted);
}

.calendar-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px;
}

.calendar-actions {
  margin: 16px 0 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.calendar-note {
  opacity: 0.8;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

label {
  font-weight: 850;
  color: var(--muted);
  font-size: .92rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(20, 18, 15, .14);
  background: rgba(255, 255, 255, .9);
  color: var(--text);
  outline: none;
  font-size: 1rem;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(181, 148, 90, .65);
  box-shadow: 0 0 0 5px rgba(181, 148, 90, .16);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.fineprint {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 10px;
}

.form-status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, .8);
  color: var(--text);
  font-size: .95rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  background: #f1f7ef;
  border-color: #cfe2c8;
  color: #2b5b31;
}

.form-status[data-state="error"] {
  background: #fff2f2;
  border-color: #f1c7c5;
  color: #8b3a32;
}

.form-status[data-state="info"] {
  background: #f7f4ef;
  border-color: #e5dccd;
  color: #6a5a44;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  color: var(--muted);
}

.footer .row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 80;
  max-width: min(560px, calc(100% - 32px));
  text-align: center;
  font-weight: 750;
  color: var(--text);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .proof {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .pricing {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .lead-card {
    grid-template-columns: 1fr;
  }

  .work {
    grid-template-columns: 1fr;
  }

  .workCard img,
  .workCard video {
    height: 220px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .reels-grid {
    grid-template-columns: 1fr;
  }

  .iphone {
    max-width: 360px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .booking {
    grid-template-columns: 1fr;
  }

  .mobilePanel {
    width: 100%;
    margin-left: 0;
  }

  .links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .mobile {
    display: block;
  }

  .servicesGrid {
    grid-template-columns: 1fr;
  }

  .concierge {
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .concierge-panel {
    max-height: min(540px, 70dvh);
  }
}

@media (max-width: 480px) {
  .header--overlay {
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 48px;
    padding: 0 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: rgba(20, 18, 15, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header--overlay::before {
    display: none;
  }

  .header--overlay .container {
    width: 100%;
    margin: 0;
    height: 100%;
  }

  .header--overlay .nav {
    padding: 0;
    height: 100%;
    width: 100%;
    gap: 8px;
  }

  .nav {
    padding: 0;
    height: 100%;
  }

  .nav-text,
  .tagline {
    display: none;
  }

  .iconBtn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .hero {
    padding-top: calc(70px + env(safe-area-inset-top));
    display: flex;
    align-items: center;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero__inner {
    padding-inline: 20px;
    padding-block: 1rem;
  }

  .hero-bg-video {
    transform: scale(1.6);
  }

  .hero-bg-embed iframe {
    inset: auto;
    width: 150%;
    height: 150%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero h1 {
    font-size: clamp(32px, 11vw, 38px);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.03em;
  }

  .hero h1 br {
    display: none;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero__ctas {
    gap: 10px;
  }

  .hero__ctas>div {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero__ctas .btn {
    width: 100%;
    height: 54px;
    font-size: 1.05rem;
    border-radius: 16px;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 1.5rem;
  }

  .trust-item {
    font-size: 0.75rem;
    padding: 0.6rem 0.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 1.2;
  }

  /* Full width work cards on mobile */
  .work--featured {
    margin-inline: -20px;
    width: calc(100% + 40px);
  }

  .workCard {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .workCardMedia {
    aspect-ratio: 16 / 9;
    height: auto !important;
  }

  /* Pricing Table to Cards */
  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table th,
  .compare-table td,
  .compare-table tr {
    display: block;
    width: 100%;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tr {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  }

  .compare-table td {
    padding: 12px 16px;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .compare-table td:last-child {
    border-bottom: none;
  }

  .compare-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  .compare-table tbody td:nth-child(3) {
    background: rgba(181, 148, 90, 0.05);
  }

  .pricing {
    gap: 16px;
  }

  .teamAvatar {
    object-position: 50% 15%;
  }

  .serving-text--full {
    display: none;
  }

  .serving-text--short {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .toast {
    transition: none;
  }

  .concierge-btn,
  .concierge-panel {
    transition: none;
  }

  .hero__media {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero__video,
  .hero-bg-video {
    display: none;
  }

  .hero {
    background-image: url(assets/hero.jpg);
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas>div {
    flex-direction: column;
  }
}

/* Services Redesign */
.services__header {
  margin-bottom: 2rem;
}

.services__header h2 {
  margin: 0 0 .25rem;
}

.services__header p {
  margin: 0 0 1.25rem;
  opacity: .75;
}

.card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
}

.service-showcase {
  padding: 14px;
}

.service-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(0, 0, 0, .03);
  margin-bottom: 14px;
  overflow-x: auto;
}

.tab {
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  opacity: .7;
  font-family: inherit;
}

.tab.is-active {
  background: #111;
  color: #fff;
  opacity: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: start;
}

.service-media {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .08);
}

.service-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ratio-16x9 {
  aspect-ratio: 16 / 9;
}

.ratio-9x16 {
  aspect-ratio: 9 / 16;
  max-width: 420px;
  margin: 0 auto;
}

.phone-frame {
  border-radius: 28px;
  padding: 10px;
  background: rgba(0, 0, 0, .04);
}

.service-copy {
  padding: 10px;
}

.service-copy h3 {
  margin: 0 0 .35rem;
  font-size: 1.75rem;
}

.service-copy .sub {
  margin: 0 0 1rem;
  opacity: .75;
  font-size: 1.1rem;
}

.checks {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  list-style-type: '✓ ';
}

.checks li {
  margin: .65rem 0;
  font-weight: 500;
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  opacity: .75;
  margin: .75rem 0 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(0, 0, 0, .02);
  font-weight: 600;
  opacity: 1;
  font-size: 0.85rem;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn.ghost {
  border: 1px solid rgba(0, 0, 0, .15);
  color: #111;
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(0, 0, 0, .05);
}

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

  .ratio-9x16 {
    max-width: 100%;
  }
}