/* ═══════════════════════════════════════════
   INTERIOR DECORATOR — SHARED STYLESHEET
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600&display=swap');

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

:root {
  --cream:   #f2eee4;
  --dark:    #010101;
  --dark2:   #1a1a1a;
  --dark3:   #191817;
  --orange:  #bf5f33;
  --orange2: #aa471a;
  --grey:    #b9b9b9;
  --muted:   #9b9b9b;
  --border:  #343434;
  --border2: #3c3c3c;
  --font-h:  'Jost', sans-serif;
  --font-b:  'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── UTILITY ── */
.label {
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 500;
  line-height: 0.92;
  color: var(--cream);
}
.body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey);
}
.container {
  width: 90%;
  max-width: 1290px;
  margin: auto;
}
.container--full {
  width: 100%;
  max-width: 100%;
  padding: 0 70px;
}

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.fade-in.d1 { transition-delay: 0.12s; }
.fade-in.d2 { transition-delay: 0.24s; }
.fade-in.d3 { transition-delay: 0.36s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── DOTS DECORATION ── */
.dots {
  display: grid;
  gap: 7px;
  opacity: 0.18;
  pointer-events: none;
}
.dots span {
  display: block;
  width: 13px;
  height: 13px;
  border: 1px solid var(--cream);
}

/* ── BUTTON ── */
.btn {
  display: inline-block;
  padding: 15px 44px;
  background: var(--orange);
  color: var(--cream);
  font-family: var(--font-h);
  font-size: 17px;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.btn:hover { background: var(--orange2); }
.btn--outline {
  background: transparent;
  border: 1px solid rgba(242,238,228,0.4);
}
.btn--outline:hover { background: rgba(255,255,255,0.06); border-color: var(--cream); }

/* ── ARROW LINK ── */
.arrow-link {
  font-family: var(--font-h);
  font-size: 17px;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: gap 0.25s ease;
}
.arrow-link:hover { gap: 22px; }
.arrow-link::after {
  content: '';
  display: inline-block;
  width: 38px;
  height: 1px;
  background: var(--cream);
}

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 70px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  background: rgba(1,1,1,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-logo {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream);
  white-space: nowrap;
}
.header-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-h);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(242,238,228,0.7);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-h);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 9px 22px;
  border: 1px solid rgba(242,238,228,0.3);
  color: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  border-color: var(--orange);
  background: rgba(191,95,51,0.12);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.mobile-menu a:hover { opacity: 1; color: var(--orange); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--dark3);
  padding: 90px 0 0;
}
.footer-inner {
  width: 90%;
  max-width: 1290px;
  margin: auto;
}
.footer-headline h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 500;
  line-height: 0.92;
  color: #fcfcfc;
  margin-bottom: 60px;
  max-width: 560px;
}
.footer-headline h2 span { color: var(--orange); }
.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: var(--font-h);
  font-size: 16px;
  color: #fcfcfc;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.5; }
.social-row { display: flex; gap: 10px; }
.soc-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(252,252,252,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fcfcfc;
  transition: border-color 0.2s, background 0.2s;
}
.soc-icon:hover {
  border-color: rgba(252,252,252,0.5);
  background: rgba(255,255,255,0.06);
}
.soc-icon svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border2);
  padding: 26px 0;
}
.footer-copy {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--muted);
}
.footer-copy a { color: #fcfcfc; transition: opacity 0.2s; }
.footer-copy a:hover { opacity: 0.6; }

/* ── PLAY BTN ── */
.play-btn {
  width: 100px; height: 100px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  animation: pulse 2.5s infinite;
}
.play-btn:hover { transform: scale(1.08); background: rgba(255,255,255,0.1); }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
  50%      { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
}

/* ── ACCORDION ── */
.accordion .acc-item { border-bottom: 1px solid var(--border); }
.accordion .acc-item:first-child { border-top: 1px solid var(--border); }
.acc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 21px;
  color: var(--cream);
  line-height: 1.2;
  user-select: none;
  transition: opacity 0.2s;
}
.acc-header:hover { opacity: 0.75; }
.acc-arrow { font-size: 22px; transition: transform 0.3s; margin-left: 20px; flex-shrink: 0; }
.acc-item.open .acc-arrow { transform: rotate(90deg); }
.acc-body {
  font-size: 14px; line-height: 1.6; color: var(--grey);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}
.acc-item.open .acc-body { max-height: 200px; padding-bottom: 20px; }

/* ── SERVICE BLURB ── */
.blurb { margin-bottom: 44px; }
.blurb:last-child { margin-bottom: 0; }
.blurb-icon { width: 62px; height: 62px; display: block; margin-bottom: 16px; }
.blurb h4 {
  font-family: var(--font-h);
  font-size: 22px; font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px; line-height: 1.2;
}
.blurb p { font-size: 14px; line-height: 1.6; color: var(--grey); }

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}
.gallery-strip .g-cell {
  aspect-ratio: 1; overflow: hidden; position: relative;
}
.gallery-strip .g-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-strip .g-cell:hover img { transform: scale(1.07); }
.gallery-strip .g-cell .g-overlay {
  position: absolute; inset: 0;
  background: rgba(1,1,1,0.4);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-strip .g-cell:hover .g-overlay { opacity: 1; }
.ig-pill {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: var(--dark);
  border-radius: 50%;
  width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ig-pill svg { width: 24px; height: 24px; }

/* ── STAT COUNTER ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  position: relative;
  text-align: center;
  padding: 50px 20px;
}
.stat-cell:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 55px; width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: var(--font-h);
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 500;
  line-height: 1;
  color: #222120;
  display: block;
}
.stat-label {
  font-family: var(--font-h);
  font-size: 20px;
  color: var(--cream);
  margin-top: 10px;
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .container--full { padding: 0 40px; }
  .site-header { padding: 0 40px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2)::after { display: none; }
}
@media (max-width: 640px) {
  .container--full { padding: 0 20px; }
  .site-header { padding: 0 20px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-mid { flex-direction: column; gap: 28px; align-items: flex-start; }
}
