/* Seattle Mandap — Indian luxury wedding aesthetic (logo-derived palette) */

:root {
  --lux-red: #c40000;
  --lux-red-deep: #8b0000;
  --lux-gold: #c9a646;
  --lux-gold-soft: #e5c97a;
  --lux-bg: #faf9f7;
  --lux-text: #1a1a1a;
  --lux-text-muted: #6b6b6b;

  --color-bg: var(--lux-bg);
  --color-bg-elevated: #ffffff;
  --color-bg-warm: #f4f1eb;
  --color-primary: var(--lux-red-deep);
  --color-primary-mid: var(--lux-red);
  --color-primary-dark: var(--lux-text);
  --color-gold: #a67c2d;
  --color-gold-bright: var(--lux-gold);
  --color-gold-muted: var(--lux-gold-soft);
  --color-text: var(--lux-text);
  --color-text-muted: var(--lux-text-muted);
  --color-border: rgba(26, 26, 26, 0.08);
  --font-display: "Cinzel", "Playfair Display", "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --shadow-soft: 0 4px 32px rgba(26, 26, 26, 0.06);
  --shadow-card: 0 12px 40px rgba(26, 26, 26, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --space-section: clamp(3.5rem, 8vw, 6rem);
  --max-width: 72rem;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary-dark);
  margin: 0 0 0.65em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

p {
  margin: 0 0 1rem;
}

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

/* —— Ornamental rule —— */
.rule-gold {
  width: 120px;
  height: 3px;
  margin: 1rem auto 1.5rem;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold-bright),
    var(--color-gold),
    var(--color-gold-bright),
    transparent
  );
  border-radius: 2px;
}

.rule-gold--left {
  margin-left: 0;
  margin-right: 0;
}

/* —— Site header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 249, 247, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  flex-wrap: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  margin-left: auto;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

/* Social icons (header + footer) */
.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.social-icons__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.social-icons__link:hover {
  color: var(--lux-red);
  background: rgba(196, 0, 0, 0.06);
}

.social-icons__link:focus-visible {
  outline: 2px solid var(--color-gold-bright);
  outline-offset: 2px;
}

.social-icons--footer .social-icons__link {
  color: var(--color-gold-muted);
}

.social-icons--footer .social-icons__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.social-icons__svg {
  display: block;
}

.footer-follow-links {
  margin-top: 0.85rem;
}

/* —— Header brand (mark + wordmark) — Cinzel / Montserrat —— */
.site-header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.site-header .logo__link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.site-header .logo__link:hover {
  color: inherit;
}

.site-header .logo__link:focus-visible {
  outline: 2px solid var(--color-gold-bright);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.site-header .logo__img {
  flex-shrink: 0;
  display: block;
  width: 69px;
  height: 66px;
  object-fit: contain;
  object-position: center;
}

.site-header .logo-text {
  min-width: 0;
  text-align: left;
}

/* SEATTLE MANDAP — luxury serif stack */
.site-header .logo-text__name {
  display: block;
  font-family: "Cinzel", "Playfair Display", "Times New Roman", serif;
  font-size: 18px;
  margin: 0;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-primary-dark);
}

/* & EVENT PLANNER — clean geometric sans stack */
.site-header .logo-text__tag {
  display: block;
  font-family: "Montserrat", "Raleway", system-ui, sans-serif;
  font-size: 10px;
  margin: 0;
  letter-spacing: 2px;
  color: #777;
  line-height: 1.3;
  font-weight: 500;
}

@media (max-width: 360px) {
  .site-header .logo-text__name {
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .site-header .logo-text__tag {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .site-header .logo__img {
    width: 61px;
    height: 58px;
  }
}

/* —— Footer text logo —— */
.footer-brand .logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
}

.footer-brand .logo__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.footer-brand .logo__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-muted);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-elevated);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-primary-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-primary a {
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  background: var(--color-bg-warm);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-primary {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }

  .nav-primary.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-primary a {
    padding: 0.75rem 1rem;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: clamp(22rem, 65vh, 38rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-section) 1.25rem;
  overflow: hidden;
  background: linear-gradient(
      145deg,
      var(--color-primary-dark) 0%,
      var(--color-primary) 45%,
      #4a1522 100%
    ),
    radial-gradient(
      ellipse at 30% 20%,
      rgba(201, 162, 39, 0.15) 0%,
      transparent 50%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23c9a227' stroke-opacity='0.08' stroke-width='0.5'/%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

/* Full-bleed photo hero (uses --hero-url from inline style) */
.hero--with-photo {
  min-height: clamp(26rem, 82vh, 44rem);
  padding: clamp(3rem, 10vw, 5rem) 1.25rem;
  background: var(--color-primary-dark);
}

.hero--with-photo::before {
  display: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary-dark);
  background-image: var(--hero-url, none);
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 8, 12, 0.94) 0%,
    rgba(61, 16, 24, 0.78) 42%,
    rgba(61, 16, 24, 0.5) 100%
  );
  pointer-events: none;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23c9a227' stroke-opacity='0.06' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.hero--with-photo .hero__inner {
  z-index: 2;
}

.hero__logo-wrap {
  margin: 0 auto 1.15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo {
  display: block;
  width: min(42vw, 170px);
  height: min(42vw, 170px);
  max-width: 170px;
  max-height: 170px;
  object-fit: contain;
  object-position: center;
}

.hero__kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero--subpage {
  min-height: auto;
  padding: 3rem 1.25rem 3.5rem;
}

/* Inner pages: photo hero (shorter than home) */
.hero--page.hero--with-photo {
  min-height: clamp(17rem, 52vh, 30rem);
  padding: clamp(2.5rem, 7vw, 4rem) 1.25rem;
  text-align: center;
}

.hero--page-compact.hero--with-photo {
  min-height: clamp(15rem, 48vh, 26rem);
}

.hero__overlay--page {
  background: linear-gradient(
    165deg,
    rgba(30, 8, 12, 0.92) 0%,
    rgba(61, 16, 24, 0.72) 45%,
    rgba(61, 16, 24, 0.45) 100%
  );
}

.hero__inner--page {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero--page .rule-gold {
  margin-left: auto;
  margin-right: auto;
}

.hero--subpage.hero--with-photo .hero__lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero h1,
.hero h2,
.hero .hero__title {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero p,
.hero .hero__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.hero .rule-gold {
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold-muted),
    var(--color-gold-bright),
    var(--color-gold-muted),
    transparent
  );
}

/* —— Immersive photo hero (<img.hero-bg> + overlay) —— */
.hero--immersive {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  background: var(--color-primary-dark);
}

.hero--immersive::before {
  display: none;
}

.hero--immersive-home {
  height: 100vh;
  height: 100dvh;
  min-height: 28rem;
}

.hero--immersive-page {
  min-height: clamp(17rem, 52vh, 32rem);
}

.hero--immersive-page.hero--page-compact {
  min-height: clamp(15rem, 46vh, 26rem);
}

.hero--immersive-page--no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2.5rem, 8vw, 4rem) 1.25rem;
  background: linear-gradient(
    145deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 45%,
    #4a1522 100%
  );
}

.hero--immersive .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero--immersive .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.62)
  );
  pointer-events: none;
  z-index: 1;
}

.hero--immersive-page.hero--with-photo-img .hero-overlay {
  background: linear-gradient(
    165deg,
    rgba(30, 8, 12, 0.88) 0%,
    rgba(61, 16, 24, 0.72) 50%,
    rgba(20, 10, 14, 0.55) 100%
  );
}

.hero-content--home {
  position: absolute;
  bottom: 20%;
  left: 8%;
  z-index: 2;
  max-width: 600px;
  text-align: left;
  color: #fff;
  padding-right: 1.25rem;
}

.hero-content--page {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(2.25rem, 7vw, 4rem) 1.25rem;
  text-align: center;
  color: #fff;
}

.hero--immersive-home .hero__title--home,
.hero--immersive-home .hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0 0 0.65rem;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
  .hero--immersive-home .hero__title--home,
  .hero--immersive-home .hero__title {
    font-size: 3rem;
  }
}

.hero--immersive-home .hero__tagline {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  margin: 0.35rem 0 1.75rem;
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 900px) {
  .hero--immersive-home .hero__tagline {
    font-size: 1.125rem;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero--immersive .btn-primary {
  background: #c40000;
  color: #fff;
  border: 2px solid #c40000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  padding: 0.85rem 1.65rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(196, 0, 0, 0.3);
}

.hero--immersive .btn-primary:hover {
  background: #a30000;
  border-color: #a30000;
  color: #fff;
}

.hero--immersive .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  padding: 0.85rem 1.65rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero--immersive .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.page-home .hero--immersive-home.hero--with-photo-img .hero-bg {
  transform: scale(1.02);
  animation: sm-hero-ken 22s ease-in-out infinite alternate;
}

@keyframes sm-hero-ken {
  from {
    transform: scale(1.02) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-0.4%, -0.4%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero--immersive-home.hero--with-photo-img .hero-bg {
    animation: none;
    transform: none;
  }
}

/* Services page: structured grid */
.services-showcase {
  padding: clamp(3rem, 8vw, 5rem) 1.25rem;
  background: var(--color-bg);
}

.services-showcase__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-showcase__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.services-showcase__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--color-primary-dark);
}

.services-showcase__lead {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.services-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.service-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card__body {
  padding: 1.25rem 1.15rem 1.4rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--color-primary-dark);
}

.service-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.services-detail-section .services-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.services-detail-list__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.services-detail-list__thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-warm);
}

.services-detail-list__thumb img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  display: block;
}

.services-detail-list__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--color-primary-dark);
}

.services-detail-list__copy p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Gallery: visual-first */
.gallery-visual {
  padding: clamp(3rem, 8vw, 5rem) 1.25rem;
  background: var(--color-bg-warm);
}

.gallery-visual__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-visual__head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.gallery-visual__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.65rem;
}

.gallery-visual__lead {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.gallery-visual__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-visual__cell {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.gallery-visual__link {
  display: block;
  line-height: 0;
}

.gallery-visual__grid img {
  width: 100%;
  height: clamp(200px, 28vw, 280px);
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-visual__link:hover img {
  transform: scale(1.03);
}

.gallery-more-section {
  padding-top: 0;
}

/* About: distinct layout */
.about-story-split {
  padding: clamp(3rem, 8vw, 5rem) 1.25rem;
  background: var(--color-bg);
}

.about-story-split__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 42%);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about-story-split__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  margin: 0 0 0.5rem;
  color: var(--color-primary-dark);
}

.about-story-split__lead {
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-story-split__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-story-split__figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 280px;
}

.about-values {
  padding: clamp(3rem, 8vw, 4.5rem) 1.25rem;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-values__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-values__title {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  margin: 0 0 0.5rem;
  color: var(--color-primary-dark);
}

.about-values__intro {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: var(--color-text-muted);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-value-card {
  padding: 1.5rem 1.25rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.about-value-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--color-primary);
}

.about-value-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.about-trust-stats {
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.25rem;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #3d1018 100%);
  color: #fff;
}

.about-trust-stats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-trust-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.about-trust-stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.04em;
  color: var(--color-gold-bright);
}

.about-trust-stats__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  opacity: 0.88;
}

@media (max-width: 1024px) {
  .services-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about-trust-stats__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .services-showcase {
    padding: 2rem 1.25rem 2.5rem;
  }

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

  .hero--immersive-home .hero__title--home,
  .hero--immersive-home .hero__title {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .hero-content--home {
    left: 5%;
    bottom: 15%;
    max-width: none;
    padding-right: 1rem;
  }

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

  .gallery-visual__grid img {
    height: clamp(160px, 42vw, 220px);
  }

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

  .services-detail-list__thumb {
    max-height: 200px;
  }

  .about-story-split__inner {
    grid-template-columns: 1fr;
  }

  .about-story-split__figure {
    order: -1;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s,
    color 0.2s, border-color 0.2s;
}

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

.btn--primary {
  background: linear-gradient(
    135deg,
    var(--color-gold-bright),
    var(--color-gold)
  );
  color: var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn--primary:hover {
  color: var(--color-primary-dark);
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.45);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero--subpage .btn--ghost {
  border-color: var(--color-gold-muted);
  color: var(--color-gold-muted);
}

.hero--subpage .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* —— Sections —— */
.section {
  padding: var(--space-section) 1.25rem;
}

.section--alt {
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

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

/* —— Cards grid —— */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    var(--color-bg-warm),
    rgba(201, 162, 39, 0.2)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

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

/* —— Quote block —— */
.blockquote-feature {
  max-width: 36rem;
  margin: 2rem auto 0;
  padding: 2rem 2.25rem;
  background: var(--color-bg-elevated);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-primary-dark);
  line-height: 1.45;
}

.blockquote-feature cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--color-bg-warm),
    var(--color-bg)
  );
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.gallery-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(107, 28, 46, 0.06);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* —— Contact form —— */
.form-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 36rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row--half {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 540px) {
  .form-row--half {
    grid-template-columns: 1fr;
  }
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-elevated);
  color: var(--color-text);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input,
select {
  min-height: 48px;
}

textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.5;
}

@media (max-width: 768px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #b91c1c;
}

.field-error {
  font-size: 0.85rem;
  color: #b91c1c;
  min-height: 1.2em;
}

/* Honeypot — hidden from users */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* —— Contact aside —— */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-card {
  background: var(--color-bg-elevated);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.contact-card a {
  font-weight: 600;
}

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

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  background: var(--color-bg-warm);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.social-row a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* —— Footer —— */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.25rem;
  margin-top: auto;
}

.site-footer a {
  color: var(--color-gold-muted);
}

.site-footer a:hover {
  color: #fff;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.site-footer p,
.site-footer li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.35rem;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

/* —— Two column story —— */
.split-story {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .split-story {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* —— Animations (reveal) —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* —— Utilities —— */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-lg {
  margin-bottom: 2rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

/* —— Breadcrumbs —— */
.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem 1.25rem 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.45;
  pointer-events: none;
}

.breadcrumbs a {
  color: var(--color-primary-mid);
  font-weight: 600;
}

/* —— FAQ accordion —— */
.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item__q {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  padding: 1rem 1.15rem;
  padding-right: 2.5rem;
  position: relative;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--color-gold);
  font-weight: 700;
}

.faq-item[open] .faq-item__q::after {
  content: "−";
}

.faq-item__a {
  padding: 0 1.15rem 1.1rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  border-top: 1px solid var(--color-border);
}

.faq-item__a p {
  margin: 0.85rem 0 0;
}

/* —— Social proof & celebration cards —— */
.social-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.celebrations-subhead {
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-top: 2rem;
  margin-bottom: 0;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.review-card__stars {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--color-gold-bright);
  line-height: 1;
}

.review-card__quote {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  flex: 1;
}

.review-card__quote p {
  margin: 0;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.55;
  font-size: 0.98rem;
}

.review-card__author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  margin: 0 0 0.25rem;
}

.review-card__detail {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
}

.review-card__src {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-gold);
  font-weight: 600;
  margin: 0;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-soft);
}

.testimonial-card__names {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin: 0 0 0.65rem;
}

.testimonial-card__quote {
  font-style: italic;
  color: var(--color-text);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.testimonial-card__src {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  font-weight: 600;
  margin: 0;
}

/* Journal / celebration cards (first-party posts, not reviews) */
.celebrations-intro {
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.celebration-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.25rem;
  max-width: 52rem;
  margin: 0 auto;
}

.celebration-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.celebration-card__couple {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-primary-dark);
  margin: 0 0 0.75rem;
}

.celebration-card__body {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}

.celebration-card__body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-text);
}

.celebration-card__source {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.celebration-card__source-label {
  color: var(--color-gold);
}

/* —— About figure —— */
.about-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.about-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* —— Services alternating rows —— */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

@media (min-width: 900px) {
  .service-row {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
  }

  .service-row:nth-child(even) {
    flex-direction: row-reverse;
  }

  .service-row__media,
  .service-row__body {
    flex: 1;
    min-width: 0;
  }
}

.service-row__media {
  width: 100%;
  max-width: 28rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.service-row__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-row__body h3 {
  margin-bottom: 0.5rem;
}

.service-row__body p {
  color: var(--color-text-muted);
  margin: 0;
}

/* —— Gallery clickable cell —— */
.gallery-item__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.gallery-item__link:focus-visible {
  outline: 2px solid var(--color-gold-bright);
  outline-offset: 2px;
}

/* —— Premium homepage: lux sections (hero uses .hero--immersive-home above) —— */
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2.25rem;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn--lux-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: var(--lux-red);
  border: none;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 32px rgba(196, 0, 0, 0.25);
}

.btn--lux-primary:hover {
  background: var(--lux-red-deep);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn--lux-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn--lux-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff !important;
}

.btn--lux-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lux-red) !important;
  background: transparent;
  border: 1px solid var(--lux-red);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn--lux-outline:hover {
  background: var(--lux-red);
  color: #fff !important;
}

.lux-brand {
  padding: clamp(4.5rem, 12vw, 7rem) 1.5rem;
  background: var(--color-bg);
}

.lux-brand__inner {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.lux-brand__text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin: 0;
}

.lux-wrap {
  max-width: 68rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lux-section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  background: var(--color-bg);
}

.lux-section--signature {
  background: var(--color-bg-elevated);
}

.lux-section__head {
  max-width: 36rem;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lux-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.lux-h2--light {
  color: #fff;
}

.lux-lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

.lux-center {
  text-align: center;
  margin-top: 2.5rem;
}

.lux-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lux-red);
  text-decoration: none;
  border-bottom: 1px solid var(--lux-gold-soft);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease;
}

.lux-link:hover {
  color: var(--lux-red-deep);
}

.lux-service-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lux-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lux-service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.lux-service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lux-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lux-service-card:hover .lux-service-card__media img {
  transform: scale(1.04);
}

.lux-service-card__body {
  padding: 1.5rem 1.35rem 1.65rem;
}

.lux-service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.lux-service-card__line {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

.lux-masonry {
  column-count: 2;
  column-gap: 1rem;
}

@media (min-width: 768px) {
  .lux-masonry {
    column-count: 3;
  }
}

.lux-masonry__item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.lux-masonry__link {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  outline: none;
}

.lux-masonry__link:focus-visible {
  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--lux-gold);
}

.lux-masonry__link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease;
}

.lux-masonry__link:hover img {
  transform: scale(1.05);
}

.lux-trust {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: linear-gradient(180deg, #f7f5f0 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.lux-trust__grid {
  display: grid;
  gap: 2.5rem;
  text-align: center;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .lux-trust__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.lux-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--lux-red);
  margin-bottom: 0.35rem;
}

.lux-stat__label {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.lux-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .lux-process {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.lux-process__step {
  position: relative;
  padding-top: 0.5rem;
}

.lux-process__n {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--lux-red);
  border: 1px solid rgba(196, 0, 0, 0.35);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.lux-process__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.lux-process__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

.lux-final-cta {
  padding: clamp(4.5rem, 11vw, 7rem) 0;
  background: var(--lux-text);
  color: rgba(255, 255, 255, 0.88);
}

.lux-final-cta__inner {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.lux-final-cta__lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 2rem;
}

.lux-final-cta .btn--lux-primary {
  box-shadow: 0 8px 40px rgba(196, 0, 0, 0.35);
}

.lux-final-cta .btn--lux-ghost {
  border-color: rgba(201, 166, 70, 0.45);
}

.lux-social.section--alt {
  background: #f3f1ec;
}

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