/* ==========================================================================
   Shoreline Mobile Notary — Luxury Aesthetic
   Dark, refined, high-end real estate inspired
   ========================================================================== */

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

:root {
  /* Core palette — luxury black + champagne */
  --black: #0a0a0a;
  --black-soft: #111111;
  --charcoal: #1a1a1a;
  --charcoal-light: #222222;
  --line: #2a2a2a;
  --line-soft: #1f1f1f;

  --ivory: #f4f1ea;
  --cream: #e8e3d6;
  --text: #d8d4cb;
  --text-muted: #908b80;
  --text-dim: #6a6660;

  /* Champagne gold — muted, not bright */
  --gold: #b8975a;
  --gold-light: #d4b87a;
  --gold-dim: #8a6f3f;

  --shadow-lg: 0 30px 80px rgba(0,0,0,0.6);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.5);

  --radius: 2px;
  --radius-lg: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 18px 38px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}

.btn-secondary:hover {
  background: var(--ivory);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(244,241,234,0.4);
}

.btn-outline:hover {
  background: var(--ivory);
  color: var(--black);
  border-color: var(--ivory);
}

.btn-lg {
  padding: 22px 48px;
  font-size: 0.82rem;
}

.btn-full {
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.02em;
}

.nav-logo:hover {
  color: var(--gold-light);
}

.logo-icon {
  font-size: 1.1rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
  background: transparent;
}

.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold-light) !important;
  margin-left: 12px;
  padding: 12px 24px !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--ivory);
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  /* Background image: drop a Seattle luxury home photo at images/bg-hero.jpg
     The overlay below knocks the exposure way down so text stays readable. */
  background-color: var(--black);
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.86) 0%, rgba(10,10,10,0.92) 60%, rgba(10,10,10,0.98) 100%),
    radial-gradient(ellipse at top right, rgba(184,151,90,0.12), transparent 65%),
    url('images/bg-hero.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  padding: 180px 32px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  flex: 1;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--ivory);
  font-size: 4.2rem;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
  font-weight: 300;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.badge {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0 0 440px;
  position: relative;
  z-index: 1;
}

/* --- Photo Placeholders (drop-in ready) --- */
.photo-placeholder {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}

.photo-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.6;
}

.placeholder-inner {
  color: var(--text-dim);
  padding: 40px;
}

.placeholder-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  opacity: 0.7;
}

.placeholder-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.placeholder-inner small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

/* When an <img> is inside the placeholder, it fills cleanly */
.photo-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.photo-placeholder:has(img)::before,
.photo-placeholder:has(img)::after {
  display: none;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--black);
  padding: 60px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.trust-items {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  flex: 1;
  min-width: 160px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}

.trust-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.trust-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* --- Section Defaults --- */
section {
  padding: 140px 0;
  background: var(--black);
}

section h2 {
  font-size: 3rem;
  color: var(--ivory);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto 72px;
  font-weight: 300;
  line-height: 1.75;
}

/* --- Trusted Partners (logos) --- */
.partners {
  background: var(--black);
  padding: 110px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: stretch;
}

.partner-logo {
  background: var(--black-soft);
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  min-height: 88px;
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partner-logo:hover {
  border-color: var(--gold-dim);
  background: var(--charcoal);
}

.partner-logo img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.partner-logo:hover img {
  opacity: 1;
}

.logo-text {
  color: var(--ivory);
  display: block;
  line-height: 1.3;
  user-select: none;
}

.logo-text .logo-thin {
  font-weight: 300;
  opacity: 0.85;
  margin-left: 4px;
}

.logo-text sup {
  font-size: 0.55em;
  vertical-align: super;
  opacity: 0.75;
  margin-left: 2px;
}

/* Brand-flavored typography for each logo */
.logo-firstam {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.logo-firstam em {
  font-style: italic;
  display: inline;
}

.logo-clearedge {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.logo-clearedge strong {
  font-weight: 700;
  color: var(--gold-light);
}
.logo-clearedge .logo-thin {
  font-weight: 300;
}

.logo-rainier {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.logo-rainier .logo-thin {
  font-weight: 300;
  letter-spacing: 0.1em;
}

.logo-chicago {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.logo-wfg {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
}
.logo-wfg strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.logo-fidelity {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.5;
}
.logo-fidelity strong {
  display: block;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

/* --- Services Grid --- */
.services {
  background: var(--black-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.service-card {
  background: var(--black-soft);
  padding: 42px 32px;
  transition: all var(--transition);
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-desc-short { display: none; }

/* Chevron hidden by default — only visible on mobile via media query */
.collapse-chevron { display: none; }

/* Back-to-top floating button with scroll-progress ring */
.scroll-top {
  display: flex;
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: none;
  color: var(--gold-light);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  padding: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover { background: rgba(20, 20, 20, 0.92); }
.scroll-top:active { background: rgba(28, 28, 28, 0.95); }

.scroll-top-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* progress starts from 12 o'clock */
  pointer-events: none;
}

.scroll-top-ring-track {
  fill: none;
  stroke: rgba(180, 140, 80, 0.22);
  stroke-width: 2;
}

.scroll-top-ring-progress {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.15s linear;
}

.scroll-top-arrow {
  width: 14px;
  height: 8px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .scroll-top {
    width: 46px;
    height: 46px;
    bottom: 20px;
    right: 18px;
  }
  .scroll-top-arrow { width: 12px; height: 7px; }
}

.service-card:hover {
  background: var(--charcoal);
  color: inherit;
}

.service-cta {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition), color var(--transition);
}

.service-card:hover .service-cta {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold-light);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--gold);
  filter: grayscale(0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 14px;
  font-weight: 400;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

/* --- Why Me --- */
.why-me {
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--black-soft);
  padding: 48px 44px;
  border: 1px solid var(--line-soft);
  border-left: 1px solid var(--gold);
  transition: all var(--transition);
}

.why-card:hover {
  border-left-color: var(--gold-light);
  background: var(--charcoal);
}

.why-card h3 {
  color: var(--ivory);
  margin-bottom: 14px;
  font-size: 1.6rem;
  font-weight: 400;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  font-weight: 300;
}

/* --- About --- */
.about {
  background: var(--black-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.about-layout {
  display: flex;
  gap: 80px;
  align-items: center;
}

.about-image {
  flex: 0 0 440px;
}

.about-image .photo-placeholder {
  min-height: 580px;
}

.about-image .photo-placeholder img {
  min-height: 580px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 28px;
  font-size: 2.6rem;
}

.about-text .section-eyebrow {
  text-align: left;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-credentials {
  margin-top: 36px;
  padding: 32px;
  background: var(--black);
  border: 1px solid var(--line);
}

.about-credentials p {
  color: var(--gold-light);
  margin-bottom: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.about-credentials ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}

.about-credentials li {
  color: var(--text);
  padding: 8px 0;
  padding-left: 26px;
  position: relative;
  font-size: 0.92rem;
  font-weight: 300;
}

.about-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

/* --- Testimonials --- */
.testimonials {
  background: var(--black);
}

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

.testimonial-card {
  background: var(--black-soft);
  padding: 48px 40px;
  border: 1px solid var(--line-soft);
  position: relative;
  transition: all var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--gold-dim);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.testimonial-card blockquote p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.testimonial-author {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-author strong {
  display: block;
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

/* --- Service Area --- */
.service-area {
  background: var(--black-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.area-column h3 {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.area-column ul {
  list-style: none;
}

.area-column li {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 7px 0;
  font-weight: 300;
  transition: color var(--transition);
}

.area-column li:hover {
  color: var(--ivory);
}

.area-note {
  text-align: center;
  margin-top: 56px;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .area-note {
    font-size: 1.2rem;
    margin-top: 32px;
    padding: 0 8px;
  }
}

/* --- CTA Banner --- */
.cta-banner {
  background-color: var(--black);
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.90) 0%, rgba(10,10,10,0.95) 100%),
    radial-gradient(ellipse at center, rgba(184,151,90,0.10), transparent 70%),
    url('images/bg-cta.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  padding: 160px 0;
  text-align: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}

.cta-banner h2 {
  color: var(--ivory);
  font-size: 3rem;
  margin-bottom: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
  background: var(--black);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-item {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-soft);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item h3 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-item p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.contact-item a {
  color: var(--ivory);
  font-weight: 400;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
}

.contact-item a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* --- Contact Form --- */
.contact-form {
  background: var(--black-soft);
  padding: 56px;
  border: 1px solid var(--line);
}

.contact-status {
  display: none;
}

.contact-status--success,
.contact-status--error {
  display: block;
  padding: 18px 22px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  border-radius: 2px;
}

.contact-status--success {
  background: rgba(180, 140, 80, 0.08);
  border: 1px solid var(--gold-dim);
  color: var(--ivory);
}

.contact-status--error {
  background: rgba(180, 60, 60, 0.08);
  border: 1px solid rgba(220, 100, 100, 0.45);
  color: var(--ivory);
}

.contact-status a {
  color: var(--gold-light);
  text-decoration: underline;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 0.98rem;
  font-family: inherit;
  font-weight: 300;
  color: var(--ivory);
  background: var(--black);
  transition: border-color var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b8975a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--text-muted);
  padding: 80px 0 0;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ivory);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 360px;
}

.footer-links h4,
.footer-service-area h4 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 300;
}

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

.footer-service-area p {
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 300;
}

.footer-bottom {
  padding: 32px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* --- Review Toast (running pop-up, lower-left) --- */
.review-toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 18px 20px 18px 22px;
  z-index: 950;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}

.review-toast.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.review-toast.dismissed {
  display: none !important;
}

.review-toast-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-toast-meta {
  flex: 1;
  min-width: 0;
}

.review-toast-name {
  display: block;
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.review-toast-stars {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
}

.review-toast-text {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  font-style: italic;
}

.review-toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
  font-family: 'Inter', sans-serif;
}

.review-toast-close:hover {
  color: var(--ivory);
}

@media (max-width: 640px) {
  .review-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 14px 18px;
  }
  .review-toast-text {
    font-size: 0.85rem;
  }
}

/* --- Testimonials: 'View more' expansion --- */
.testimonials-grid.collapsed .testimonial-card:nth-child(n+4) {
  display: none;
}

.testimonials-toggle {
  display: block;
  margin: 56px auto 0;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonials-toggle:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero {
    padding: 140px 32px 80px;
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 440px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-layout {
    flex-direction: column;
  }

  .about-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 440px;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-text .section-eyebrow {
    text-align: center;
  }

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

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-credentials ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  .partners {
    padding: 48px 0;
  }

  .cta-banner {
    padding: 72px 0;
  }

  .trust-bar {
    padding: 40px 0;
  }

  .section-sub {
    margin-bottom: 36px;
    font-size: 0.9rem;
  }

  section h2 {
    margin-bottom: 14px;
  }

  .section-eyebrow {
    margin-bottom: 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 16px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  section h2 {
    font-size: 2.2rem;
  }

  .cta-banner h2 {
    font-size: 2.2rem;
  }

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

  .service-card {
    padding: 22px 22px 22px 22px;
    padding-right: 52px; /* room for chevron */
  }

  .service-icon {
    font-size: 1.3rem;
    margin-bottom: 0;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
  }

  .service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
  }

  /* Collapsed body — hide everything but icon + title */
  .service-card.is-collapsed .service-desc,
  .service-card.is-collapsed .service-cta {
    display: none;
  }

  /* Expanded body — show short description + CTA */
  .service-card:not(.is-collapsed) .service-desc-full { display: none; }
  .service-card:not(.is-collapsed) .service-desc-short {
    display: block;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 14px;
  }
  .service-card:not(.is-collapsed) .service-cta {
    margin-top: 14px;
    opacity: 1;
    transform: none;
    font-size: 0.65rem;
    display: inline-block;
  }

  /* Hide hover-only desktop strip on mobile */
  .service-card::before { display: none; }

  /* Service area accordion */
  .area-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .area-column {
    border: 1px solid var(--line-soft);
    border-bottom: none;
    padding: 18px 52px 18px 22px;
    position: relative;
    cursor: pointer;
    margin: 0;
  }

  .area-column:last-child {
    border-bottom: 1px solid var(--line-soft);
  }

  .area-column h3 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--ivory);
    font-weight: 500;
  }

  .area-column.is-collapsed ul { display: none; }
  .area-column:not(.is-collapsed) ul {
    margin-top: 14px;
    padding-left: 0;
    list-style: none;
  }
  .area-column:not(.is-collapsed) ul li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  /* Chevron — dedicated tap target for expand/collapse on mobile */
  .collapse-chevron {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.2s ease;
    cursor: pointer;
  }

  .collapse-chevron svg {
    width: 14px;
    height: 8px;
  }

  .service-card:not(.is-collapsed) .collapse-chevron,
  .area-column:not(.is-collapsed) .collapse-chevron {
    transform: rotate(180deg);
    color: var(--gold-light);
  }

  /* When not collapsed, chevron sits in the top-right rather than centered */
  .service-card:not(.is-collapsed) .collapse-chevron,
  .area-column:not(.is-collapsed) .collapse-chevron {
    top: 8px;
    margin-top: 0;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-items {
    gap: 24px;
  }

  .trust-item:not(:last-child)::after {
    display: none;
  }

  .trust-number {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 32px;
  }

  .btn-lg {
    padding: 18px 32px;
    font-size: 0.78rem;
  }

  .container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-badges {
    gap: 8px;
  }

  .badge {
    font-size: 0.65rem;
    padding: 6px 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-items {
    flex-direction: column;
    gap: 32px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
  }

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