/* ═══════════════════════════════════════════════════════════
   ARCMAX INTERIORS — Global Stylesheet
   Font: Futura / Century Gothic / Jost (web fallback)
═══════════════════════════════════════════════════════════ */

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

:root {
  --futura: 'Futura', 'Century Gothic', 'Trebuchet MS', 'Jost', sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;

  --gold:       #B8966A;
  --gold-lt:    #D9BF9A;
  --gold-dk:    #8C6A3E;
  --gold-bg:    #F9F4EE;
  --cream:      #FAFAF8;
  --white:      #FFFFFF;
  --ink:        #1A1A1A;
  --ink-2:      #2C2C2C;
  --muted:      #767676;
  --border:     #E6E0D6;
  --section-alt:#F4F1EC;

  --nav-h: 76px;
  --radius: 2px;
  --shadow: 0 4px 32px rgba(26,26,26,0.07);
  --shadow-lg: 0 16px 64px rgba(26,26,26,0.13);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--futura);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── TYPOGRAPHY UTILITIES ── */
.label {
  font-family: var(--futura);
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

h1, h2, h3 {
  font-family: var(--futura);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h4, h5, h6 {
  font-family: var(--futura);
  font-weight: 500;
}

.display {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 1.0;
}
.display strong { font-weight: 700; color: var(--gold); }

.h2 { font-size: clamp(38px, 4.5vw, 62px); font-weight: 300; }
.h2 em { font-style: normal; color: var(--gold); font-weight: 600; }

/* ── CONTAINER ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ── SECTION ── */
.section { padding: 110px 0; }
.section--alt { background: var(--section-alt); }
.section--dark { background: var(--ink); }
.section--gold-bg { background: var(--gold-bg); }

.section-header { margin-bottom: 72px; }
.section-header--center { text-align: center; }
.section-header--center .label { justify-content: center; }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--ink);
  display: grid; place-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}
.nav-logo-mark span {
  font-family: var(--futura);
  font-size: 18px; font-weight: 700;
  color: var(--gold); letter-spacing: -1px;
}
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name {
  font-family: var(--futura);
  font-size: 16px; font-weight: 600;
  letter-spacing: 1px; color: var(--ink);
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  display: block; padding: 8px 16px;
  font-family: var(--futura);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 4px; left: 16px; right: 16px; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 11px 24px !important;
  letter-spacing: 2px !important;
  margin-left: 8px;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--gold-dk) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 999;
  flex-direction: column; padding: 48px 40px;
  overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-family: var(--futura); font-size: 28px; font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  transition: color 0.25s; display: block;
}
.mobile-drawer a:hover { color: var(--gold); }
.mobile-drawer .m-cta {
  margin-top: 32px; background: var(--gold); color: white;
  text-align: center; padding: 18px; letter-spacing: 3px;
  font-size: 13px; border: none;
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,150,106,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,106,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,106,0.15) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .label { color: var(--gold-lt); }
.page-hero .label::before { background: var(--gold-lt); }
.page-hero .h2 { color: var(--white); margin-top: 12px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--futura); font-size: 11px;
  font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 15px 36px;
}
.btn-gold {
  background: var(--gold); color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 92% 100%, 0 100%);
}
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink); color: var(--gold);
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  padding: 40px 36px; position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.card-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover .card-bar { transform: scaleX(1); }

/* ── GRID UTILITIES ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── FADE IN ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FLOATING BTNS ── */
.floats {
  position: fixed; bottom: 32px; right: 32px;
  display: flex; flex-direction: column; gap: 12px; z-index: 999;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s var(--ease); position: relative;
}
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-call { background: var(--ink); color: var(--gold); }
.float-wa { background: #25D366; color: white; }
.float-tooltip {
  position: absolute; right: 64px;
  background: var(--ink); color: white;
  padding: 6px 14px; font-family: var(--futura); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(184,150,106,0.2);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 64px;
}
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.9; margin-top: 20px; max-width: 300px;
}
.footer-col h5 {
  font-family: var(--futura); font-size: 10px;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-family: var(--futura); font-size: 12px;
  letter-spacing: 1px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.25s;
  display: flex; align-items: center; gap: 10px;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul a i { width: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--futura); font-size: 10px;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.5); font-size: 14px;
  text-decoration: none; transition: all 0.3s;
}
.social-icon:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,26,26,0.88); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream); width: 100%; max-width: 760px;
  max-height: 92vh; overflow-y: auto;
  animation: modalIn 0.35s var(--ease);
}
@keyframes modalIn { from { opacity:0; transform:translateY(24px) scale(0.98); } }
.modal-head {
  padding: 28px 40px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: var(--cream); z-index: 2;
}
.modal-head h3 {
  font-family: var(--futura); font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink); font-weight: 600;
}
.modal-close-btn {
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; display: grid; place-items: center;
  color: var(--muted); font-size: 18px; transition: color 0.25s;
}
.modal-close-btn:hover { color: var(--ink); }
.modal-content { padding: 40px; }
.modal-content h2 {
  font-family: var(--futura); font-size: 36px; font-weight: 200;
  letter-spacing: -1px; margin-bottom: 8px;
}
.modal-content h2 strong { font-weight: 700; color: var(--gold); }
.modal-content p { font-size: 13px; color: var(--muted); margin-bottom: 36px; letter-spacing: 0.5px; }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.span-2 { grid-column: span 2; }
.form-group label {
  font-family: var(--futura); font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--ink-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border); background: var(--white);
  padding: 13px 16px; outline: none;
  font-family: var(--futura); font-size: 13px; letter-spacing: 0.5px;
  color: var(--ink); transition: border-color 0.25s;
  appearance: none; border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--gold-bg); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8966A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit { margin-top: 32px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 48px 32px;
}
.form-success .fs-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--gold-lt);
  display: grid; place-items: center; font-size: 28px;
  color: var(--gold); margin: 0 auto 20px;
}
.form-success h3 { font-family: var(--futura); font-size: 24px; font-weight: 300; margin-bottom: 8px; }
.form-success p { font-size: 13px; color: var(--muted); letter-spacing: 0.5px; }

/* ── STAT BLOCK ── */
.stat-num {
  font-family: var(--futura); font-size: 56px; font-weight: 200;
  color: var(--gold); line-height: 1; letter-spacing: -2px;
}
.stat-label {
  font-family: var(--futura); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
  margin-top: 8px;
}

/* ── VENDOR SLIDER ── */
.vendor-wrap { overflow: hidden; padding: 20px 0; }
.vendor-track {
  display: flex; gap: 20px; width: max-content;
  animation: ticker 28s linear infinite;
}
.vendor-track:hover { animation-play-state: paused; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.vendor-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  padding: 16px 28px; white-space: nowrap;
  font-family: var(--futura); font-size: 11px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); flex-shrink: 0; transition: all 0.3s;
}
.vendor-chip i { color: var(--gold); }
.vendor-chip:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: span 1; }
  .modal-content { padding: 28px 24px; }
  .modal-head { padding: 20px 24px; }
}

@media (max-width: 620px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .floats { bottom: 20px; right: 20px; }
  .display { font-size: clamp(40px, 11vw, 64px); }
}
