/* ==========================================================================
   Property Interiors — Design System
   Palette + type derived from supplied design mockups
   ========================================================================== */

:root {
  --black: #0c0b09;
  --charcoal: #17140f;
  --charcoal-2: #1f1b15;
  --gold: #b6892f;
  --gold-light: #d4ac5c;
  --gold-dim: rgba(182, 137, 47, 0.35);
  --cream: #f7f4ee;
  --cream-2: #efeae0;
  --white: #ffffff;
  --ink: #1c1a17;
  --ink-soft: #4a463f;
  --gray: #6f6a61;
  --border-light: #e4ddcf;
  --border-dark: rgba(214, 176, 106, 0.35);
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-on-dark-soft: rgba(255, 255, 255, 0.72);

  --font-heading: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-script: 'Pinyon Script', cursive;

  --container: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; color: var(--ink); border-color: rgba(28,26,23,0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Circle-arrow text link CTA */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
}
.link-cta-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease;
}
.link-cta:hover .link-cta-circle { background: var(--gold); color: var(--black); }
.link-cta.on-dark { color: var(--gold-light); }
.link-cta.on-dark:hover .link-cta-circle { background: var(--gold-light); }

/* ==================== Header / Nav ==================== */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 46px; width: auto; display: block; }
@media (max-width: 560px) { .logo-img { height: 40px; } }

.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; min-width: 0; }
.main-nav > ul { list-style: none; display: flex; margin: 0; padding: 0; gap: clamp(6px, 1.1vw, 16px); flex-wrap: nowrap; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 1px;
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav > ul > li > a .chev { font-size: 0.55rem; opacity: 0.75; transition: transform 0.18s ease; }
.main-nav > ul > li:hover > a .chev, .main-nav > ul > li.open > a .chev { transform: rotate(180deg); }
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--gold); border-color: var(--gold); }

.dropdown { position: absolute; top: 100%; left: 0; min-width: 260px; background: var(--charcoal); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 20px 40px rgba(0,0,0,0.4); padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.18s ease; }
.main-nav > ul > li:hover .dropdown,
.main-nav > ul > li.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 20px; font-size: 0.82rem; color: var(--text-on-dark); }
.dropdown a:hover { color: var(--gold-light); background: rgba(255,255,255,0.03); }

.header-cta { flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 1024px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); background: var(--black); flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 90px 0 30px; transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; gap: 0; padding: 0 10px; }
  .main-nav > ul > li > a { padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; background: rgba(255,255,255,0.03); border: none; box-shadow: none; }
  .main-nav > ul > li.open .dropdown { display: block; }
  .nav-toggle { display: block; }
  .header-cta .btn { padding: 11px 16px; font-size: 0.7rem; }
}
@media (max-width: 560px) {
  .header-cta { display: none; }
}

/* ==================== Hero ==================== */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  min-height: clamp(500px, 52vw, 1400px);
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .ph, .hero-bg .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(12,11,9,0.94) 0%, rgba(12,11,9,0.82) 32%, rgba(12,11,9,0.42) 58%, rgba(12,11,9,0.08) 82%),
    linear-gradient(0deg, rgba(12,11,9,0.55) 0%, rgba(12,11,9,0) 45%);
}
.hero-copy-wrap { position: relative; z-index: 2; width: 100%; padding: 90px 0; }
.hero-copy { max-width: 640px; }
.hero-copy .eyebrow { color: var(--gold-light); }
.hero-copy h1 { color: var(--white); }
.hero-copy h1 .accent { color: var(--gold-light); }
.hero-copy .lede { font-size: 1.02rem; color: rgba(255,255,255,0.9); max-width: 540px; }
.hero-copy .sub { font-size: 0.95rem; color: var(--text-on-dark); max-width: 540px; }

@media (max-width: 700px) {
  .hero { min-height: 480px; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(12,11,9,0.55) 0%, rgba(12,11,9,0.88) 55%, rgba(12,11,9,0.96) 100%);
  }
  .hero-copy-wrap { padding: 40px 0; }
  .hero-copy { max-width: 100%; }
}

/* ==================== Placeholder images ==================== */
.ph {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #201c16 0%, #2c2519 55%, #1a170f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph.light { background: linear-gradient(135deg, #efeae0 0%, #e4dcc9 55%, #ece6d8 100%); }
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(214,176,106,0.06) 0 2px, transparent 2px 18px);
}
.ph-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 18px;
  color: var(--gold-light);
  max-width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ph.light .ph-label { color: #9c8143; }
.ph-scene-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(214,176,106,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(214,176,106,0.10) 0%, transparent 72%);
}
.ph-scene { display: block; width: 46px; height: 46px; opacity: 0.9; stroke-width: 1.3; }
.ph-caption {
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.75;
}
.ph-16-9 { aspect-ratio: 16/9; }
.ph-4-3 { aspect-ratio: 4/3; }
.ph-3-2 { aspect-ratio: 3/2; }
.ph-1-1 { aspect-ratio: 1/1; }
.ph-3-4 { aspect-ratio: 3/4; }
.ph-fill { position: absolute; inset: 0; }

/* Real photos dropped into the same slots as placeholders */
.ph-img { width: 100%; height: auto; object-fit: cover; display: block; background: var(--charcoal); }
.ph-img.ph-fill { position: absolute; inset: 0; }

/* ==================== Sections ==================== */
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.section.bg-cream { background: var(--cream); }
.section.bg-black { background: var(--black); color: var(--white); }
.section.bg-black h2, .section.bg-black h3 { color: var(--white); }
.section.bg-black p { color: var(--text-on-dark); }
.section.bg-charcoal { background: var(--charcoal); color: var(--white); }
.section.bg-charcoal h2, .section.bg-charcoal h3 { color: var(--white); }
.section.bg-charcoal p { color: var(--text-on-dark); }

.section-bleed.bg-cream { background: var(--cream); }
.section-bleed.bg-black { background: var(--black); color: var(--white); }
.section-bleed.bg-black h2, .section-bleed.bg-black h3 { color: var(--white); }
.section-bleed.bg-black p { color: var(--text-on-dark); }
.section-bleed.bg-charcoal { background: var(--charcoal); color: var(--white); }
.section-bleed.bg-charcoal h2, .section-bleed.bg-charcoal h3 { color: var(--white); }
.section-bleed.bg-charcoal p { color: var(--text-on-dark); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }

.section-head-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 48px; }
.section-head-split .shs-heading h2 { margin-bottom: 0; }
.section-head-split .shs-copy p { margin-bottom: 0; }
@media (max-width: 800px) { .section-head-split { grid-template-columns: 1fr; gap: 18px; } }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col.reverse .col-media { order: 2; }

/* Full-bleed split module: image runs edge-to-edge, text sits in a padded column */
.bleed-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 460px; }
.bleed-grid.reverse { direction: rtl; }
.bleed-grid.reverse > * { direction: ltr; }
.bleed-text { display: flex; align-items: center; padding: 48px 90px 48px 75px; }
.bleed-text-inner { width: 100%; max-width: 760px; }
.gold-rule { width: 46px; height: 3px; background: var(--gold); margin-bottom: 22px; }
.bleed-small-media { width: 92px; height: 92px; border-radius: 50%; overflow: hidden; margin-bottom: 18px; }
.bleed-small-media .ph, .bleed-small-media .ph-img { width: 100%; height: 100%; border-radius: 50%; }
.bleed-media { position: relative; min-height: 340px; }
.bleed-media .ph, .bleed-media .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (max-width: 900px) {
  .bleed-grid, .bleed-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .bleed-media { order: -1; min-height: 280px; }
  .bleed-text { padding: 36px 24px; }
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; } }

/* Collection row: text column + compact single-row card strip */
.collection-row-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; }
.cr-text h2 { margin: 10px 0 14px; }
.cr-text p { font-size: 0.92rem; margin-bottom: 16px; }
.cr-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cr-card { display: block; text-decoration: none; color: inherit; }
.cr-card .ph, .cr-card .ph-img { margin-bottom: 12px; }
.cr-card h4 { font-size: 0.88rem; margin: 0 0 4px; font-family: var(--font-heading); }
.cr-card p { font-size: 0.76rem; color: var(--ink-soft); margin: 0; line-height: 1.35; }
@media (max-width: 1024px) {
  .collection-row-grid { grid-template-columns: 1fr; gap: 28px; }
  .cr-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) { .cr-cards { grid-template-columns: repeat(2, 1fr); } }

/* Feature tiles: 2-across full-bleed banners */
.feature-tiles { display: grid; grid-template-columns: 1fr 1fr; }
.feature-tile { position: relative; min-height: 420px; overflow: hidden; color: var(--white); }
.feature-tile .ft-bg { position: absolute; inset: 0; }
.feature-tile .ft-bg .ph, .feature-tile .ft-bg .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ft-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(12,11,9,0.92) 0%, rgba(12,11,9,0.75) 32%, rgba(12,11,9,0.3) 58%, rgba(12,11,9,0.05) 82%),
    linear-gradient(0deg, rgba(12,11,9,0.45) 0%, rgba(12,11,9,0) 40%);
}
.ft-content { position: relative; z-index: 2; padding: 44px; max-width: 420px; }
.ft-content h3 { color: var(--white); font-size: 1.5rem; margin: 0 0 12px; }
.ft-content h3 .accent { color: var(--gold-light); }
.ft-content p { color: var(--text-on-dark); font-size: 0.92rem; margin: 0 0 22px; }
@media (max-width: 860px) {
  .feature-tiles { grid-template-columns: 1fr; }
  .feature-tile { min-height: 340px; }
}

.tile {
  border: 1px solid var(--border-dark);
  padding: 20px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
}
.tile.light { border-color: var(--border-light); color: var(--ink); background: var(--white); }

.bullet-list { list-style: none; margin: 0; padding: 0; }
.bullet-list li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--ink-soft); }
.bullet-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.bullet-list.on-dark li { color: var(--text-on-dark); }

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; font-size: 0.7rem; line-height: 18px; text-align: center;
  color: var(--gold); border: 1px solid var(--gold); border-radius: 50%;
}

/* Split layout: heading+copy left, stacked bordered checklist boxes right */
.checklist-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.checklist-split .cls-text .gold-rule { width: 46px; height: 3px; background: var(--gold); margin-bottom: 22px; }
.checklist-split .cls-text p { margin-top: 16px; }
.check-box-list { display: flex; flex-direction: column; gap: 14px; }
.check-box-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--ink);
}
.check-box-item .cb-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; flex-shrink: 0;
}
@media (max-width: 860px) {
  .checklist-split { grid-template-columns: 1fr; gap: 32px; }
}

.spec-box { border: 1px solid var(--border-light); padding: 26px 28px; background: var(--white); }
.spec-box h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; color: var(--ink); display:flex; align-items:center; gap:10px; }
.spec-box h4 .dot { width: 30px; height: 30px; border-radius: 50%; background: var(--black); color: var(--gold); display:flex; align-items:center; justify-content:center; font-size:0.9rem; flex-shrink:0; }
.spec-box ul { list-style: none; margin: 0; padding: 0; font-size: 0.88rem; }
.spec-box ul li { padding: 6px 0; border-bottom: 1px dashed var(--border-light); color: var(--ink-soft); }
.spec-box ul li:last-child { border-bottom: none; }

.step-row { display: flex; justify-content: space-between; gap: 20px; text-align: center; flex-wrap: wrap; }
.step { flex: 1; min-width: 130px; }
.step .num { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--black); font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1rem; }
.step p { font-size: 0.85rem; margin: 0; }
.step h4 { font-size: 0.85rem; margin: 0 0 6px; }

.numbered-list { counter-reset: item; list-style: none; margin: 0; padding: 0; }
.numbered-list li { counter-increment: item; position: relative; padding: 18px 0 18px 54px; border-top: 1px solid var(--border-light); }
.numbered-list li:last-child { border-bottom: 1px solid var(--border-light); }
.numbered-list li::before { content: counter(item, decimal-leading-zero); position: absolute; left: 0; top: 16px; font-family: var(--font-heading); font-weight: 700; color: var(--gold); font-size: 1.3rem; }
.numbered-list h4 { margin: 0 0 4px; }
.numbered-list p { margin: 0; }

/* Collections / cards */
.collection-card { position: relative; border: 1px solid var(--border-dark); display: flex; flex-direction: column; height: 100%; }
.collection-card .ph { min-height: 190px; }
.collection-card .cc-body { padding: 16px 18px; background: var(--black); flex: 1; display: flex; flex-direction: column; justify-content: center; }
.collection-card .cc-num { color: var(--gold); font-weight: 700; font-size: 0.8rem; }
.collection-card h3 { color: var(--white); font-size: 1.05rem; margin: 4px 0 4px; }
.collection-card p { font-size: 0.82rem; margin: 0; color: var(--text-on-dark); }
.collection-card .cc-media-hover { position: absolute; top: 0; left: 0; right: 0; opacity: 0; transition: opacity 0.45s ease; pointer-events: none; }
.collection-card.has-hover-media:hover .cc-media-hover { opacity: 1; }

.sector-card { border: 1px solid var(--border-dark); background: var(--charcoal); }
.sector-card .ph { min-height: 200px; }
.sector-card .sc-body { padding: 22px 24px; }
.sector-card .sc-num { color: var(--gold); font-weight: 700; }
.sector-card h3 { color: var(--white); margin: 6px 0 8px; }
.sector-card p { color: var(--text-on-dark); font-size: 0.88rem; }
.sector-card .link-arrow { color: var(--gold-light); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

.icon-col { text-align: left; }
.icon-col .icon-badge { width: 44px; height: 44px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--gold); }

/* CTA band */
.cta-band { background: var(--black); color: var(--white); padding: 60px 0; }
.cta-band p { color: var(--text-on-dark); }
.cta-split-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; }
.cta-band .cta-left { padding: 20px 40px 20px 0; }
.cta-band .cta-right { background: var(--gold); color: var(--black); padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.cta-band .cta-right .btn-outline-dark { border-color: var(--black); color: var(--black); }
.cta-band .cta-right .btn-outline-dark:hover { background: var(--black); color: var(--gold); }
@media (max-width: 860px) {
  .cta-split-grid { grid-template-columns: 1fr; }
  .cta-band .cta-left { padding: 0 0 30px; }
}

.cta-simple { text-align: center; }
.cta-simple .btn-row { justify-content: center; }

/* Forms */
.form-card { background: var(--white); border: 1px solid var(--border-light); padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; color: var(--gold); }
.form-field label .num { color: var(--gray); margin-right: 6px; }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border-light);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--white);
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field.full { grid-column: 1 / -1; }
.file-drop { border: 1px dashed var(--border-light); padding: 26px; text-align: center; font-size: 0.85rem; color: var(--gray); grid-column: 1/-1; margin-bottom: 18px; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 20px; grid-column: 1/-1; }
.consent-row input { margin-top: 4px; }

/* Info tiles (contact) */
.info-tile { border: 1px solid var(--border-light); padding: 28px 20px; text-align: center; }
.info-tile .icon-badge { width: 46px; height: 46px; margin: 0 auto 14px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.info-tile h4 { margin-bottom: 6px; font-size: 0.95rem; }
.info-tile p { margin: 0; font-size: 0.88rem; }

/* Brochure contents (product shot + numbered grid) */
.brochure-contents-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.bc-image img { width: 100%; height: auto; display: block; }
.bc-list h2 { margin: 0 0 28px; }
.bc-numbered-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.bc-item { padding: 18px 22px; border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.bc-item:first-child, .bc-item:nth-child(4), .bc-item:nth-child(7) { padding-left: 0; }
.bc-item:nth-child(3n) { border-right: none; padding-right: 0; }
.bc-item:nth-child(n+7) { border-bottom: none; }
.bc-num { color: var(--gold); font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; }
.bc-title { font-size: 0.9rem; font-weight: 600; line-height: 1.35; }
.bc-tagline { text-align: center; color: var(--gold); font-weight: 600; letter-spacing: 0.03em; margin: 44px 0 0; font-size: 0.95rem; }
@media (max-width: 860px) {
  .brochure-contents-grid { grid-template-columns: 1fr; gap: 32px; }
  .bc-numbered-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-item:nth-child(4), .bc-item:nth-child(7) { padding-left: 22px; }
  .bc-item:nth-child(odd) { padding-left: 0; }
  .bc-item:nth-child(3n) { border-right: 1px solid var(--border-light); }
  .bc-item:nth-child(even) { border-right: none; padding-right: 0; }
  .bc-item:nth-child(n+7) { border-bottom: 1px solid var(--border-light); }
  .bc-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* Option cards (4-across pricing/route comparison) */
.option-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.option-card { border: 1px solid var(--border-light); padding: 28px 22px; text-align: center; }
.option-card.highlight { border: 2px solid var(--gold); box-shadow: 0 12px 30px rgba(182,137,47,0.14); }
.option-icon { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%; background: var(--black); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.option-badge { display: inline-block; background: var(--gold); color: var(--black); font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.option-card h3 { font-size: 1.1rem; margin: 0 0 12px; }
.option-card p { font-size: 0.88rem; text-align: left; }
.option-card .check-list { text-align: left; margin-top: 12px; }
.option-card .option-note { font-weight: 600; color: var(--gold); font-size: 0.88rem; text-align: left; margin-top: 12px; }
@media (max-width: 1024px) { .option-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .option-grid { grid-template-columns: 1fr; } }

/* Clean pricing/comparison table */
.price-table-subtitle { max-width: 640px; color: var(--ink-soft); margin-top: 4px; margin-bottom: 36px; }
.price-table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.price-table th, .price-table td { text-align: left; padding: 16px 20px 16px 0; border-bottom: 1px solid var(--border-light); }
.price-table th { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }
.price-table td:first-child { font-weight: 600; }
.price-table td { color: var(--ink-soft); font-size: 0.94rem; }

/* Media grid (text column + grid of images) */
.media-grid-split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center; }
.media-grid-split.reverse { direction: rtl; }
.media-grid-split.reverse > * { direction: ltr; }
.mgs-text .gold-rule { width: 46px; height: 3px; background: var(--gold); margin-bottom: 22px; }
.mgs-grid { display: grid; gap: 16px; }
.mgs-grid.mgs-cols-1 { grid-template-columns: 1fr; }
.mgs-grid.mgs-cols-2 { grid-template-columns: repeat(2, 1fr); }
.mgs-grid.mgs-cols-3 { grid-template-columns: repeat(3, 1fr); }
.mgs-grid.mgs-cols-4 { grid-template-columns: repeat(4, 1fr); }
.mgs-item { text-align: center; }
.mgs-grid.mgs-contain .ph-img { object-fit: contain; background: var(--white); border: 1px solid var(--border-light); }
.mgs-caption { margin-top: 10px; font-family: var(--font-heading); font-size: 0.82rem; font-weight: 600; }
@media (max-width: 860px) {
  .media-grid-split { grid-template-columns: 1fr; gap: 28px; }
  .mgs-grid.mgs-cols-3, .mgs-grid.mgs-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Category grid (image + title + desc, non-clickable) */
.category-card { border: 1px solid var(--border-light); padding: 26px 22px; overflow: hidden; }
.section.bg-black .category-card, .section.bg-charcoal .category-card { border-color: rgba(255,255,255,0.12); }
.category-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.category-card p { margin: 0; font-size: 0.88rem; }
.category-card > .ph:first-child, .category-card > .ph-img:first-child {
  margin: -26px -22px 20px; width: calc(100% + 44px); max-width: none; display: block;
}
.category-card .icon-badge { margin-top: 2px; }

/* Note bar */
.note-bar { display: flex; align-items: center; justify-content: center; text-align: center; gap: 14px; border: 1px solid var(--border-light); padding: 22px 24px; margin-top: 32px; }
.note-bar svg { color: var(--gold); flex-shrink: 0; }
.note-bar span { font-size: 1.15rem; font-weight: 600; }

/* 5-column icon grid with dividers */
.card-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) { .card-grid.cols-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid.cols-5 { grid-template-columns: 1fr; } }
@media (min-width: 1025px) {
  .card-grid.cols-5.divided .icon-col { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.12); }
  .card-grid.cols-5.divided .icon-col:first-child { padding-left: 0; border-left: none; }
  .section:not(.bg-black):not(.bg-charcoal) .card-grid.cols-5.divided .icon-col { border-left-color: var(--border-light); }
}

/* Breadcrumbs */
.breadcrumb-nav { background: var(--cream); border-bottom: 1px solid var(--border-light); }
.breadcrumb-list { list-style: none; display: flex; flex-wrap: wrap; align-items: center; margin: 0; padding: 12px 0; gap: 6px; font-size: 0.78rem; }
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; color: var(--gray); }
.breadcrumb-list li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--border-light); }
.breadcrumb-list a { color: var(--gray); }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list li:last-child span { color: var(--ink); font-weight: 600; }

/* Portfolio gallery */
.gallery-note { max-width: 760px; margin: -12px auto 32px; text-align: center; font-size: 0.88rem; color: var(--ink-soft); }
.section.bg-black .gallery-note, .section.bg-charcoal .gallery-note { color: var(--text-on-dark-soft); }
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 36px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--charcoal); aspect-ratio: 4 / 3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; font-size: 0.72rem; color: var(--text-on-dark); background: linear-gradient(0deg, rgba(0,0,0,0.72), rgba(0,0,0,0)); opacity: 0; transition: opacity 0.25s ease; }
.gallery-item:hover figcaption { opacity: 1; }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }
.gallery-load-more { text-align: center; margin-top: 36px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,9,7,0.94); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 60px 40px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 4px; }
.lightbox-caption { color: var(--text-on-dark); font-size: 0.85rem; text-align: center; max-width: 640px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; background: transparent; color: var(--white); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
body.lightbox-open { overflow: hidden; }

/* FAQ */
.faq-topics { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.faq-topic-btn { padding: 12px 20px; border: 1px solid var(--border-light); background: var(--white); color: var(--ink); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; cursor: pointer; }
.faq-topic-btn.active, .faq-topic-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.faq-group { margin-bottom: 34px; }
.faq-group-title { color: var(--gold); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.faq-group-title::before { content: ""; width: 22px; height: 2px; background: var(--gold); }
.faq-item { border: 1px solid var(--border-light); margin-bottom: 10px; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 0.92rem; gap: 16px; }
.faq-q .qnum { color: var(--gold); margin-right: 8px; }
.faq-q .toggle { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; background: var(--cream); }
.faq-a-inner { padding: 0 20px 18px 20px; font-size: 0.88rem; color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 260px; }

/* Testimonials */
.testimonial-card { border: 1px solid var(--border-light); padding: 30px 28px; background: var(--white); }
.testimonial-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-card p.quote { font-style: italic; color: var(--ink); margin-bottom: 16px; }
.testimonial-card .name { font-weight: 700; font-size: 0.9rem; }
.testimonial-card .role { font-size: 0.78rem; color: var(--gray); }

/* Legal */
.legal-body h2 { margin-top: 2em; font-size: 1.3rem; }
.legal-body ul { color: var(--ink-soft); }
.legal-note { background: var(--cream); border-left: 3px solid var(--gold); padding: 16px 20px; font-size: 0.85rem; color: var(--ink-soft); margin: 20px 0; }

.legal-wrap { max-width: 1180px; }
.legal-updated { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); background: var(--cream); border: 1px solid var(--border-light); border-radius: 20px; padding: 6px 16px; margin-bottom: 32px; }
.legal-layout.has-toc { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.legal-toc { position: sticky; top: 110px; border: 1px solid var(--border-light); background: var(--cream); padding: 22px; }
.legal-toc-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 12px; }
.legal-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: legal-toc; display: flex; flex-direction: column; gap: 9px; }
.legal-toc a { font-size: 0.85rem; line-height: 1.4; color: var(--ink-soft); }
.legal-toc a:hover { color: var(--gold); }
.legal-block { scroll-margin-top: 100px; }
.legal-layout.has-toc .legal-body { max-width: 760px; }
.legal-fields { border: 1px solid var(--border-light); background: var(--cream); padding: 24px 28px; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.legal-field { display: grid; grid-template-columns: 200px 1fr; gap: 16px; font-size: 0.9rem; }
.legal-field dt { font-weight: 700; color: var(--ink); }
.legal-field dd { margin: 0; color: var(--ink-soft); }
.legal-placeholder { color: var(--gold); background: rgba(182,137,47,0.1); padding: 1px 6px; border-radius: 3px; font-style: italic; }
@media (max-width: 900px) {
  .legal-layout.has-toc { display: block; }
  .legal-toc { position: static; margin-bottom: 32px; }
  .legal-layout.has-toc .legal-body { max-width: none; }
  .legal-field { grid-template-columns: 1fr; gap: 2px; }
}

/* Breadcrumb-ish page kicker */
.page-kicker { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-light); margin-bottom: 14px; }

/* ==================== Footer ==================== */
.footer-top-band { background: var(--cream); }
.footer-top-row { display: flex; align-items: center; gap: 40px; padding: 40px 0; }
.footer-logo { flex-shrink: 0; display: block; }
.footer-logo .logo-img { height: 64px; width: auto; }
.footer-desc { flex: 1; margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); }

.site-footer { background: var(--black); color: var(--text-on-dark); padding-top: 48px; }

.footer-rule { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0; }

.footer-nav-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; padding: 36px 0; }
.fn-col h5 { color: var(--gold); font-family: var(--font-heading); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.fn-col ul { list-style: none; margin: 0; padding: 0; }
.fn-col ul li { margin-bottom: 12px; font-size: 0.9rem; line-height: 1.4; }
.fn-col ul li a:hover { color: var(--gold-light); }

.footer-contact-row { display: flex; flex-wrap: wrap; gap: 36px; padding: 22px 0; font-size: 0.92rem; }
.footer-contact-row a { display: inline-flex; align-items: center; gap: 10px; color: var(--text-on-dark); }
.footer-contact-row a svg { color: var(--gold); flex-shrink: 0; }
.footer-contact-row a:hover { color: var(--gold-light); }

.footer-legal-row { display: flex; flex-wrap: wrap; gap: 20px; padding: 20px 0 0; font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.footer-legal-row a:hover { color: var(--gold-light); }

.footer-copyright { font-size: 0.76rem; color: rgba(255,255,255,0.7); padding: 16px 0 28px; margin: 0; }

@media (max-width: 1024px) { .footer-nav-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) {
  .footer-top-row { flex-wrap: wrap; }
  .footer-nav-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .footer-nav-grid { grid-template-columns: 1fr; } }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.small { font-size: 0.82rem; color: var(--gray); }
.list-plain { color: var(--ink-soft); }
