/* Boutique Baroque — luxury showcase */
:root {
  --ink: #0f0e0d;
  --ink-soft: #1a1816;
  --cream: #faf7f2;
  --cream-dark: #ebe6dc;
  --gold: #b8956a;
  --gold-bright: #d4b896;
  --gold-deep: #8a6f4d;
  --text: #3d3834;
  --text-muted: #6b6560;
  --white: #ffffff;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --shadow-soft: 0 24px 60px rgba(15, 14, 13, 0.12);
  --shadow-lift: 0 12px 40px rgba(15, 14, 13, 0.08);
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  /* Site / home template (unified) */
  --home-charcoal: #1a1a1a;
  --home-charcoal-deep: #0d0d0d;
  --home-gold: #c9a962;
  --home-gold-dim: #a68b4b;
  --home-muted: #6b6b6b;
  --home-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--home-white);
  overflow-x: hidden;
}

body.site-inner {
  background-color: #fafafa;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.text-gold {
  color: var(--gold-deep) !important;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

/* Navbar */
.navbar-baroque {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 149, 106, 0.2);
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: box-shadow var(--transition);
}

.navbar-baroque.scrolled {
  box-shadow: var(--shadow-lift);
}

.navbar-baroque .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-baroque .navbar-brand-icon {
  flex-shrink: 0;
  display: block;
  width: 40px;
  height: 40px;
}

.navbar-baroque .nav-link {
  color: var(--text) !important;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-baroque .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-baroque .nav-link:hover::after,
.navbar-baroque .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-baroque .nav-link.active {
  color: var(--ink) !important;
}

.btn-baroque {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-bright) 100%);
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(138, 111, 77, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-baroque:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(138, 111, 77, 0.45);
  color: var(--white) !important;
}

.btn-outline-baroque {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep) !important;
  background: transparent;
  transition: all var(--transition);
}

.btn-outline-baroque:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream) !important;
}

/* Hero */
.hero-luxury {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding-top: 5.5rem;
  padding-bottom: 4rem;
}

.hero-luxury .container {
  position: relative;
  z-index: 1;
}

/* Full-bleed cinematic banner */
.hero-immersive.hero-luxury {
  min-height: min(92vh, 900px);
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 5.5rem);
}

@media (min-width: 992px) {
  .hero-immersive.hero-luxury {
    align-items: center;
    padding-bottom: 4rem;
  }
}

.hero-immersive-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  z-index: 0;
}

.hero-immersive-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      rgba(12, 11, 10, 0.94) 0%,
      rgba(12, 11, 10, 0.78) 38%,
      rgba(12, 11, 10, 0.35) 62%,
      rgba(12, 11, 10, 0.12) 100%
    ),
    linear-gradient(to top, rgba(12, 11, 10, 0.75) 0%, transparent 42%);
}

@media (min-width: 992px) {
  .hero-immersive-scrim {
    background:
      linear-gradient(
        95deg,
        rgba(12, 11, 10, 0.93) 0%,
        rgba(12, 11, 10, 0.55) 48%,
        rgba(12, 11, 10, 0.2) 72%,
        transparent 100%
      ),
      linear-gradient(to top, rgba(12, 11, 10, 0.35) 0%, transparent 50%);
  }
}

.hero-immersive-content {
  position: relative;
  z-index: 2;
  padding-bottom: 0.5rem;
}

.hero-immersive.hero-luxury .hero-immersive-content {
  z-index: 2;
}

.hero-immersive-accent {
  display: block;
  width: 3rem;
  height: 1px;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold-deep));
  opacity: 0.9;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0;
  font-weight: 400;
}

.hero-immersive .hero-immersive-title {
  color: var(--cream);
  font-size: clamp(2.4rem, 4.5vw + 1rem, 3.65rem);
  line-height: 1.06;
  margin-bottom: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 32px rgba(0, 0, 0, 0.35);
}

.hero-dek {
  color: rgba(250, 247, 242, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 34rem;
  font-weight: 300;
  font-family: var(--font-body);
}

.hero-luxury .lead {
  color: rgba(250, 247, 242, 0.78);
  font-size: 1.1rem;
  max-width: 32rem;
  font-weight: 300;
}

.hero-immersive .btn-immersive-secondary {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(250, 247, 242, 0.55);
  color: var(--cream) !important;
  background: rgba(15, 14, 13, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.hero-immersive .btn-immersive-secondary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink) !important;
}

/* Legacy hero frame (other pages if reused) */
.hero-frame {
  position: relative;
  border: 1px solid rgba(184, 149, 106, 0.35);
  padding: 1.25rem;
  background: linear-gradient(145deg, rgba(26, 24, 22, 0.6) 0%, rgba(15, 14, 13, 0.9) 100%);
}

.hero-frame-inner {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #2a2624 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-frame-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 25%, rgba(184, 149, 106, 0.18) 0%, transparent 55%),
    linear-gradient(to top, rgba(15, 14, 13, 0.72) 0%, rgba(15, 14, 13, 0.2) 55%, rgba(15, 14, 13, 0.25) 100%);
  z-index: 1;
}

.hero-frame-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.95) contrast(1.02);
}

.hero-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.6;
}

.hero-corner-tl {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.hero-corner-tr {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.hero-corner-bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.hero-corner-br {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

/* Sections */
.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.bg-ink-section {
  background: var(--ink-soft);
  color: var(--cream);
}

.bg-ink-section .section-title,
.bg-ink-section h3 {
  color: var(--cream);
}

.bg-ink-section .text-muted-custom {
  color: rgba(250, 247, 242, 0.65) !important;
}

/* Feature cards */
.feature-card {
  background: var(--white);
  border: 1px solid rgba(184, 149, 106, 0.2);
  padding: 2rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-card .icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  border: 1px solid rgba(184, 149, 106, 0.3);
  color: var(--gold-deep);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

/* Showcase strip */
.showcase-item {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.showcase-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 14, 13, 0.92) 0%, transparent 55%);
  z-index: 1;
}

.showcase-item .showcase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: transform 0.6s ease, opacity var(--transition);
}

.showcase-item:hover .showcase-bg {
  transform: scale(1.06);
  opacity: 0.55;
}

.showcase-item .showcase-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
}

.showcase-item h3 {
  color: var(--cream);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

/* Image + text sections (Home) */
.media-tile {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--ink);
  border: 1px solid rgba(184, 149, 106, 0.25);
  box-shadow: var(--shadow-lift);
  transition: transform var(--transition), box-shadow var(--transition);
}

.media-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.media-tile .media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.62;
  transition: transform 0.7s ease, opacity var(--transition);
}

.media-tile:hover .media-bg {
  transform: scale(1.06);
  opacity: 0.7;
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 14, 13, 0.92) 0%, rgba(15, 14, 13, 0.18) 68%);
  z-index: 1;
}

.media-tile .media-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding: 2rem;
}

.media-tile .media-content h3 {
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.media-tile .media-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(212, 184, 150, 0.55);
  background: rgba(15, 14, 13, 0.35);
  color: rgba(250, 247, 242, 0.9);
}

.split-media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(184, 149, 106, 0.25);
  box-shadow: var(--shadow-lift);
}

/* Full-bleed background for “One image…” featured section */
.split-media .split-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
  transform: scale(1.02);
}

/* Readable text on the left; image stays visible toward the right */
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 15% 40%, rgba(15, 14, 13, 0.88) 0%, transparent 55%),
    linear-gradient(105deg, rgba(15, 14, 13, 0.82) 0%, rgba(15, 14, 13, 0.55) 38%, rgba(15, 14, 13, 0.25) 65%, rgba(15, 14, 13, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

.split-media-row {
  z-index: 2;
}

.split-media .split-content {
  position: relative;
  z-index: 2;
  padding: 2.75rem 2.5rem;
  color: var(--cream);
}

.split-media .split-content h3,
.split-media .split-content h2 {
  color: var(--cream);
}

@media (max-width: 991.98px) {
  .split-media {
    min-height: 520px;
  }

  .split-media::after {
    background: linear-gradient(to top, rgba(15, 14, 13, 0.2) 0%, rgba(15, 14, 13, 0.75) 45%, rgba(15, 14, 13, 0.88) 100%);
  }
.navbar-collapse {
    background-color: #000;
    padding: 15px;
}
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold) 40%, #a67c52 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-band p {
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-band .btn-baroque {
  background: var(--ink);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

.cta-band .btn-baroque:hover {
  background: var(--cream);
  color: var(--ink) !important;
}

/* Footer */
.footer-baroque {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.75);
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(184, 149, 106, 0.2);
}

.footer-baroque a {
  color: rgba(250, 247, 242, 0.8);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-baroque a:hover {
  color: var(--gold-bright);
}

.footer-baroque .footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 149, 106, 0.4), transparent);
  margin: 2.5rem 0 1.5rem;
}

/* Blog */
.blog-card {
  background: var(--white);
  border: 1px solid rgba(184, 149, 106, 0.18);
  overflow: hidden;
  height: 100%;
  transition: box-shadow var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-soft);
}

.blog-card-thumb {
  height: 200px;
  background: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(184, 149, 106, 0.35);
  font-size: 3rem;
}

.blog-card-body {
  padding: 1.75rem;
}

.blog-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Article */
.article-hero {
  background: var(--home-charcoal-deep);
  color: var(--home-white);
  padding: 8rem 0 3rem;
}

.article-hero h1 {
  color: var(--home-white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1rem 5rem;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* Contact */
.contact-panel {
  background: var(--white);
  border: 1px solid rgba(184, 149, 106, 0.2);
  padding: 2.5rem;
  box-shadow: var(--shadow-lift);
}

.form-control-baroque {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control-baroque:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.15);
  outline: none;
}

.form-label-baroque {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Page header inner (matches site / home bar) */
.page-header {
  background: var(--home-charcoal-deep);
  color: var(--home-white);
  padding: 7rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  color: var(--home-white);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

/* Utilities */
.divider-gold {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  margin: 1.5rem 0;
}

@media (max-width: 991.98px) {
  .hero-luxury {
    min-height: auto;
    padding-top: 5.75rem;
    padding-bottom: 3.5rem;
  }

  .hero-immersive.hero-luxury {
    min-height: 78vh;
  }

  .hero-immersive-scrim {
    background:
      linear-gradient(to top, rgba(12, 11, 10, 0.92) 0%, rgba(12, 11, 10, 0.55) 42%, rgba(12, 11, 10, 0.35) 100%);
  }

  .hero-frame {
    margin-top: 2.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== Home template (merged; was home.css) ========== */
.home-page {
  background-color: var(--home-white);
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page .home-heading {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: inherit;
}

body.site-inner .navbar-home {
  background: rgba(13, 13, 13, 0.94) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.page-header .home-label-gold {
  color: var(--home-gold);
}

.page-header h1.display-font,
.article-hero h1.display-font {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.article-hero .blog-meta {
  color: var(--home-gold) !important;
}

.contact-panel.contact-panel-site {
  border: 1px solid #eee;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

/* —— Nav over hero —— */
.navbar-home {
  background: transparent;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.navbar-home.navbar-home-solid {
  background: rgba(13, 13, 13, 0.94) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 169, 98, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.navbar-home .navbar-brand {
  font-family: var(--font-body) !important;
  font-size: 1.675rem !important;
  font-weight: 600 !important;
  color: var(--home-white) !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
}
.navbar-home-solid .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: #fff;
}
.navbar-home .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 16px !important;
  font-weight: normal !important;
  letter-spacing: 0.14em !important;
}
.breadcrumb-item+.breadcrumb-item::before {
   color: var(--home-gold) !important;
 }
.navbar-home .nav-link:hover,
.navbar-home .nav-link.active {
  color: var(--home-gold) !important;
}

.navbar-home .nav-link::after {
  background: var(--home-gold) !important;
}

.navbar-home .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-home .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-home .navbar-brand-icon {
  filter: none;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  color: var(--home-white);
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.home-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 13, 13, 0.55) 0%,
    rgba(13, 13, 13, 0.35) 45%,
    rgba(13, 13, 13, 0.25) 100%
  );
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.home-hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 0;
}

.home-hero-left {
  flex: 1 1 100%;
  max-width: 100%;
  padding-right: 0;
}

@media (min-width: 992px) {
  .home-hero-left {
    flex: 1 1 0;
    max-width: 38%;
    padding-right: 2rem;
  }
}

.home-hero-rule {
  display: none;
  width: 1px;
  align-self: stretch;
  min-height: 200px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--home-gold) 15%,
    var(--home-gold) 85%,
    transparent
  );
  opacity: 0.85;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .home-hero-rule {
    display: block;
  }
}

.home-hero-right {
  flex: 1 1 100%;
}

@media (min-width: 992px) {
  .home-hero-right {
    flex: 1 1 0;
    text-align: right;
  }
}

.home-hero-intro {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  max-width: 26rem;
}

@media (min-width: 992px) {
  .home-hero-intro {
    margin-bottom: 1.75rem;
  }
}

.home-hero-mobile-rule {
  display: block;
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--home-gold), var(--home-gold-dim));
  margin: 1.5rem 0;
}

@media (min-width: 992px) {
  .home-hero-mobile-rule {
    display: none;
  }
}

.home-hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .home-hero-eyebrow-row {
    justify-content: flex-start;
  }
}

.home-hero-eyebrow-line {
  width: 2.5rem;
  height: 2px;
  background: var(--home-gold);
}

.home-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--home-gold);
  margin: 0;
}

.home-hero-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.35rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--home-white);
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 992px) {
  .home-hero-title {
    margin-bottom: 0;
  }
}

.btn-home-outline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 1.85rem;
  border: 1px solid var(--home-gold);
  color: var(--home-white) !important;
  background: transparent;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-home-outline:hover {
  background: var(--home-gold);
  color: var(--home-charcoal-deep) !important;
  border-color: var(--home-gold);
}

.home-hero-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-hero-social a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  transition: color 0.25s ease;
}

.home-hero-social a:hover {
  color: var(--home-gold);
}

.home-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.home-label-gold {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--home-gold-dim);
  margin-bottom: 0.75rem;
}

.home-title-dark {
  font-size: clamp(1.75rem, 2.5vw + 1rem, 2.35rem);
  line-height: 1.2;
  color: var(--home-charcoal-deep);
  margin-bottom: 1rem;
}

.home-about-img-wrap {
  position: relative;
  padding: 0.5rem;
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: var(--home-white);
}

.home-about-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.home-services {
  position: relative;
  padding-bottom: 6rem;
}

.home-services-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}

@media (min-width: 992px) {
  .home-services-split {
    grid-template-columns: 40% 60%;
    min-height: 400px;
  }
}

.home-services-dark {
  background: var(--home-charcoal);
  color: var(--home-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

@media (min-width: 992px) {
  .home-services-dark {
    text-align: left;
    padding: 3rem 8% 3rem 12%;
  }
}

.home-services-dark .home-label-gold {
  color: var(--home-gold);
}

.home-services-title {
  font-size: clamp(1.65rem, 2vw + 1rem, 2.25rem);
  font-weight: 700;
  color: var(--home-white);
  line-height: 1.25;
  margin: 0;
}

.home-services-photo {
  background-size: cover;
  background-position: center;
  min-height: 240px;
}

.home-services-cards-wrap {
  margin-top: -4.5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .home-services-cards-wrap {
    margin-top: -2.5rem;
  }
}

.home-service-card {
  background: var(--home-white);
  padding: 2rem 1.5rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.home-service-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-gold);
  color: var(--home-gold-dim);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.home-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--home-charcoal-deep);
  margin-bottom: 0.75rem;
}

.home-service-card p {
  font-size: 0.9rem;
  color: var(--home-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.home-service-card .read-more {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-charcoal-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--home-gold);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.home-service-card .read-more:hover {
  color: var(--home-gold-dim);
}

.home-portfolio-section {
  --portfolio-gold: #b89b5e;
  margin-bottom: 60px;
}

.home-portfolio-header {
  margin-bottom: 2.75rem;
}

.home-portfolio-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.home-portfolio-eyebrow-line {
  display: block;
  height: 1px;
  width: min(4.25rem, 11vw);
  background: var(--portfolio-gold);
  flex-shrink: 0;
  opacity: 0.95;
}

.home-portfolio-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--portfolio-gold);
  white-space: nowrap;
}

.home-portfolio-title {
  text-align: center;
  font-size: clamp(1.85rem, 2.8vw + 0.75rem, 2.65rem);
  font-weight: 700;
  color: var(--home-charcoal-deep);
  margin: 0;
  line-height: 1.2;
}

.home-portfolio-scroll-outer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-bottom: 0.35rem;
}

.home-portfolio-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding-left: 20%;
  padding-right: clamp(1rem, 4vw, 2.5rem);
  scroll-padding-left: 20%;
  scroll-padding-right: clamp(1rem, 4vw, 2.5rem);
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: none;
  cursor: grab;
  touch-action: pan-x;
}

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

.home-portfolio-scroll.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.home-portfolio-scroll.is-dragging .home-portfolio-item,
.home-portfolio-scroll.is-dragging .home-portfolio-item img {
  user-select: none;
  -webkit-user-drag: none;
}

.home-portfolio-scroll::-webkit-scrollbar {
  display: none;
}

.home-portfolio-scroll:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(184, 155, 94, 0.5);
}

.home-portfolio-filters-wrap {
  padding-top: 2.5rem;
}

.home-portfolio-item {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  aspect-ratio: 3 / 4.15;
  background: #e8e8e8;
  border-radius: 0;
  touch-action: pan-x;
  width: min(300px, calc(100vw - 3.25rem));
}

@media (min-width: 480px) {
  .home-portfolio-item {
    width: min(320px, calc(85vw - 2rem));
  }
}

@media (min-width: 768px) {
  .home-portfolio-item {
    width: min(340px, calc(45vw - 1.5rem));
  }
}

@media (min-width: 1200px) {
  .home-portfolio-item {
    width: min(360px, calc(28vw - 1rem));
  }
}

.home-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-portfolio-item:hover img {
    transform: scale(1.03);
  }
}

.home-portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  padding: clamp(14px, 3.5vw, 20px);
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease, background 0.35s ease;
}

.home-portfolio-frame {
  flex: 1;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  padding: 1.25rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}

.home-portfolio-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.65rem;
  line-height: 1.25;
  font-family: var(--font-body);
}

.home-portfolio-card-desc {
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-portfolio-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff !important;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.2s ease;
}

.home-portfolio-card-link:hover {
  opacity: 0.85;
  color: #ffffff !important;
}

.home-portfolio-item:focus-within .home-portfolio-overlay {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.78);
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .home-portfolio-item:hover .home-portfolio-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.78);
    pointer-events: auto;
  }
}

@media (hover: none) {
  .home-portfolio-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.78);
    pointer-events: none;
  }

  .home-portfolio-card-link {
    pointer-events: auto;
  }

  .home-portfolio-frame {
    padding: 1rem;
  }

  .home-portfolio-card-desc {
    -webkit-line-clamp: 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-portfolio-overlay,
  .home-portfolio-item img {
    transition: none;
  }

  .home-portfolio-scroll {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  @media (hover: hover) and (pointer: fine) {
    .home-portfolio-item:hover img {
      transform: none;
    }
  }
}

.home-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #eaeaea;
}

.home-portfolio-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  min-width: 5rem;
}

.home-portfolio-filter i {
  font-size: 1.5rem;
  color: var(--home-gold-dim);
}

.home-portfolio-filter span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-muted);
  max-width: 8rem;
  line-height: 1.35;
}

.home-strategy {
  background: var(--home-charcoal-deep);
}

.home-strategy-img {
  width: 100%;
  min-height: 320px;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .home-strategy-img {
    min-height: 520px;
  }
}

.home-strategy-panel {
  padding: 3rem 1.5rem;
  color: var(--home-white);
}

@media (min-width: 992px) {
  .home-strategy-panel {
    padding: 4rem 10% 4rem 8%;
  }
}

.home-strategy-panel h2 {
  font-size: clamp(1.65rem, 2vw + 1rem, 2.1rem);
  font-weight: 700;
  color: var(--home-white);
  margin-bottom: 1.25rem;
}

.home-strategy-panel > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.home-strategy-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.home-strategy-block i {
  color: var(--home-gold);
  font-size: 1.35rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.home-strategy-block h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--home-white);
  margin-bottom: 0.35rem;
}

.home-strategy-block p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.55;
}

.home-strategy-footer {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}

.home-strategy-stars {
  color: var(--home-gold);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}

.home-strategy-phone {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
}

.home-strategy-phone:hover {
  color: var(--home-gold);
}

.home-blog-card {
  background: var(--home-white);
  border: 1px solid #eee;
  height: 100%;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.home-blog-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.home-blog-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #ddd;
}

.home-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-blog-date {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--home-white);
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--home-charcoal-deep);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.home-blog-body {
  padding: 1.5rem;
}

.home-blog-cat {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--home-gold-dim);
  margin-bottom: 0.5rem;
}

.home-blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--home-charcoal-deep);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.home-blog-card h3 a{
  color: var(--home-charcoal-deep);
  text-decoration: none;
  
}

.home-blog-excerpt {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--home-muted);
  margin: 0 0 1rem;
}

.home-blog-card .read-more {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-charcoal-deep);
  text-decoration: none;
}

.home-blog-card .read-more:hover {
  color: var(--home-gold-dim);
}

/* Simple site footer: text logo, about copy, social, copyright */
.site-footer {
  background: var(--home-charcoal-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(1.75rem, 4vw, 2.25rem);
  border-top: 1px solid rgba(201, 169, 98, 0.22);
}

.site-footer-inner {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.site-footer-logo {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--home-white);
  margin: 0 0 1.25rem;
}

.site-footer-about {
  text-align: center;
}

.site-footer-about p {
  margin: 0 0 1rem;
  font-size: clamp(0.9rem, 1.6vw, 0.98rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer-about p:last-child {
  margin-bottom: 0;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.35rem;
  margin-top: 1.75rem;
  margin-bottom: 0;
}

.site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-footer-social a:hover {
  color: var(--home-gold);
  border-color: rgba(201, 169, 98, 0.45);
  background: rgba(201, 169, 98, 0.08);
}

.site-footer-copy {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}
