/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
  --dark:         #0c0c0c;
  --dark-mid:     #161616;
  --slate:        #2a2a2a;
  --slate-mid:    #3d3d3d;
  --mid-grey:     #6b6b6b;
  --light-grey:   #f0f0ee;
  --off-white:    #fafaf8;
  --gold:         #c9a84c;
  --gold-light:   #e8c96d;
  --gold-dim:     rgba(201, 168, 76, 0.12);
  --white:        #ffffff;
  --charcoal:     #1e1e1e;
  --text-dark:    #1a1a1a;
  --text-muted:   #717171;
  --border:       #e2e2e2;
  --border-dark:  rgba(255,255,255,0.09);
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg:    0 12px 56px rgba(0, 0, 0, 0.13);
  --shadow-dark:  0 8px 40px rgba(0, 0, 0, 0.4);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   all 0.3s ease;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

p, h1, h2, h3, h4, li, a, span, label {
  overflow-wrap: break-word;
  word-break: break-word;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 110px 0;
}

section[id] {
  scroll-margin-top: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-header .section-sub {
  margin-top: 22px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

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

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  width: 100%;
}

/* Dropdown */
.has-dropdown > a .chevron {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.has-dropdown:hover > a .chevron,
.has-dropdown.open > a .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
  min-width: 270px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-left: 1px solid rgba(0,0,0,0.06);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown li a:hover {
  background: var(--off-white);
}

.dropdown li a .dd-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--gold);
  flex-shrink: 0;
}

.dropdown li a .dd-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown li a .dd-name {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.88rem;
}

.dropdown li a .dd-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.03em !important;
  transition: var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201, 168, 76, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.02) 0%, transparent 50%),
    linear-gradient(170deg, #0c0c0c 0%, #161616 50%, #1e1e1e 100%);
}

/* Subtle grid texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(12,12,12,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: 0 32px;
}

.hero-emblem {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  padding: 22px;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  /* fast on move, slow spring back on leave */
  transition: box-shadow 0.4s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:
    0 0 0 8px rgba(201, 168, 76, 0.06),
    0 0 80px rgba(201, 168, 76, 0.1),
    0 16px 60px rgba(0, 0, 0, 0.5);
}

/* Spinning gold comet arc */
.hero-emblem::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 45%,
    rgba(201, 168, 76, 0.15) 55%,
    rgba(232, 201, 109, 0.85) 68%,
    rgba(255, 236, 153, 1) 72%,
    rgba(232, 201, 109, 0.85) 76%,
    rgba(201, 168, 76, 0.15) 85%,
    transparent 95%,
    transparent 100%
  );
  /* mask to only show the outer ring */
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  opacity: 0;
  animation: emblem-ring-spin 2.2s linear infinite;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 2;
}

/* Mouse-tracking holographic shine */
.hero-emblem::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 30%),
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.06) 40%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-emblem:hover::before { opacity: 1; }
.hero-emblem:hover::after  { opacity: 1; }

.hero-emblem:hover {
  box-shadow:
    0 0 0 10px rgba(201, 168, 76, 0.1),
    0 0 100px rgba(201, 168, 76, 0.22),
    0 20px 70px rgba(0, 0, 0, 0.55);
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes emblem-ring-spin {
  to { transform: rotate(360deg); }
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.hero-content h1 .accent {
  color: var(--gold);
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 28px;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.85;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  animation: bounce 2.4s infinite;
  transition: color 0.3s;
  z-index: 1;
}

.scroll-down:hover { color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: var(--dark);
  padding: 160px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(201, 168, 76, 0.05) 0%, transparent 55%),
    linear-gradient(170deg, #0c0c0c 0%, #161616 60%, #1e1e1e 100%);
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 1;
}

.page-header-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.page-header h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* =============================================
   BUSINESSES SECTION
   ============================================= */
.businesses-section {
  background: var(--light-grey);
}

.business-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.business-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.25);
}

.business-card-header {
  background: var(--dark-mid);
  padding: 36px 36px 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.business-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.business-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
}

.business-icon i {
  font-size: 1.25rem;
  color: var(--gold);
}

.business-card-header h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  position: relative;
}

.business-card-header .tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.8);
  position: relative;
}

.business-card-body {
  padding: 30px 36px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.business-card-body p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.93rem;
  margin-bottom: 22px;
  flex: 1;
}

.business-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}

.service-chip {
  background: var(--light-grey);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--slate-mid);
  letter-spacing: 0.02em;
}

.business-card-body .btn {
  align-self: flex-start;
}

/* =============================================
   ABOUT TEASER
   ============================================= */
.about-teaser {
  background: var(--white);
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-teaser-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-wrap {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px;
  box-shadow:
    0 0 0 16px rgba(201,168,76,0.04),
    var(--shadow-lg);
}

.emblem-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-teaser-text .section-eyebrow {
  text-align: left;
}

.about-teaser-text h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.about-teaser-text h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 0;
}

.about-teaser-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.85;
  font-size: 0.95rem;
}

.about-teaser-text .btn {
  margin-top: 12px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section {
  background: var(--white);
}

.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.about-bio-visual {
  position: sticky;
  top: 120px;
}

.about-bio-emblem {
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  box-shadow: var(--shadow-lg);
}

.about-bio-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-bio-text .section-eyebrow {
  text-align: left;
}

.about-bio-text h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.about-bio-text .name-sub {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}

.about-bio-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 0.96rem;
}

.about-values {
  background: var(--light-grey);
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.2);
}

.value-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--charcoal);
  opacity: 0.06;
  line-height: 1;
  margin-bottom: 14px;
}

.value-card h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* =============================================
   BUSINESS PAGES (hardscapes / digital)
   ============================================= */
.business-overview {
  background: var(--white);
}

.business-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

.business-overview-text .section-eyebrow {
  text-align: left;
}

.business-overview-text h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.business-overview-text h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 0;
}

.business-overview-text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.business-overview-text .btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.business-visual {
  background: var(--dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 64px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.business-visual img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.services-section {
  background: var(--light-grey);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--slate), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.15);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon i {
  font-size: 1.15rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* CTA Strip */
.cta-strip {
  background: var(--dark-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-strip-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-strip-inner .section-eyebrow { color: var(--gold); }

.cta-strip-inner h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cta-strip-inner h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

.cta-strip-inner p {
  color: rgba(255,255,255,0.45);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.85;
  font-size: 0.95rem;
  font-weight: 300;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
  align-items: start;
}

.contact-info .section-eyebrow {
  text-align: left;
}

.contact-info h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-info h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 0;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  margin-top: 18px;
  line-height: 1.85;
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-item a,
.contact-item span:last-child {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.93rem;
  transition: color 0.3s;
}

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

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.form-success {
  text-align: center;
  padding: 52px 20px;
  display: none;
}

.form-success i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.83rem;
  max-width: 320px;
  line-height: 1.65;
}

.footer-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .business-cards         { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .about-teaser-inner     { gap: 60px; }
  .about-bio-grid         { gap: 56px; }
  .business-overview-grid { gap: 56px; }
  .contact-grid           { gap: 56px; }
  .services-grid          { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  * { max-width: 100%; }

  h1 { font-size: min(2rem, 9vw) !important; }
  h2 { font-size: min(1.45rem, 7vw) !important; }
  h3 { font-size: min(0.95rem, 4.8vw) !important; }
  p  { font-size: min(0.9rem, 4.2vw) !important; }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-mid);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 36px;
    gap: 0;
    transition: right 0.35s ease;
    box-shadow: -4px 0 40px rgba(0,0,0,0.4);
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.open { right: 0; }
  .nav-links > li { width: 100%; }

  .nav-links > li > a {
    font-size: 0.95rem;
    padding: 13px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
  }

  .nav-links > li > a::after { display: none; }

  /* Mobile dropdown */
  .dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 4px 0;
    margin-top: 4px;
    display: none;
    pointer-events: auto;
  }

  .has-dropdown.open .dropdown { display: block; }
  .dropdown::before { display: none; }

  .dropdown li a {
    color: rgba(255,255,255,0.7);
    padding: 10px 14px;
  }

  .dropdown li a:hover { background: rgba(255,255,255,0.05); }
  .dropdown li a .dd-icon { background: rgba(201,168,76,0.12); }
  .dropdown li a .dd-name { color: var(--white); }
  .dropdown li a .dd-desc { color: rgba(255,255,255,0.4); }

  .nav-cta { margin-top: 14px; display: block !important; text-align: center; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 36px; }
  .nav-logo-name { font-size: 1rem; }
  .nav-logo-sub  { display: none; }

  .about-teaser-inner     { grid-template-columns: 1fr; }
  .about-teaser-emblem    { display: none; }
  .about-bio-grid         { grid-template-columns: 1fr; }
  .about-bio-visual       { position: static; }
  .business-overview-grid { grid-template-columns: 1fr; }
  .business-visual        { display: none; }
  .contact-grid           { grid-template-columns: 1fr; }
  .form-row               { grid-template-columns: 1fr; }
  .contact-form-wrap      { padding: 28px 20px; }
  .values-grid            { grid-template-columns: 1fr; }
  .services-grid          { grid-template-columns: 1fr; }
  .hero-btns              { flex-direction: column; align-items: center; }
  .cta-btns               { flex-direction: column; align-items: center; }
  .hero-emblem            { width: 110px; height: 110px; }
  .emblem-wrap            { width: 200px; height: 200px; }
  .page-header            { padding: 130px 0 64px; }
}

@media (max-width: 480px) {
  .business-card-body,
  .business-card-header { padding-left: 22px; padding-right: 22px; }
}
