:root {
  --primary: #111111;
  --accent: #D4AF37;
  --accent-rgb: 212,175,55;
  --secondary: #6B7280;
  --bg: #F7F7F5;
  --text: #1A1A1A;
  --text-rgb: 26,26,26;
  --bg-dark: #0E0E0C;
  --bg-mid: #EDEDE9;
  --bg-card: #FFFFFF;
  --border: rgba(26,26,26,0.1);
  --border-light: rgba(212,175,55,0.2);
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body {
  font-family:'DM Sans',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
body::-webkit-scrollbar { width:6px; }
body::-webkit-scrollbar-track { background:var(--bg); }
body::-webkit-scrollbar-thumb { background:var(--accent); border-radius:3px; }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes float {
  0%,100% { transform:translate(0,0) scale(1); }
  33%     { transform:translate(18px,-28px) scale(1.08); }
  66%     { transform:translate(-12px,18px) scale(0.94); }
}
@keyframes drawSig { to { stroke-dashoffset:0; } }
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.5; transform:scale(1.5); }
}
@keyframes marqueeScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

.container { max-width:1280px; margin:0 auto; padding:0 48px; }
.accent-bar { height:3px; background:linear-gradient(90deg,var(--primary),var(--accent),var(--secondary)); }
.section-eyebrow { display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.section-eyebrow .line { width:28px; height:2px; background:var(--accent); }
.section-eyebrow span { font-family:'DM Mono',monospace; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--secondary); }
.gradient-text {
  background:linear-gradient(135deg,var(--accent),#e8c87a);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  background:linear-gradient(135deg,var(--accent),#b8954f);
  color:var(--primary);
  font-family:'DM Sans',sans-serif; font-weight:700; font-size:15px;
  padding:15px 32px; border-radius:4px;
  letter-spacing:0.3px; text-decoration:none;
  box-shadow:0 8px 32px rgba(var(--accent-rgb),0.35);
  transition:transform .25s ease, box-shadow .25s ease;
  border:none; cursor:pointer;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 12px 40px rgba(var(--accent-rgb),0.5); }
.btn-outline {
  display:inline-flex; align-items:center; gap:10px;
  background:transparent;
  color:var(--bg);
  font-family:'DM Sans',sans-serif; font-weight:600; font-size:15px;
  padding:14px 32px; border-radius:4px;
  letter-spacing:0.3px; text-decoration:none;
  border:1.5px solid rgba(247,247,245,0.35);
  transition:border-color .25s ease, background .25s ease;
  cursor:pointer;
}
.btn-outline:hover { border-color:var(--accent); background:rgba(var(--accent-rgb),0.1); }
.btn-outline-dark {
  display:inline-flex; align-items:center; gap:10px;
  background:transparent;
  color:var(--text);
  font-family:'DM Sans',sans-serif; font-weight:600; font-size:15px;
  padding:14px 32px; border-radius:4px;
  letter-spacing:0.3px; text-decoration:none;
  border:1.5px solid rgba(26,26,26,0.25);
  transition:border-color .25s ease, background .25s ease;
  cursor:pointer;
}
.btn-outline-dark:hover { border-color:var(--accent); background:rgba(var(--accent-rgb),0.08); }
nav { display:flex; align-items:center; justify-content:space-between; height:84px; }
.nav-links { display:flex; align-items:center; gap:36px; list-style:none; }
.nav-links a {
  font-size:13px; font-weight:500; color:rgba(247,247,245,0.7);
  text-decoration:none; letter-spacing:0.06em; text-transform:uppercase;
  transition:color .2s ease; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px;
  background:var(--accent); transform:scaleX(0); transition:transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color:var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
.hamburger { display:none; background:none; border:0; cursor:pointer; padding:8px; -webkit-tap-highlight-color:transparent; }
.hamburger span { display:block; width:24px; height:2px; background:var(--bg); margin:5px 0; transition:transform .2s, opacity .2s; }

/* CONTACT HERO */
.contact-hero {
  position:relative; min-height:60vh;
  background:var(--bg-dark);
  display:flex; align-items:center;
  padding:160px 0 100px;
  overflow:hidden;
}
.contact-hero::before {
  content:'CONTACT'; position:absolute; right:-40px; top:50%;
  transform:translateY(-50%); font-family:'Playfair Display',serif;
  font-size:200px; font-weight:900; color:transparent;
  -webkit-text-stroke:1px rgba(212,175,55,0.06); pointer-events:none; white-space:nowrap; z-index:0;
}
.contact-hero-orb { position:absolute; border-radius:50%; filter:blur(90px); opacity:0.2; pointer-events:none; animation:float 9s ease-in-out infinite; }
.ch-orb1 { width:500px; height:500px; background:radial-gradient(circle,var(--accent),transparent); top:-150px; right:-80px; animation-delay:-2s; }
.ch-orb2 { width:350px; height:350px; background:radial-gradient(circle,rgba(107,114,128,0.6),transparent); bottom:-100px; left:100px; animation-delay:-5s; }
.contact-hero-inner { position:relative; z-index:2; }
.contact-hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 18px; border-radius:999px;
  background:rgba(212,175,55,0.12); border:1px solid rgba(212,175,55,0.35);
  margin-bottom:28px;
  backdrop-filter:blur(8px);
}
.contact-hero-badge .dot { width:7px; height:7px; border-radius:50%; background:var(--accent); animation:pulse 1.8s ease-in-out infinite; }
.contact-hero-badge span { font-family:'DM Mono',monospace; font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent); }
.contact-hero h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(48px,6vw,88px); font-weight:900; line-height:0.96;
  color:var(--bg); margin-bottom:24px;
}
.contact-hero-sub {
  font-size:17px; line-height:1.75; color:rgba(247,247,245,0.7);
  max-width:480px; margin-bottom:44px; font-weight:300;
}
.hero-ctas { display:flex; gap:14px; flex-wrap:wrap; }

/* MARQUEE */
.marquee-strip {
  background:var(--accent); padding:14px 0; overflow:hidden;
  display:flex; white-space:nowrap;
}
.marquee-inner { display:flex; animation:marqueeScroll 28s linear infinite; }
.marquee-item {
  display:inline-flex; align-items:center; gap:20px;
  padding:0 32px; font-family:'DM Mono',monospace;
  font-size:12px; font-weight:500; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--primary);
}
.marquee-sep { width:5px; height:5px; border-radius:50%; background:var(--primary); opacity:0.4; flex-shrink:0; }

/* CONTACT MAIN */
.contact-main { padding:120px 0; background:var(--bg-mid); }
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:80px; align-items:start; }

/* Contact Info Side */
.contact-info-panel h2 {
  font-family:'Playfair Display',serif; font-size:clamp(30px,3vw,44px);
  font-weight:900; color:var(--text); line-height:1.1; margin-bottom:16px;
}
.contact-info-panel > p {
  font-size:15px; color:rgba(26,26,26,0.65); line-height:1.8; margin-bottom:44px; font-weight:300;
}
.contact-channel {
  display:flex; align-items:flex-start; gap:18px; margin-bottom:28px;
  padding:22px 24px; background:var(--bg-card);
  border:1px solid rgba(26,26,26,0.07); border-radius:8px;
  transition:box-shadow .3s, border-color .3s;
  position:relative; overflow:hidden;
}
.contact-channel::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:3px;
  background:var(--accent); transform:scaleY(0); transform-origin:bottom;
  transition:transform .3s ease;
}
.contact-channel:hover { box-shadow:0 8px 32px rgba(0,0,0,0.07); border-color:rgba(212,175,55,0.25); }
.contact-channel:hover::before { transform:scaleY(1); }
.contact-channel-icon {
  width:44px; height:44px; border-radius:8px;
  background:rgba(212,175,55,0.1); border:1px solid rgba(212,175,55,0.2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-channel-body strong {
  display:block; font-size:13px; font-weight:700; color:var(--text);
  letter-spacing:0.04em; margin-bottom:3px;
}
.contact-channel-body span {
  font-size:14px; color:rgba(26,26,26,0.6); line-height:1.5;
}
.contact-channel-body a {
  font-size:14px; color:var(--accent); text-decoration:none;
  transition:opacity .2s;
}
.contact-channel-body a:hover { opacity:0.75; }

/* Response time card */
.response-card {
  margin-top:36px; padding:24px 28px;
  background:var(--primary); border-radius:8px;
  display:flex; align-items:center; gap:20px;
}
.response-card-icon {
  width:48px; height:48px; border-radius:8px;
  background:rgba(212,175,55,0.15); display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.response-card-text strong { display:block; font-size:14px; font-weight:700; color:var(--bg); margin-bottom:3px; }
.response-card-text span { font-size:13px; color:rgba(247,247,245,0.5); }

/* FORM */
.contact-form-wrapper {
  background:var(--bg-card); border-radius:10px; padding:48px 44px;
  border:1px solid rgba(26,26,26,0.08);
  box-shadow:0 12px 48px rgba(0,0,0,0.07);
}
.contact-form-wrapper h3 {
  font-family:'Playfair Display',serif; font-size:28px; font-weight:700;
  color:var(--text); margin-bottom:8px;
}
.contact-form-wrapper > p {
  font-size:14px; color:rgba(26,26,26,0.5); margin-bottom:32px; line-height:1.6;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:20px; }
.form-group label {
  display:block; font-family:'DM Mono',monospace; font-size:11px;
  font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(26,26,26,0.5); margin-bottom:9px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; padding:13px 16px; font-family:'DM Sans',sans-serif; font-size:15px;
  background:var(--bg); border:1.5px solid rgba(26,26,26,0.12); border-radius:5px;
  color:var(--text); outline:none; transition:border-color .25s, box-shadow .25s;
  -webkit-appearance:none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(212,175,55,0.1);
}
.form-group textarea { resize:vertical; min-height:130px; }
.form-group select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:40px; cursor:pointer; }
.form-submit { margin-top:8px; }
form .btn-primary { width:100%; justify-content:center; padding:16px 32px; font-size:16px; }

/* FAQ / SUPPORT TILES */
.faq-section { padding:100px 0; background:var(--bg); }
.faq-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.faq-card {
  background:var(--bg-card); border:1px solid rgba(26,26,26,0.07); border-radius:8px;
  padding:32px 28px; position:relative; overflow:hidden;
  transition:box-shadow .3s, transform .3s;
}
.faq-card::after {
  content:''; position:absolute; bottom:0; left:28px; right:28px;
  height:2px; background:var(--accent); transform:scaleX(0);
  transition:transform .35s ease; transform-origin:left;
}
.faq-card:hover { box-shadow:0 16px 48px rgba(0,0,0,0.08); transform:translateY(-3px); }
.faq-card:hover::after { transform:scaleX(1); }
.faq-card-icon { width:48px; height:48px; margin-bottom:20px; }
.faq-card-num { font-family:'DM Mono',monospace; font-size:10px; letter-spacing:0.18em; color:rgba(26,26,26,0.28); margin-bottom:10px; }
.faq-card h3 { font-family:'Playfair Display',serif; font-size:19px; font-weight:700; color:var(--text); margin-bottom:10px; }
.faq-card p { font-size:14px; line-height:1.7; color:rgba(26,26,26,0.58); }

/* STATS */
.stats { padding:0; background:var(--primary); }
.stats-inner { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-block {
  padding:72px 48px; border-right:1px solid rgba(212,175,55,0.12);
  position:relative; text-align:center; transition:background .3s;
}
.stat-block:last-child { border-right:none; }
.stat-block:hover { background:rgba(212,175,55,0.05); }
.stat-block::before {
  content:attr(data-n); position:absolute; top:20px; left:50%; transform:translateX(-50%);
  font-family:'DM Mono',monospace; font-size:10px; letter-spacing:0.18em; text-transform:uppercase;
  color:rgba(212,175,55,0.35);
}
.stat-num { font-family:'Playfair Display',serif; font-size:56px; font-weight:900; color:var(--accent); line-height:1; }
.stat-label { font-family:'DM Mono',monospace; font-size:11px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(247,247,245,0.45); margin-top:10px; }

/* TESTIMONIALS */
.testimonials { padding:120px 0; background:var(--bg); }
.sf-testimonial-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:20px; align-items:start; }
.sf-testimonial-item {
  background:var(--bg-card); border:1px solid rgba(26,26,26,0.07); border-radius:8px; padding:36px 32px;
  position:relative; transition:box-shadow .3s ease;
}
.sf-testimonial-item:hover { box-shadow:0 16px 48px rgba(0,0,0,0.08); }
.sf-testimonial-item:first-child { padding:44px 40px; }
.sf-testimonial-stars { color:var(--accent); font-size:14px; letter-spacing:2px; margin-bottom:18px; }
.sf-testimonial-quote { font-size:16px; line-height:1.75; color:rgba(26,26,26,0.8); margin-bottom:28px; font-style:italic; font-weight:300; }
.sf-testimonial-item:first-child .sf-testimonial-quote { font-size:18px; }
.sf-testimonial-author { display:flex; align-items:center; gap:14px; }
.sf-testimonial-avatar { width:48px; height:48px; border-radius:50%; flex-shrink:0; object-fit:cover; }
.sf-testimonial-name { font-weight:700; font-size:14px; color:var(--text); }
.sf-testimonial-role { font-family:'DM Mono',monospace; font-size:10px; letter-spacing:0.12em; text-transform:uppercase; color:rgba(26,26,26,0.4); margin-top:2px; }
.quote-mark {
  position:absolute; top:20px; right:28px;
  font-family:'Playfair Display',serif; font-size:80px; line-height:1;
  color:rgba(212,175,55,0.1); pointer-events:none;
}

/* FIND US */
.find-us { padding:120px 0; background:var(--bg-dark); position:relative; overflow:hidden; }
.find-us::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle,rgba(212,175,55,0.05) 1px,transparent 1.5px);
  background-size:28px 28px;
  mask-image:radial-gradient(ellipse at center,black 30%,transparent 75%);
}
.find-us-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:center; position:relative; z-index:1; }
.find-us-info h2 {
  font-family:'Playfair Display',serif; font-size:clamp(32px,3vw,46px);
  font-weight:900; color:var(--bg); line-height:1.1; margin-bottom:20px;
}
.find-us-info > p { font-size:15px; color:rgba(247,247,245,0.6); line-height:1.8; margin-bottom:36px; font-weight:300; }
.find-us-detail { display:flex; align-items:flex-start; gap:14px; margin-bottom:20px; }
.find-us-detail-icon {
  width:36px; height:36px; background:rgba(212,175,55,0.12);
  border:1px solid rgba(212,175,55,0.2); border-radius:6px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.find-us-detail-text strong { display:block; font-size:13px; font-weight:700; color:var(--bg); margin-bottom:2px; }
.find-us-detail-text span { font-size:13px; color:rgba(247,247,245,0.5); }
.find-us-hours {
  margin-top:32px; padding:20px 24px;
  background:rgba(247,247,245,0.04); border:1px solid rgba(212,175,55,0.15);
  border-radius:8px;
}
.find-us-hours h4 { font-family:'DM Mono',monospace; font-size:10px; letter-spacing:0.18em; text-transform:uppercase; color:var(--accent); margin-bottom:14px; }
.hours-row { display:flex; justify-content:space-between; align-items:center; padding:7px 0; border-bottom:1px solid rgba(212,175,55,0.08); }
.hours-row:last-child { border-bottom:none; }
.hours-row span { font-size:13px; color:rgba(247,247,245,0.6); }
.hours-row strong { font-size:13px; font-weight:600; color:rgba(247,247,245,0.9); }
.location-map {
  width:100%; min-height:440px; border-radius:8px; overflow:hidden;
  border:1px solid rgba(212,175,55,0.15);
}

/* CTA BANNER */
.cta-banner {
  padding:110px 0; background:var(--accent);
  position:relative; overflow:hidden; text-align:center;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 60%);
}
.cta-banner-inner { position:relative; z-index:2; }
.cta-banner h2 {
  font-family:'Playfair Display',serif; font-size:clamp(36px,4vw,64px);
  font-weight:900; color:var(--primary); line-height:1.05; margin-bottom:16px;
}
.cta-banner p {
  font-size:18px; color:rgba(17,17,17,0.65); max-width:460px;
  margin:0 auto 44px; font-weight:300; line-height:1.7;
}
.cta-banner-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-dark {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--primary); color:var(--bg);
  font-family:'DM Sans',sans-serif; font-weight:700; font-size:15px;
  padding:15px 32px; border-radius:4px;
  letter-spacing:0.3px; text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease;
  border:none; cursor:pointer;
  box-shadow:0 8px 32px rgba(0,0,0,0.25);
}
.btn-dark:hover { transform:translateY(-2px); box-shadow:0 12px 40px rgba(0,0,0,0.35); }

/* FOOTER */
footer { background:var(--bg-dark); padding:80px 0 0; }
.footer-grid {
  display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:56px; border-bottom:1px solid rgba(212,175,55,0.1);
}
.footer-brand-name {
  font-family:'Playfair Display',serif; font-size:24px; font-weight:900;
  color:var(--bg); letter-spacing:0.14em; text-transform:uppercase; margin-bottom:16px;
}
.footer-brand-name span { color:var(--accent); }
.footer-about { font-size:14px; color:rgba(247,247,245,0.5); line-height:1.75; max-width:300px; margin-bottom:28px; font-weight:300; }
.footer-socials { display:flex; gap:12px; }
.footer-social {
  width:38px; height:38px; border-radius:6px;
  border:1px solid rgba(212,175,55,0.2);
  display:flex; align-items:center; justify-content:center;
  color:rgba(247,247,245,0.6); text-decoration:none;
  transition:border-color .2s, background .2s, color .2s;
}
.footer-social:hover { border-color:var(--accent); background:rgba(212,175,55,0.1); color:var(--accent); }
.footer-col h4 { font-family:'DM Mono',monospace; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--accent); margin-bottom:20px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:12px; }
.footer-col ul li a { font-size:14px; color:rgba(247,247,245,0.55); text-decoration:none; transition:color .2s; }
.footer-col ul li a:hover { color:var(--bg); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding:24px 0; }
.footer-copy { font-size:13px; color:rgba(247,247,245,0.35); }
.footer-copy strong { color:rgba(247,247,245,0.55); }
.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:13px; color:rgba(247,247,245,0.35); text-decoration:none; transition:color .2s; }
.footer-legal a:hover { color:rgba(247,247,245,0.7); }

/* RESPONSIVE */
@media(max-width:1024px) {
  .container { padding:0 32px; }
  .contact-grid { grid-template-columns:1fr; gap:60px; }
  .faq-grid { grid-template-columns:repeat(2,1fr); }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .sf-testimonial-grid { grid-template-columns:1fr 1fr; }
  .sf-testimonial-item:first-child { grid-column:span 2; }
  .find-us-grid { grid-template-columns:1fr; gap:60px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
}
@media(max-width:768px) {
  .container { padding:0 20px; }
  .hamburger { display:inline-flex; flex-direction:column; align-items:center; justify-content:center; z-index:2147483647; position:relative; }
  .nav-links { display:none !important; }
  .contact-hero { padding:130px 0 80px; min-height:auto; }
  .contact-hero h1 { font-size:clamp(40px,11vw,64px); }
  .hero-ctas { flex-direction:column; gap:12px; }
  .faq-grid { grid-template-columns:1fr; }
  .stats-inner { grid-template-columns:1fr 1fr; }
  .stat-num { font-size:42px; }
  .sf-testimonial-grid { grid-template-columns:1fr; }
  .sf-testimonial-item:first-child { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:14px; text-align:center; }
  .form-row { grid-template-columns:1fr; }
  .contact-form-wrapper { padding:32px 24px; }
}

/* sf-form-color-reset */
.contact-form-wrapper { color:var(--text); }
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder { color:var(--secondary); }

/* sf:shell-css-sync — begin */
.container { max-width:1280px; margin:0 auto; padding:0 48px; }
.accent-bar { height:3px; background:linear-gradient(90deg,var(--primary),var(--accent),var(--secondary)); }
nav { display:flex; align-items:center; justify-content:space-between; height:72px; }
.nav-links { display:flex; align-items:center; gap:36px; list-style:none; }
.nav-links a {
  font-size:13px; font-weight:500; color:rgba(247,247,245,0.7);
  text-decoration:none; letter-spacing:0.06em; text-transform:uppercase;
  transition:color .2s ease; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px;
  background:var(--accent); transform:scaleX(0); transition:transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color:var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.nav-hamburger span { display:block; width:24px; height:2px; background:var(--bg); transition:transform .3s; }
nav { height:84px; }
footer { background:var(--bg-dark); padding:80px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:48px; padding-bottom:56px; border-bottom:1px solid rgba(199,167,108,0.1); }
.footer-about { font-size:14px; color:rgba(247,247,245,0.5); line-height:1.75; max-width:300px; margin-bottom:28px; font-weight:300; }
.footer-socials { display:flex; gap:12px; }
.footer-social {
  width:38px; height:38px; border-radius:6px;
  border:1px solid rgba(199,167,108,0.2);
  display:flex; align-items:center; justify-content:center;
  color:rgba(247,247,245,0.6); text-decoration:none;
  transition:border-color .2s, background .2s, color .2s;
}
.footer-social:hover { border-color:var(--accent); background:rgba(199,167,108,0.1); color:var(--accent); }
.footer-col h4 { font-family:'DM Mono',monospace; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--accent); margin-bottom:20px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:12px; }
.footer-col ul li a { font-size:14px; color:rgba(247,247,245,0.55); text-decoration:none; transition:color .2s; }
.footer-col ul li a:hover { color:var(--bg); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding:24px 0; }
.footer-copy { font-size:13px; color:rgba(247,247,245,0.35); }
.footer-copy strong { color:rgba(247,247,245,0.55); }
.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:13px; color:rgba(247,247,245,0.35); text-decoration:none; transition:color .2s; }
.footer-legal a:hover { color:rgba(247,247,245,0.7); }
@media(max-width:1024px) {
.container{padding:0 32px;}
.footer-grid{grid-template-columns:1fr 1fr;gap:36px;}
}
@media(max-width:768px) {
.container{padding:0 20px;}
.nav-logo-img { height:56px; }
.nav-links{display:none;}
.nav-hamburger{display:flex;}
.footer-grid{grid-template-columns:1fr;}
.footer-bottom{flex-direction:column;gap:14px;text-align:center;}
}
@media (max-width: 900px) {
nav .nav-links, nav ul.nav-links, nav ol.nav-links { display: none !important; }
nav.nav-links > a:not(.nav-logo):not(.nav-cta),
  nav.nav-links > li,
  nav.nav-links > ul > li { display: none !important; }
}
/* sf:shell-css-sync — end */

/* sf-card-text-contrast: dark card needs light text */
.contact-hero,
.contact-hero h1, .contact-hero h2, .contact-hero h3, .contact-hero h4, .contact-hero h5, .contact-hero h6, .contact-hero p, .contact-hero li, .contact-hero a:not([class*="btn"]), .contact-hero span, .contact-hero strong, .contact-hero em, .contact-hero blockquote, .contact-hero dt, .contact-hero dd, .contact-hero small, .contact-hero figcaption { color: #f0f0f0; }
.contact-hero .btn-outline { color: #f0f0f0; border-color: #f0f0f0; }
.contact-hero .btn-ghost { color: #f0f0f0; border-color: #f0f0f0; }
.contact-hero .btn-link { color: #f0f0f0; border-color: #f0f0f0; }
.contact-hero .btn-secondary { color: #f0f0f0; border-color: #f0f0f0; }
/* sf-card-text-contrast: dark card needs light text */
.response-card,
.response-card h1, .response-card h2, .response-card h3, .response-card h4, .response-card h5, .response-card h6, .response-card p, .response-card li, .response-card a:not([class*="btn"]), .response-card span, .response-card strong, .response-card em, .response-card blockquote, .response-card dt, .response-card dd, .response-card small, .response-card figcaption { color: #f0f0f0; }
.response-card .btn-outline { color: #f0f0f0; border-color: #f0f0f0; }
.response-card .btn-ghost { color: #f0f0f0; border-color: #f0f0f0; }
.response-card .btn-link { color: #f0f0f0; border-color: #f0f0f0; }
.response-card .btn-secondary { color: #f0f0f0; border-color: #f0f0f0; }
/* sf-card-text-contrast: dark card needs light text */
.stats,
.stats h1, .stats h2, .stats h3, .stats h4, .stats h5, .stats h6, .stats p, .stats li, .stats a:not([class*="btn"]), .stats span, .stats strong, .stats em, .stats blockquote, .stats dt, .stats dd, .stats small, .stats figcaption { color: #f0f0f0; }
.stats .btn-outline { color: #f0f0f0; border-color: #f0f0f0; }
.stats .btn-ghost { color: #f0f0f0; border-color: #f0f0f0; }
.stats .btn-link { color: #f0f0f0; border-color: #f0f0f0; }
.stats .btn-secondary { color: #f0f0f0; border-color: #f0f0f0; }
/* sf-card-text-contrast: dark card needs light text */
.find-us,
.find-us h1, .find-us h2, .find-us h3, .find-us h4, .find-us h5, .find-us h6, .find-us p, .find-us li, .find-us a:not([class*="btn"]), .find-us span, .find-us strong, .find-us em, .find-us blockquote, .find-us dt, .find-us dd, .find-us small, .find-us figcaption { color: #f0f0f0; }
.find-us .btn-outline { color: #f0f0f0; border-color: #f0f0f0; }
.find-us .btn-ghost { color: #f0f0f0; border-color: #f0f0f0; }
.find-us .btn-link { color: #f0f0f0; border-color: #f0f0f0; }
.find-us .btn-secondary { color: #f0f0f0; border-color: #f0f0f0; }

/* Mobile overflow guard — kills horizontal scroll on narrow viewports.
   overflow-x:clip is stricter than overflow-x:hidden and cannot be
   subverted by descendant sticky/fixed ancestors establishing scroll
   containers. */
html { overflow-x: clip !important; max-width: 100vw !important; }
body { overflow-x: clip !important; max-width: 100vw !important; }
/* Fallback for browsers without overflow-x: clip support. */
@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden !important; }
}
/* Decorative shapes commonly extend past viewport on mobile. Their
   parent contexts (.hero / .hero-bg / sections with shape backgrounds)
   should clip — visual loses nothing on mobile, mobile gains a usable
   layout. */
.hero, .hero-bg, .hero-visual, [class*="hero-section"],
section [class*="decorative"], section [class*="float-shape"],
section [class*="abstract-bg"] {
  overflow-x: clip !important;
}
@supports not (overflow-x: clip) {
  .hero, .hero-bg, .hero-visual, [class*="hero-section"],
  section [class*="decorative"], section [class*="float-shape"],
  section [class*="abstract-bg"] {
    overflow-x: hidden !important;
  }
}
/* Force card-grid stacking on narrow viewports so portfolio/blog/
   product/team grids don't extend past the viewport horizontally. */
@media (max-width: 600px) {
  .sf-portfolio-grid,
  .sf-blog-grid,
  .sf-products-grid,
  .sf-team-grid,
  [class*="portfolio-grid"],
  [class*="blog-grid"],
  [class*="products-grid"],
  [class*="team-grid"] {
    grid-template-columns: 1fr !important;
  }
}
/* Hamburger toggle — sf-ui.js APPENDS a fully-independent <aside class="sf-mobnav">
   at the END of <body>. Outside any Claude-emitted stacking context. We don't
   touch the original .nav-links at all (hide on mobile via CSS); the mobile
   menu is a wholly separate component with its own click handlers. */
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; -webkit-tap-highlight-color: transparent; }
.hamburger span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: transform .2s, opacity .2s; }
.sf-mobnav {
  position: fixed; top: 0; right: 0;
  height: 100%; height: 100dvh;
  width: min(86vw, 320px);
  background: #fff; color: #1f2937;
  box-shadow: -8px 0 32px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform .25s ease-out;
  z-index: 2147483646;
  display: flex; flex-direction: column;
  padding: 72px 24px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}
.sf-mobnav.sf-mobnav-open { transform: translateX(0) !important; visibility: visible !important; }
.sf-mobnav a {
  display: block; padding: 14px 4px; font-size: 17px; line-height: 1.4;
  color: #1f2937; text-decoration: none; border-bottom: 1px solid #e5e7eb;
  -webkit-tap-highlight-color: rgba(0,0,0,.05);
}
.sf-mobnav a:active { background: rgba(0,0,0,0.04); }
.sf-mobnav-close {
  position: absolute; top: 12px; right: 12px;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  font-size: 28px; line-height: 1; color: inherit;
  -webkit-tap-highlight-color: rgba(0,0,0,.05);
}
.sf-mobnav-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease-out;
  z-index: 2147483645;
}
.sf-mobnav-backdrop.sf-mobnav-open { opacity: 1 !important; pointer-events: auto !important; }
body.sf-mobnav-locked { overflow: hidden !important; }
@media (max-width: 900px) {
  .hamburger { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2147483647; position: relative; }
  nav .nav-links, nav ul.nav-links, nav ol.nav-links { display: none !important; }
  /* Covers the case where Stage 1 puts .nav-links on the <nav style="z-index:2147483647 !important;"> itself
     instead of on a child <ul>/<div>. Direct anchor + list-item children
     of the nav get hidden; the hamburger is a <button>, not an <a>/<li>,
     so it stays visible. */
  nav.nav-links > a:not(.nav-logo):not(.nav-cta),
  nav.nav-links > li,
  nav.nav-links > ul > li { display: none !important; }
}
@media (min-width: 901px) {
  .sf-mobnav, .sf-mobnav-backdrop { display: none !important; }
}

/* V61-fix */ .contact-hero-orb { max-width:100vw !important; overflow-x:hidden !important; }
/* V61-fix */ .marquee-item { max-width:100vw !important; overflow-x:hidden !important; }
/* V61-fix */ .marquee-sep { max-width:100vw !important; overflow-x:hidden !important; }
/* V61-fix-base */ html, body { overflow-x:hidden !important; } img, video, iframe { max-width:100% !important; }
.nav-logo {
  font-family:'Playfair Display',serif; font-size:22px; font-weight:900;
  color:var(--bg); text-decoration:none; letter-spacing:0.12em; text-transform:uppercase;
  display:flex; align-items:center;
}
.nav-logo{
  font-family:'Playfair Display',serif; font-size:22px; font-weight:900;
  color:var(--bg); text-decoration:none; letter-spacing:0.12em; text-transform:uppercase;
  display:flex; align-items:center;
}
.nav-logo-img{
  height:72px;
  width:auto;
  filter:none;
  transition:transform .3s ease;
}
.nav-logo:hover .nav-logo-img{
  filter:none;
  transform:scale(1.06);
}
.nav-logo span{ color:var(--accent); }
.collections-header{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:end; margin-bottom:64px; }
.collections-header h2{
  font-family:'Playfair Display',serif; font-size:clamp(36px,3.5vw,58px);
  font-weight:900; line-height:1.06; color:var(--text);
}
.collections-header p{ font-size:16px; line-height:1.75; color:rgba(26,26,26,0.6); max-width:380px; }
.products-header{ text-align:center; margin-bottom:64px; }
.products-header h2{ font-family:'Playfair Display',serif; font-size:clamp(36px,3.5vw,58px); font-weight:900; color:var(--text); line-height:1.06; margin-bottom:16px; }
.products-header p{ font-size:16px; color:rgba(26,26,26,0.6); max-width:480px; margin:0 auto; }
.services-header{ text-align:center; margin-bottom:64px; }
.services-header h2{ font-family:'Playfair Display',serif; font-size:clamp(36px,3.5vw,58px); font-weight:900; color:var(--text); line-height:1.06; margin-bottom:14px; }
.testimonials-header{ margin-bottom:64px; }
.testimonials-header h2{ font-family:'Playfair Display',serif; font-size:clamp(36px,3.5vw,58px); font-weight:900; color:var(--text); line-height:1.06; }
.blog-header{ display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:52px; }
.blog-header h2{ font-family:'Playfair Display',serif; font-size:clamp(34px,3vw,50px); font-weight:900; color:var(--text); line-height:1.1; }
/* SiteForge nav sync END */