/* King Solomon's Construction: royalty theme, deep purple + textured gold */
:root {
  --bg-deep: #0c0612;
  --bg-card: #160f22;
  --bg-elevated: #1f152e;
  --text: #e8eaed;
  --text-muted: #a99fc0;
  --royal-purple: #7b3fb8;
  --royal-purple-deep: #3d1458;
  --royal-purple-mid: #501878;
  --royal-purple-glow: rgba(123, 63, 184, 0.28);
  --accent: #d4af37;
  --accent-hover: #f0dc7a;
  --accent-subtle: rgba(212, 175, 55, 0.16);
  --purple-subtle: rgba(123, 63, 184, 0.18);
  --purple-rich: #5c1d8a;
  --gold-deep: #8b6914;
  --gold-metallic: linear-gradient(
    118deg,
    #5c4010 0%,
    #a67c1f 12%,
    #bf953f 22%,
    #fcf6ba 38%,
    #e8d78a 48%,
    #b38728 58%,
    #fbf5b7 68%,
    #aa771c 82%,
    #6b4c0a 100%
  );
  --gold-text-metallic: linear-gradient(
    165deg,
    #7a5c1e 0%,
    #c9a227 18%,
    #fff9e6 36%,
    #e6c35c 50%,
    #8b6914 68%,
    #f3e5ab 100%
  );
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.42);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --font-royal-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-tagline-elegant: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --header-h: 78px;
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  hyphens: none;
  -webkit-hyphens: none;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 85% 55% at 15% 10%, rgba(123, 63, 184, 0.22), transparent 52%),
    radial-gradient(ellipse 70% 50% at 90% 28%, rgba(212, 175, 55, 0.1), transparent 45%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(80, 24, 120, 0.2), transparent 55%),
    linear-gradient(180deg, #10081a 0%, var(--bg-deep) 45%, #06040a 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

/* Compact top bar: logo left, primary links right */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(180deg, #1e0f2e 0%, #12081c 55%, #0a0510 100%);
  border-bottom: none;
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.5),
    inset 0 -1px 0 rgba(123, 63, 184, 0.2);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(91, 58, 12, 0.85) 8%,
    #bf953f 22%,
    #fcf6ba 42%,
    #fbf5b7 50%,
    #aa771c 58%,
    #6b4c0a 78%,
    rgba(91, 58, 12, 0.5) 92%,
    transparent 100%
  );
  pointer-events: none;
  box-shadow: 0 1px 8px rgba(212, 175, 55, 0.25);
}

.header-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  min-height: var(--header-h);
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
  order: 1;
  position: relative;
  z-index: 1;
}

.header-slogan {
  order: 4;
  margin: 0;
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.35rem 0.75rem 0.45rem;
  text-align: center;
  border: none;
  box-shadow: none;
}

.header-slogan-text {
  font-family: var(--font-tagline-elegant);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  letter-spacing: 0.03em;
  line-height: 1.5;
  padding: 0.2em 0.15em 0.12em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  color: #ecd9a8;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.9),
    0 2px 14px rgba(212, 175, 55, 0.28),
    0 0 20px rgba(123, 63, 184, 0.12);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .header-slogan-text {
    background-image: var(--gold-text-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }
}

.header-slogan-ornament {
  display: block;
  width: min(220px, 72vw);
  height: auto;
  max-height: 20px;
  object-fit: contain;
  object-position: center;
  opacity: 0.97;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

.header-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #e8d9a8;
  text-shadow:
    0 0 10px rgba(212, 175, 55, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.65);
  transition: color var(--transition);
}

.header-instagram:hover {
  color: #fff8e0;
}

.header-instagram-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.header-instagram-label {
  position: relative;
  top: 0.5px;
}

.header-phone {
  order: 2;
  margin-left: auto;
  margin-right: 0;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #f3e8b8;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-shadow:
    0 0 12px rgba(212, 175, 55, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.6);
}

.header-phone:hover {
  color: #fff8e0;
  text-shadow:
    0 0 16px rgba(252, 246, 186, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (min-width: 901px) {
  .header-inner {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 1rem;
    row-gap: 0.35rem;
    flex-wrap: unset;
  }

  .header-brand {
    grid-column: 1;
    grid-row: 1;
    order: unset;
  }

  .header-slogan {
    grid-column: 2;
    grid-row: 1;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    order: unset;
    flex: unset;
    flex-direction: column;
    justify-self: center;
    align-self: center;
    pointer-events: auto;
    z-index: 1;
    min-width: 0;
    width: max-content;
    max-width: 100%;
    margin: 0;
    padding: 0.2rem 0.5rem 0.15rem;
    overflow: visible;
    gap: 0.12rem;
  }

  .header-slogan-text {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.48;
    padding: 0.22em 0.2em 0.14em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-slogan-ornament {
    width: min(260px, 32vw);
    max-height: 22px;
  }

  .header-nav {
    grid-column: 3;
    grid-row: 1;
    order: unset;
    flex: unset;
    width: auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    margin-left: 0;
    min-width: 0;
    justify-content: flex-end;
    padding: 0;
    border: none;
  }

  .header-phone {
    grid-column: 4;
    grid-row: 1;
    order: unset;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.85rem;
    flex-shrink: 0;
    justify-self: end;
  }

  .nav-toggle {
    display: none !important;
  }
}

.header-logo {
  height: 48px;
  width: auto;
  max-width: min(210px, 46vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.nav-toggle {
  display: none;
  order: 3;
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(123, 63, 184, 0.22);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.nav-toggle:hover {
  background: rgba(123, 63, 184, 0.38);
  border-color: var(--accent);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--accent);
  border-radius: 1px;
}

.header-nav {
  display: flex;
  align-items: center;
  order: 5;
  flex: 0 0 100%;
  width: 100%;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-block;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9c0dc;
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition);
}

.nav-list a:hover {
  color: var(--text);
  border-bottom-color: rgba(212, 175, 55, 0.55);
}

.nav-list a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-list a.nav-cta {
  margin-left: 0.15rem;
  padding: 0.55rem 1.1rem;
  border-bottom: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #140c1c;
  letter-spacing: 0.07em;
}

.nav-list a.nav-cta:hover {
  background: var(--accent-hover);
  color: #140c1c;
  border-bottom-color: transparent;
}

.nav-list a.nav-cta[aria-current="page"] {
  box-shadow: inset 0 0 0 2px rgba(20, 12, 28, 0.35);
}

@media (max-width: 900px) {
  :root {
    --header-h: 60px;
  }

  .header-logo {
    height: 42px;
    max-width: min(180px, 52vw);
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    min-height: auto;
  }

  .header-phone {
    font-size: 0.72rem;
    margin-right: 0.15rem;
  }

  .header-nav {
    flex: 0 0 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.38s ease,
      opacity 0.28s ease,
      padding 0.25s ease;
  }

  .header-nav.is-open {
    max-height: 360px;
    opacity: 1;
    padding-top: 0.65rem;
    padding-bottom: 0.35rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    margin-top: 0.35rem;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-list a {
    padding: 0.7rem 0;
    border-bottom: none;
  }

  .nav-list a[aria-current="page"] {
    border-left: 3px solid var(--accent);
    padding-left: 0.65rem;
  }

  .nav-list a.nav-cta {
    margin-left: 0;
    margin-top: 0.45rem;
    text-align: center;
    border-left: none;
    padding-left: 1.1rem;
  }

  .nav-list a.nav-cta[aria-current="page"] {
    border-left: none;
  }
}

/* Layout */
main {
  min-height: 60vh;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-title {
  font-family: var(--font-royal-serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  color: #f4f0ff;
  position: relative;
  text-shadow: 0 2px 20px rgba(123, 63, 184, 0.25);
}

.section-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 3px;
  margin-top: 0.55rem;
  background: linear-gradient(
    90deg,
    transparent,
    #5c4010 5%,
    #bf953f 22%,
    #fcf6ba 48%,
    #aa771c 72%,
    transparent 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.section-lead {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 2rem;
}

/* Hero + slideshow */
.hero {
  position: relative;
  min-height: min(85vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem) 3rem;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 10, 20, 0.4) 0%,
    rgba(36, 24, 58, 0.55) 45%,
    var(--bg-deep) 100%
  );
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-royal-serif);
  font-size: clamp(2.35rem, 6vw, 3.65rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0 0 0.85rem;
  color: #faf8ff;
  text-shadow: 0 2px 24px rgba(123, 63, 184, 0.35);
}

.hero-tagline {
  font-family: var(--font-tagline-elegant);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 3.2vw, 1.65rem);
  line-height: 1.55;
  margin: 0 0 1.1rem;
  max-width: 520px;
  padding: 0.15em 0 0.85rem;
  color: #ecd9a8;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.75),
    0 2px 16px rgba(212, 175, 55, 0.22);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      transparent,
      rgba(191, 149, 63, 0.4) 15%,
      #fcf6ba 45%,
      #aa771c 70%,
      transparent 100%
    )
    1;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-tagline {
    background-image: var(--gold-text-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }
}

.hero p.hero-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 0 1.75rem;
  max-width: 480px;
}

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

.hero-dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    background-position 0.35s ease,
    color var(--transition),
    box-shadow var(--transition),
    transform 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gold-metallic);
  background-size: 200% 100%;
  color: #140a0a;
  box-shadow:
    0 2px 0 rgba(107, 76, 10, 0.55),
    0 6px 20px rgba(212, 175, 55, 0.22);
  font-weight: 700;
}

.btn-primary:hover {
  background-position: 100% 0;
  color: #0a0606;
  box-shadow:
    0 2px 0 rgba(107, 76, 10, 0.45),
    0 8px 26px rgba(252, 246, 186, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-gold);
}

.btn-ghost:hover {
  background: rgba(123, 63, 184, 0.2);
  border-color: var(--accent);
  color: var(--accent-hover);
}

/* Cards (home features, services carousel) */
.card {
  background: linear-gradient(165deg, rgba(123, 63, 184, 0.06) 0%, var(--bg-card) 40%);
  border: 1px solid var(--border);
  border-top: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow), 0 0 0 1px rgba(123, 63, 184, 0.08);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

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

.card .service-list {
  margin: 0.9rem 0 0;
  padding: 0 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.card .service-list li {
  margin-bottom: 0.4rem;
}

.card .service-list li:last-child {
  margin-bottom: 0;
}

.services-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 0.4rem;
}

.services-footnote {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.services-footnote a {
  font-weight: 600;
}

.services-core-focus {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #e4dcf5;
  max-width: 42rem;
}

.services-core-focus strong {
  color: var(--accent);
}

.card-core {
  border-top-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(123, 63, 184, 0.08),
    inset 0 1px 0 rgba(252, 246, 186, 0.06);
}

/* Services carousel (3 cards per slide; same pattern as testimonials) */
.services-carousel {
  max-width: min(100%, 68rem);
  margin: 0 auto;
}

.services-carousel-row {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}

@media (min-width: 520px) {
  .services-carousel-row {
    gap: 0.65rem;
  }
}

.services-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

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

.services-page {
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  z-index: 0;
  align-items: stretch;
}

.services-page.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

@media (min-width: 900px) {
  .services-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.services-carousel .card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
}

.services-carousel .card p {
  flex: 1 1 auto;
}

.services-carousel .card .service-list {
  margin-top: 0.9rem;
}

/* Forms */
.form {
  position: relative;
  max-width: 560px;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

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

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* About */
.about-block {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-block {
    grid-template-columns: 1fr 1fr;
  }
}

.about-visual {
  border-radius: var(--radius-lg);
  min-height: 280px;
  background: var(--bg-card) center/cover;
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px rgba(123, 63, 184, 0.15), inset 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.prose {
  color: var(--text-muted);
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose-lead {
  font-size: 1.075rem;
  line-height: 1.72;
  color: var(--text);
}

.prose .about-sign-off {
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding-left: 1.125rem;
  border-left: 3px solid var(--accent);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.68;
}

.prose .about-cta {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.06) 0%, var(--bg-card) 45%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 0 0 1px rgba(123, 63, 184, 0.1);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.contact-item {
  margin-bottom: 1.25rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item strong {
  font-size: 1.1rem;
  color: var(--text);
}

.contact-item a {
  word-break: break-all;
}

.contact-privacy {
  margin-top: 2.25rem;
}

.contact-privacy-card .contact-privacy-prose {
  margin: 0;
}

.contact-privacy-prose p {
  margin: 0 0 0.85rem;
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-privacy-prose p:last-child {
  margin-bottom: 0;
}

.contact-privacy-prose strong {
  color: var(--text);
  font-weight: 600;
}

.contact-privacy-foot {
  margin-top: 1rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem !important;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      transparent 0%,
      #7a5c1e 12%,
      #fcf6ba 50%,
      #7a5c1e 88%,
      transparent 100%
    )
    1;
  background: linear-gradient(180deg, #160f24 0%, #080510 100%);
  box-shadow: inset 0 1px 0 rgba(123, 63, 184, 0.12);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1120px;
  margin-inline: auto;
}

.footer-tagline {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: var(--font-tagline-elegant);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  padding: 0.1em 0.5rem 0;
  color: #ecd9a8;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.7),
    0 0 18px rgba(212, 175, 55, 0.2);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .footer-tagline {
    background-image: var(--gold-text-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }
}

.footer-brand {
  font-family: var(--font-royal-serif);
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.02em;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-contact a {
  color: var(--text);
}

.footer-copy {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Page header (inner pages) */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem) 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(
    128deg,
    rgba(93, 36, 138, 0.45) 0%,
    rgba(61, 20, 88, 0.55) 38%,
    rgba(30, 15, 40, 0.92) 72%,
    rgba(212, 175, 55, 0.08) 100%
  );
  box-shadow: inset 0 -1px 0 rgba(212, 175, 55, 0.2);
}

.page-hero h1 {
  font-family: var(--font-royal-serif);
  font-size: clamp(2.05rem, 4vw, 2.85rem);
  font-style: italic;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
  color: #faf8ff;
  text-shadow: 0 2px 28px rgba(123, 63, 184, 0.4);
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 520px;
}

.page-hero-wide {
  max-width: min(40rem, 100%);
}

/* Hero differentiator (unique positioning line) */
.hero-differentiator {
  font-family: var(--font-tagline-elegant);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  line-height: 1.45;
  color: #d8cce8;
  margin: 0 0 1rem;
  max-width: 32rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

/* Trust strip below hero */
.trust-strip {
  background: linear-gradient(180deg, rgba(30, 15, 46, 0.95) 0%, rgba(18, 10, 28, 0.98) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding: 0.85rem 1.25rem;
}

.trust-strip-inner {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.trust-strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c9c0dc;
}

.trust-strip-list strong {
  color: var(--accent);
  font-weight: 700;
}

/* Testimonials carousel (3 reviews per slide on wide screens) */
.testimonials-carousel {
  max-width: min(100%, 68rem);
  margin: 0 auto;
}

.testimonials-carousel-row {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}

@media (min-width: 520px) {
  .testimonials-carousel-row {
    gap: 0.65rem;
  }
}

.testimonial-nav,
.services-nav,
.work-gallery-nav {
  flex-shrink: 0;
  align-self: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: rgba(123, 63, 184, 0.12);
  color: var(--accent);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.testimonial-nav:hover,
.services-nav:hover,
.work-gallery-nav:hover {
  background: rgba(123, 63, 184, 0.22);
  color: var(--accent-hover);
}

.testimonial-nav:focus-visible,
.services-nav:focus-visible,
.work-gallery-nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.testimonial-nav span,
.services-nav span,
.work-gallery-nav span {
  display: block;
  margin-top: -0.12em;
}

.testimonials-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

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

.testimonial-page {
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  z-index: 0;
  align-items: stretch;
}

.testimonial-page.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

@media (min-width: 900px) {
  .testimonial-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .testimonial-page--single {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .testimonial-page--single .testimonial-card {
    max-width: 22rem;
    width: 100%;
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.2rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 2px solid rgba(212, 175, 55, 0.35);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

@media (min-width: 900px) {
  .testimonial-card {
    padding: 1.25rem 1.1rem;
  }
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
}

.testimonial-card blockquote p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: var(--text);
}

@media (min-width: 900px) {
  .testimonial-card blockquote p {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}

.testimonial-card figcaption {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-dots,
.services-dots,
.work-gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.testimonial-dot,
.services-dot,
.work-gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.testimonial-dot:hover,
.services-dot:hover,
.work-gallery-dot:hover {
  background: rgba(212, 175, 55, 0.45);
}

.testimonial-dot.is-active,
.services-dot.is-active,
.work-gallery-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.testimonial-dot:focus-visible,
.services-dot:focus-visible,
.work-gallery-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.section-tight {
  padding-top: clamp(2rem, 5vw, 3rem);
}

/* Recent work — video + photo carousel (grid) */
.work-showcase-grid {
  margin-top: 1.25rem;
}

.work-category-grid {
  display: grid;
  gap: 1.35rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .work-category-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem 1.75rem;
  }
}

.work-category-video-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Phone-portrait frame: video fills frame (cover); no letterboxing */
.work-video-stage {
  width: 100%;
  max-width: min(420px, 100%);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: #000;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(123, 63, 184, 0.12);
}

/* Smaller on phones so montage doesn’t dominate the scroll */
@media (max-width: 639px) {
  .work-video-stage {
    max-width: min(240px, 72vw);
  }
}

.work-video-bleed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
}

.work-video--fill {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: 0;
}

/* Purple & gold logo + phone over video */
.work-video-brand-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.85rem;
  padding: 0 0.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  pointer-events: none;
}

.work-logo-overlay-img {
  display: block;
  width: min(78%, 200px);
  height: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 1px rgba(212, 175, 55, 0.35));
}

@media (max-width: 639px) {
  .work-logo-overlay-img {
    width: min(88%, 150px);
    max-width: 150px;
  }

  .work-video-brand-overlay {
    bottom: 2.5rem;
    gap: 0.25rem;
  }
}

.work-video-brand-overlay a {
  pointer-events: auto;
  color: #fff;
}

.work-video-brand-overlay a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.work-brand-phone {
  margin: 0;
  font-family: var(--font-royal-serif);
  font-weight: 700;
  font-size: clamp(0.72rem, 2.8vw, 0.95rem);
  line-height: 1.2;
  color: #fff;
  text-shadow:
    0 1px 2px #000,
    0 2px 10px rgba(0, 0, 0, 0.85);
}

.work-brand-phone a {
  text-decoration: none;
  color: inherit;
}

.work-video--fill:focus {
  outline: none;
}

.work-video-bleed:focus-within {
  box-shadow: inset 0 0 0 3px var(--accent-subtle);
}

.work-gallery-heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9c0dc;
}

.work-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 12rem;
}

@media (min-width: 960px) {
  .work-category-gallery-col .work-gallery {
    min-height: min(58vh, 480px);
  }
}

.work-gallery-row {
  display: flex;
  align-items: stretch;
  gap: 0.4rem;
  flex: 1;
  min-height: 200px;
}

@media (min-width: 520px) {
  .work-gallery-row {
    gap: 0.55rem;
  }
}

.work-gallery .work-gallery-nav {
  width: 2.15rem;
  height: 2.15rem;
  font-size: 1.35rem;
  align-self: center;
}

.work-gallery-viewport {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.work-gallery-track {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 200px;
  height: 100%;
}

@media (min-width: 960px) {
  .work-category-gallery-col .work-gallery-track {
    min-height: min(52vh, 420px);
  }
}

.work-gallery-page {
  grid-area: 1 / 1 / 2 / 2;
  margin: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 200px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  z-index: 0;
}

.work-gallery-page.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.work-gallery-page img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* Quote page */
.quote-steps {
  margin: 0 0 2rem;
  padding: 1.35rem 1.5rem;
  background: rgba(123, 63, 184, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  max-width: 560px;
}

.quote-steps-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--accent);
}

.quote-steps-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.quote-steps-list li {
  margin-bottom: 0.4rem;
}

.quote-steps-list li:last-child {
  margin-bottom: 0;
}

.form-intro {
  margin: 0 0 1.25rem;
}

.form select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
  margin-bottom: 0;
}

/* Service area page */
.service-area-showcase {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.service-area-showcase-grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .service-area-showcase-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.75rem 3.25rem;
    align-items: center;
  }
}

.service-area-map-column {
  min-width: 0;
}

.service-area-map-shell {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: clamp(18px, 4vw, 28px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 0 1px rgba(123, 63, 184, 0.12);
  background: var(--bg-elevated);
}

@media (min-width: 900px) {
  .service-area-map-shell {
    margin: 0;
    max-width: none;
  }
}

.service-area-map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.88) brightness(0.92) contrast(1.05);
}

.service-area-radius-ring {
  position: absolute;
  left: 52%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: min(72%, 22rem);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(123, 63, 184, 0.42) 0%,
    rgba(123, 63, 184, 0.22) 55%,
    rgba(123, 63, 184, 0.06) 100%
  );
  box-shadow:
    inset 0 0 0 2px rgba(212, 175, 55, 0.28),
    0 0 40px rgba(123, 63, 184, 0.15);
}

.service-area-map-attrib {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-muted);
  text-align: center;
}

@media (min-width: 900px) {
  .service-area-map-attrib {
    text-align: left;
    max-width: 520px;
  }
}

.service-area-map-attrib a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-area-map-attrib a:hover {
  color: var(--accent);
}

.service-area-showcase-copy {
  min-width: 0;
}

.service-area-visual-heading {
  font-family: var(--font-royal-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.service-area-showcase-lead {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36rem;
}

.service-area-pin-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

@media (min-width: 520px) {
  .service-area-pin-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
  }
}

.service-area-pin-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.98rem;
  color: var(--text);
}

.service-area-pin-list li::before {
  content: "";
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--royal-purple);
  box-shadow: 0 0 0 2px rgba(123, 63, 184, 0.35);
}

.service-area-showcase-cta {
  margin-top: 0.25rem;
}

.service-area-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 40rem;
}

/* Footer trust line */
.footer-trust {
  width: 100%;
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}
