@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Montserrat:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;1,300;1,400&display=swap');

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

:root {
  --bg:       #080808;
  --surface:  #101010;
  --surface2: #161616;
  --gold:     #c8973f;
  --gold2:    #e8c16b;
  --white:    #f5f0ea;
  --muted:    rgba(245,240,234,0.45);
  --border:   rgba(200,151,63,0.18);
  --grad:     linear-gradient(135deg, #c8973f 0%, #e8c16b 100%);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--border);
  padding: 16px 64px;
  backdrop-filter: blur(12px);
}

.nav-logo img { height: 36px; object-fit: contain; }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.nav-logo span em {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.nav-links { display:flex; gap:36px; list-style:none; align-items:center; }
.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--grad);
  color: #080808 !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta:hover { opacity: 0.88; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer; border: none;
  font-family: 'Montserrat', sans-serif;
}
.btn-primary { background: var(--grad); color: #080808; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,151,63,0.35); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-white { background: var(--white); color: #080808; font-weight: 700; }
.btn-white:hover { background: var(--gold); color: #080808; }

/* ── SECTION COMMONS ── */
section { padding: 100px 80px; }

.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

.section-title {
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold2);
  -webkit-text-fill-color: initial;
}

.section-sub {
  font-size: 16px; color: var(--muted);
  line-height: 1.8; max-width: 580px;
}

.cyan-line {
  width: 60px; height: 3px;
  background: var(--grad);
  border-radius: 2px; margin-bottom: 28px;
}

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 700px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0 80px;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.60);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; text-align: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--grad); border-radius: 1px;
}
.hero-eyebrow::after {
  content: '';
  width: 32px; height: 2px;
  background: var(--grad); border-radius: 1px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 24px;
  white-space: nowrap;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold2);
}

.hero-desc {
  font-size: 17px; color: var(--muted);
  line-height: 1.75; margin-bottom: 44px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

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

.hero-badge {
  position: absolute; bottom: 48px; right: 80px;
  background: rgba(8,8,8,0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 20px 28px;
  border-radius: 10px;
  display: flex; gap: 32px;
  z-index: 2;
}
.badge-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900;
  color: var(--gold2);
  line-height: 1;
}
.badge-stat .lbl {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 4px;
}

/* ── HERO SPLIT ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: unset;
  text-align: left;
  gap: 0;
  padding: 0 80px;
  background: var(--bg);
}

.hero-split .hero-content {
  text-align: left;
  padding-right: 60px;
  z-index: 2;
}

.hero-split .hero-eyebrow { justify-content: flex-start; }

.hero-split .hero-desc { margin-left: 0; margin-right: 0; }

.hero-split .hero-btns { justify-content: flex-start; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-div { width: 1px; height: 36px; background: var(--border); }

/* image column */
.hero-img-col {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border: 2px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.hero-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.hero-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-img-caption {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
}
.hero-img-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* floating second image */
.hero-img-float {
  position: absolute;
  bottom: 60px;
  left: -48px;
  width: 180px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.hero-img-float img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

/* ── override overlay for split hero ── */
.hero-split .hero-overlay {
  background: transparent;
  position: absolute;
  left: 0; top: 0;
  width: 50%;
  background: linear-gradient(to right, rgba(8,8,8,0.15) 0%, transparent 100%);
}

/* scroll indicator */
.scroll-ind {
  position: absolute; bottom: 40px; left: 80px;
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.scroll-ind span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.scroll-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.4)} }

/* ── SERVICES CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 64px;
}

.service-card {
  background: var(--surface);
  padding: 52px 44px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  text-decoration: none; color: var(--white);
  display: block;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--surface2); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 80px; font-weight: 900;
  color: rgba(200,151,63,0.06);
  line-height: 1; margin-bottom: -24px;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(200,151,63,0.10);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon-wrap svg { width: 28px; height: 28px; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; margin-bottom: 14px;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.service-link {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); display: inline-flex;
  align-items: center; gap: 8px;
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ── PORTFOLIO GRID ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}
.portfolio-grid.two-col { grid-template-columns: repeat(2, 1fr); }

.port-item {
  position: relative; overflow: hidden;
  cursor: pointer; background: var(--surface);
}
.port-item.tall { grid-row: span 2; }
.port-item.wide { grid-column: span 2; }

.port-item img {
  width: 100%; height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.port-item:hover img { transform: scale(1.06); }

.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.90) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end;
  padding: 28px;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-caption { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; font-style: italic; }
.port-type { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-top: 4px; font-style: normal; font-family: 'Montserrat', sans-serif; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900;
  color: var(--gold2);
  line-height: 1;
}
.stat-lbl { font-size: 12px; color: var(--muted); margin-top: 8px; text-transform: uppercase; letter-spacing: 2px; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5%);
  width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.step { padding: 0 32px; text-align: center; position: relative; }
.step-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900; color: var(--gold);
  transition: all 0.3s;
}
.step:hover .step-dot { background: var(--gold); color: #080808; border-color: var(--gold); }
.step h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  border-radius: 2px;
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--grad);
  padding: 24px 32px; border-radius: 6px;
  font-family: 'Playfair Display', serif;
}
.about-badge .big { font-size: 36px; font-weight: 900; color: #080808; line-height: 1; }
.about-badge .small { font-size: 12px; color: rgba(8,8,8,0.65); letter-spacing: 1px; font-family: 'Montserrat', sans-serif; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.price-card:hover { border-color: rgba(200,151,63,0.45); }
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(200,151,63,0.08) 0%, rgba(232,193,107,0.05) 100%);
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 20px; right: -30px;
  background: var(--grad); color: #080808;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  padding: 6px 48px; transform: rotate(45deg);
  text-transform: uppercase; font-family: 'Montserrat', sans-serif;
}
.price-name {
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900; line-height: 1;
  margin-bottom: 8px; color: var(--white);
}
.price-amount sup { font-size: 24px; vertical-align: super; color: var(--muted); }
.price-amount sub { font-size: 16px; color: var(--muted); }
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.price-features { list-style: none; margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; }
.price-features li {
  font-size: 14px; color: var(--muted);
  padding-left: 24px; position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 40px 36px;
  transition: border-color 0.3s;
  border-bottom: 2px solid var(--border);
}
.testi-card:hover { border-bottom-color: var(--gold); }
.testi-stars { color: var(--gold2); font-size: 16px; letter-spacing: 4px; margin-bottom: 20px; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: rgba(245,240,234,0.85); line-height: 1.8;
  margin-bottom: 28px;
}
.testi-author { font-weight: 700; font-size: 14px; letter-spacing: 0.5px; }
.testi-event { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--grad);
  padding: 80px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900; color: #080808;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.cta-banner p {
  font-size: 18px; color: rgba(8,8,8,0.65);
  margin-bottom: 40px; position: relative; z-index: 1;
}
.cta-banner .btn-white { position: relative; z-index: 1; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.contact-info p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 48px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px;
}
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(200,151,63,0.10);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.contact-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.contact-val { font-size: 15px; }
.socials { display: flex; gap: 12px; margin-top: 40px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(200,151,63,0.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.3s;
}
.social-btn svg { width: 18px; height: 18px; fill: var(--muted); transition: fill 0.3s; }
.social-btn:hover { background: var(--grad); border-color: transparent; }
.social-btn:hover svg { fill: #080808; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.3s;
  border-radius: 4px; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: #101010; }
.form-group textarea { min-height: 120px; }

/* ── FOOTER ── */
footer {
  background: #040404;
  border-top: 1px solid var(--border);
  padding: 64px 80px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 56px;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.8; margin: 20px 0 28px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { text-decoration: none; font-size: 14px; color: var(--muted); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ── PAGE HERO (service pages) ── */
.page-hero {
  height: 70vh; min-height: 500px;
  position: relative;
  display: flex; align-items: center;
  padding: 0 80px; overflow: hidden;
}
.page-hero .hero-bg { object-position: center 40%; }
.page-hero .hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.96) 0%,
    rgba(8,8,8,0.75) 60%,
    rgba(8,8,8,0.35) 100%
  );
}
.page-hero-content { position: relative; z-index: 2; padding-top: 80px; }
.breadcrumb {
  font-size: 12px; color: var(--muted); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { opacity: 0.4; }

/* ── FEATURE LIST ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 48px;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.3s;
}
.feature-item:hover { border-color: rgba(200,151,63,0.45); }
.feature-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(200,151,63,0.10);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-item p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── VIDEO EMBED ── */
.video-wrap {
  position: relative; width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface);
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── TECH BADGES ── */
.tech-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.tech-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 8px 18px;
  font-size: 13px; font-weight: 500; color: var(--muted);
}

/* ── PLATFORM CHIPS ── */
.platforms-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; align-items: center; }
.platform-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 12px 24px;
  font-size: 13px; font-weight: 600; color: var(--white);
  display: flex; align-items: center; gap: 10px;
  transition: border-color 0.3s;
}
.platform-chip:hover { border-color: var(--gold); }

/* ── HONEYBOOK EMBED ── */
.hb-form-wrap {
  width: 100%;
}

/* Override HoneyBook's default white background & fonts to match dark theme */
.hb-form-wrap iframe,
.hb-p-YOUR_MEMBER_ID-1 iframe {
  width: 100% !important;
  border: none !important;
  border-radius: 8px !important;
  min-height: 600px;
}

/* Wrapper style so the embed area looks intentional while loading */
.hb-form-wrap:empty::after,
.hb-form-wrap:not(:has(iframe))::after {
  content: 'Loading booking form…';
  display: block;
  padding: 60px 40px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 1200px) {
  section { padding: 80px 48px; }
  nav, nav.scrolled { padding: 20px 48px; }
  .hero, .page-hero { padding: 0 48px; }
  .stats-bar { padding: 60px 48px; }
  .cta-banner { padding: 80px 48px; }
  footer { padding: 64px 48px 40px; }
}
