/* =============================================
   GLOBAL STYLES – 24/7 Movers Packers Storage
   Luxury Light Theme | Skin · White · Black
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Custom Properties ─────────────────────── */
:root {
  --skin: #F5EDE4;
  --skin-dark: #E8D5C4;
  --skin-deep: #D4B8A0;
  --cream: #FFFCF8;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --graphite: #2D2D2D;
  --mid-grey: #6B6B6B;
  --light-grey: #F0EBE6;
  --gold: #C9A96E;
  --gold-light: #E8C990;
  --gold-dark: #A07840;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, .25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset & Base ──────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Hide scrollbar for Firefox/Edge */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ── Typography ────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

h4 {
  font-size: 1.2rem;
}

.display-serif {
  font-family: var(--font-display);
  font-style: italic;
}

.section-label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--black);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: .95rem;
  color: var(--mid-grey);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Gold Divider ──────────────────────────── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.25rem 0;
  border-radius: var(--radius-pill);
}

.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Container ─────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .12);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, .4);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── Navbar ────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: rgba(255, 252, 248, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, .18);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  height: 70px;
  flex-wrap: nowrap;
  overflow: visible;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
}

.navbar__logo-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.navbar__logo-sub {
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.navbar__link {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--graphite);
  padding: .4rem .55rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: block;
  line-height: 1;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--gold);
  background: rgba(201, 169, 110, .08);
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.navbar__cta {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .6rem 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  align-self: center;
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, .4);
}

.navbar__phone {
  font-size: .73rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
  text-decoration: none;
}

.navbar__phone svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
  flex-shrink: 0;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Video ─────────────────────────────── */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--black);
}

.hero-video__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 60%,
      rgba(10, 10, 10, 0.35) 100%);
  pointer-events: none;
}

/* ── Hero Video Content Overlay ─────────────── */
.hero-video__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px 6%;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

/* When JS adds .visible after video ends */
.hero-video__content.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Staggered fade-up for each child */
.hero-video__content>* {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.hero-video__content.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: .05s;
}

.hero-video__content.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: .2s;
}

.hero-video__content.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: .38s;
}

.hero-video__content.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: .52s;
}

.hero-video__content.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: .66s;
}

/* Badge */
.hvc-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .9rem;
  background: rgba(201, 169, 110, .18);
  border: 1px solid rgba(201, 169, 110, .45);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(6px);
  margin-bottom: 1.1rem;
  width: fit-content;
}

.hvc-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

/* Heading */
.hvc-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 20px rgba(255, 255, 255, .6);
}

.hvc-title em {
  font-style: italic;
  color: var(--gold-dark);
}

/* Description */
.hvc-desc {
  font-size: .93rem;
  color: #2d2d2d;
  line-height: 1.75;
  margin-bottom: 1.6rem;
  text-shadow: 0 1px 8px rgba(255, 255, 255, .5);
}

.hvc-desc strong {
  color: var(--black);
}

/* Action buttons */
.hvc-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.hvc-phone {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: .03em;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.hvc-phone:hover {
  color: var(--gold);
}

/* Stats */
.hvc-stats {
  display: flex;
  gap: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1.5px solid rgba(201, 169, 110, .28);
}

.hvc-stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
}

.hvc-stat__label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}



/* ── Hero ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--skin) 0%, var(--cream) 50%, var(--skin-dark) 100%);
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, .08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(201, 169, 110, .12);
  border: 1px solid rgba(201, 169, 110, .3);
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero__desc {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, .2);
}

.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  display: block;
}

.hero__stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

.hero__visual {
  position: relative;
}

.hero__card-stack {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 440px;
  margin-left: auto;
}

.hero__img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__img-card--main {
  inset: 0;
  background: linear-gradient(160deg, var(--skin-dark) 0%, var(--skin-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-card--float {
  width: 200px;
  background: var(--white);
  bottom: -2rem;
  left: -3rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.hero__float-badge {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.hero__float-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero__float-text {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ── Trust Bar ─────────────────────────────── */
.trust-bar {
  background: var(--charcoal);
  padding: 2.5rem 0;
  overflow: hidden;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--skin);
}

.trust-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--skin);
}

.trust-item__value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

/* ── Section Base ──────────────────────────── */
.section {
  padding: 7rem 0;
}

.section--skin {
  background: var(--skin);
}

.section--light {
  background: var(--light-grey);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--charcoal);
  color: var(--skin);
}

.section--dark .section-title {
  color: var(--white);
}

.section--dark .section-subtitle {
  color: rgba(245, 237, 228, .7);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__header .section-subtitle {
  margin: 0 auto;
}

/* ── Service Cards ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 169, 110, .1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 110, .3);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 169, 110, .15), rgba(201, 169, 110, .05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: .75rem;
  color: var(--black);
}

.service-card__desc {
  font-size: .88rem;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}

.service-card__link:hover {
  gap: .7rem;
}

/* ── About Section ─────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  box-shadow: var(--shadow-md);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__img-placeholder {
  font-size: 5rem;
  opacity: .3;
}

.about__badge-corner {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about__badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.about__badge-text {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 237, 228, .7);
}

.about__features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
  color: var(--gold);
  font-size: 1rem;
}

.about__feature-text h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .2rem;
}

.about__feature-text p {
  font-size: .85rem;
  color: var(--mid-grey);
}

/* ── Why Choose Us ─────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, .1);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 110, .3);
}

.why-card__emoji {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: var(--black);
}

.why-card__desc {
  font-size: .83rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ── Testimonials ──────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 169, 110, .08);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.75rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .15;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: .9rem;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--graphite);
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--skin-dark), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-serif);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--black);
}

.testimonial-card__location {
  font-size: .75rem;
  color: var(--mid-grey);
}

/* ── CTA Banner ────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--graphite) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 169, 110, .12) 0%, transparent 70%);
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
}

.cta-banner__title em {
  color: var(--gold-light);
  font-style: italic;
}

.cta-banner__desc {
  font-size: 1rem;
  color: rgba(245, 237, 228, .7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.cta-banner__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 2rem;
  color: rgba(245, 237, 228, .6);
  font-size: .85rem;
  position: relative;
}

.cta-banner__phone a {
  color: var(--gold-light);
  font-weight: 700;
}

/* ── Contact Form ──────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(201, 169, 110, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info__title {
  font-weight: 700;
  font-size: .88rem;
  color: var(--black);
  margin-bottom: .25rem;
}

.contact-info__value {
  font-size: .88rem;
  color: var(--mid-grey);
}

.contact-info__value a {
  color: var(--mid-grey);
}

.contact-info__value a:hover {
  color: var(--gold-dark);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 169, 110, .1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: .5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .85rem 1.25rem;
  border: 1.5px solid rgba(0, 0, 0, .1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, .1);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Page Hero / Banner ────────────────────── */
.page-hero {
  background: linear-gradient(145deg, var(--skin) 0%, var(--skin-dark) 100%);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 110, .1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 169, 110, .08) 0%, transparent 50%);
}

.page-hero__content {
  position: relative;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--black);
  margin-bottom: 1rem;
}

.page-hero__title em {
  color: var(--gold-dark);
}

.page-hero__desc {
  font-size: 1rem;
  color: var(--mid-grey);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--gold-dark);
}

.breadcrumb span {
  color: var(--skin-deep);
}

/* ── Footer ────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(245, 237, 228, .8);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}

.footer__brand-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.footer__brand-desc {
  font-size: .85rem;
  line-height: 1.8;
  max-width: 300px;
  color: rgba(245, 237, 228, .55);
}

.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
  color: rgba(245, 237, 228, .7);
}

.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer__heading {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__link {
  font-size: .85rem;
  color: rgba(245, 237, 228, .55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer__link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .83rem;
  color: rgba(245, 237, 228, .55);
}

.footer__contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: .78rem;
  color: rgba(245, 237, 228, .3);
  flex-wrap: wrap;
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  color: rgba(245, 237, 228, .3);
  transition: var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--gold-light);
}

/* ── Floating Call Button ──────────────────── */
.float-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}

.float-call__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(201, 169, 110, .45);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
  text-decoration: none;
}

.float-call__btn:hover {
  transform: scale(1.1);
}

.float-call__label {
  background: var(--charcoal);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

/* ── Animations ────────────────────────────── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.3);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-in {
  animation: fadeInUp .7s ease both;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .3s;
}

.delay-4 {
  animation-delay: .4s;
}

/* ── Scroll Reveal ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ── Hide phone on medium screens ──────────── */
@media (max-width: 1260px) {
  .navbar__phone {
    display: none;
  }
}

/* ── Mobile Nav ────────────────────────────── */
@media (max-width: 1100px) {
  .hamburger {
    display: flex;
  }

  .navbar__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--skin);
    backdrop-filter: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    gap: .25rem;
    z-index: 999;
    overflow-y: auto;
  }

  .navbar__menu.open {
    display: flex;
  }

  .navbar__link {
    font-size: .95rem;
    padding: .8rem 1.5rem;
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .navbar__right .navbar__cta {
    margin-top: .5rem;
    font-size: .8rem;
    padding: .7rem 1.6rem;
  }

  .navbar__phone {
    display: none;
  }
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__visual {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── Hero Video — Mobile ────────────────────── */
@media (max-width: 767px) {
  .hero-video {
    height: 100svh;
  }

  .hero-video__content {
    width: 100%;
    padding: 80px 5% 0;
    justify-content: flex-start;
    background: linear-gradient(to bottom,
        rgba(255, 252, 248, .92) 0%,
        rgba(255, 252, 248, .75) 35%,
        rgba(255, 252, 248, .0) 55%);
  }

  /* Let text naturally wrap on mobile to save vertical lines */
  .hvc-title br,
  .hvc-desc br {
    display: none;
  }

  .hvc-badge {
    font-size: .55rem;
    padding: .25rem .6rem;
    margin-bottom: .6rem;
  }

  .hvc-title {
    font-size: 1.6rem;
    line-height: 1.15;
    margin-bottom: .5rem;
  }

  .hvc-desc {
    font-size: .8rem;
    line-height: 1.4;
    margin-bottom: .8rem;
    max-width: 95%;
  }

  .hvc-actions {
    gap: .75rem;
    margin-bottom: .75rem;
  }

  .hvc-actions .btn {
    font-size: .68rem;
    padding: .45rem .9rem;
  }

  .hvc-stats {
    gap: 1rem;
    padding-top: .6rem;
  }

  .hvc-stat__num {
    font-size: 1.15rem;
  }

  .hvc-stat__label {
    font-size: .55rem;
  }
}


@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding: 7rem 0 3rem;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar__inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ── Pricing Table ─────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1.5px solid rgba(201, 169, 110, .15);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card--featured {
  background: var(--charcoal);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__include,
.pricing-card--featured .pricing-card__desc {
  color: var(--skin);
}

.pricing-card--featured .pricing-card__price {
  color: var(--gold-light);
}

.pricing-card--featured li {
  color: rgba(245, 237, 228, .7);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: var(--radius-pill);
}

.pricing-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .5rem;
}

.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin: 1rem 0 .25rem;
}

.pricing-card__include {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1.5rem;
}

.pricing-card__desc {
  font-size: .83rem;
  color: var(--mid-grey);
  margin-bottom: 1.75rem;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .83rem;
  color: var(--graphite);
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}