/* ========================================
   PANTAI GRANITE — Design System
   Modern Luxury Stone Showroom
   ======================================== */

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

/* ---- Variables ---- */
:root {
  --gold: #b89b6a;
  --gold-light: #d4b98a;
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #2a2a2a;
  --cream: #faf8f5;
  --cream-2: #f0ebe3;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e8e0d5;
  --nav-height: 80px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.18);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 100px 0; }
.section-pad--lg { padding: 140px 0; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.8;
}

.section-subtitle--light { color: rgba(255,255,255,0.75); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184,155,106,0.4); }

.btn--outline-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--outline-dark {
  border: 1.5px solid var(--dark-2);
  color: var(--dark-2);
}
.btn--outline-dark:hover { background: var(--dark-2); color: var(--white); }

.btn-arrow { font-size: 18px; transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }


/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav--transparent {
  background: transparent;
}

.nav--solid {
  background: var(--dark);
  box-shadow: var(--shadow-md);
}

.nav--light {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
  position: relative;
}

.nav--light .nav__links a { color: var(--text-dark); }

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__links a:hover { color: var(--white); }
.nav--light .nav__links a:hover { color: var(--gold); }

.nav__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav--light .nav__cta {
  border-color: var(--dark-2);
  color: var(--dark-2);
}

.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav--light .nav__hamburger span { background: var(--dark); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--dark);
  padding: 32px 40px 48px;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.nav__mobile a:hover { color: var(--gold); }
.nav__mobile a:last-child { border-bottom: none; }


/* ========================================
   PAGE HERO (Interior pages)
   ======================================== */
.page-hero {
  height: 420px;
  background: var(--dark-2);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 40px 64px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.page-hero__breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.page-hero__breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero__breadcrumb a:hover { color: var(--gold); }

.page-hero__title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__logo img { height: 38px; width: auto; margin-bottom: 20px; }

.footer__about {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

.footer__info {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}

.footer__info strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  display: block;
  margin-top: 12px;
}

.footer__info strong:first-child { margin-top: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}


/* ========================================
   HOME — HERO
   ======================================== */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-height);
}

.home-hero__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-hero__tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.home-hero__title {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 28px;
  max-width: 780px;
}

.home-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.home-hero__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.home-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.home-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}


/* ========================================
   HOME — STATS BAR
   ======================================== */
.stats-bar {
  background: var(--dark-2);
  padding: 0;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

.stats-bar__item {
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.stats-bar__item:last-child { border-right: none; }
.stats-bar__item:hover { background: rgba(255,255,255,0.03); }

.stats-bar__number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-bar__number span {
  color: var(--gold);
}

.stats-bar__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}


/* ========================================
   HOME — ABOUT SECTION
   ======================================== */
.home-about {
  background: var(--cream);
  padding: 120px 0;
}

.home-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.home-about__image-wrap {
  position: relative;
}

.home-about__img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 2px;
}

.home-about__accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  background: var(--gold);
  opacity: 0.12;
  border-radius: 2px;
  z-index: -1;
}

.home-about__badge {
  position: absolute;
  top: 32px;
  right: -32px;
  background: var(--dark);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 2px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.home-about__badge-year {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.home-about__badge-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  display: block;
}

.home-about__text .section-subtitle { margin-bottom: 32px; }

.home-about__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.home-about__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-dark);
}

.home-about__feature-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ========================================
   HOME — SERVICES / PROJECTS GALLERY
   ======================================== */
.home-gallery {
  padding: 120px 0;
  background: var(--white);
}

.home-gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 32px;
}

.home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.home-gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.home-gallery__item--tall {
  grid-row: span 2;
}

.home-gallery__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-gallery__item--tall .home-gallery__img {
  height: 100%;
  min-height: 644px;
}

.home-gallery__item:hover .home-gallery__img { transform: scale(1.05); }

.home-gallery__caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-gallery__item:hover .home-gallery__caption { opacity: 1; }

.home-gallery__caption-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.home-gallery__caption-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  letter-spacing: 0.05em;
}


/* ========================================
   HOME — CTA BANNER
   ======================================== */
.home-cta {
  background: var(--dark-2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.home-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.home-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.home-cta__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  max-width: 560px;
}

.home-cta__title em { font-style: italic; color: var(--gold-light); }

/* CTA banner button — shrinks naturally on desktop, expands on mobile */
.home-cta__btn {
  flex-shrink: 0;
  font-size: 13px;
  padding: 18px 44px;
}

/* Contact map */
.contact-map {
  width: 100%;
  height: 420px;
  filter: grayscale(30%);
}


/* ========================================
   ABOUT — TIMELINE
   ======================================== */
.timeline {
  padding: 120px 0;
  background: var(--white);
}

.timeline__list {
  position: relative;
  padding-left: 0;
  margin-top: 72px;
}

.timeline__line {
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  margin-bottom: 64px;
  position: relative;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__year-col {
  text-align: right;
  padding-right: 40px;
  position: relative;
  flex-shrink: 0;
}

.timeline__year {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.timeline__dot {
  position: absolute;
  right: -6px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline__body { padding-top: 4px; }

.timeline__milestone {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.timeline__desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
}

.timeline__img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 2px;
  margin-top: 16px;
  opacity: 0.9;
}


/* ========================================
   ABOUT — INVENTORY
   ======================================== */
.about-inventory {
  background: var(--cream);
  padding: 120px 0;
}

.about-inventory__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-inventory__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.about-inventory__text { }
.about-inventory__text .section-subtitle { margin-bottom: 28px; }

.about-inventory__types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.about-inventory__type {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 12px 16px;
  background: var(--white);
  border-radius: 2px;
  border: 1px solid var(--border);
}

.about-inventory__type-icon {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ========================================
   ABOUT — WAREHOUSE
   ======================================== */
.about-warehouse {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-warehouse__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.about-warehouse__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-warehouse__detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-warehouse__detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.about-warehouse__icon {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-warehouse__detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.about-warehouse__detail-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.about-warehouse__hours { }
.about-warehouse__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-warehouse__hours-row:last-child { border-bottom: none; }
.about-warehouse__hours-day { color: rgba(255,255,255,0.9); font-weight: 500; }


/* ========================================
   CUSTOMERS — ROOMS
   ======================================== */
.customers-intro {
  background: var(--cream);
  padding: 100px 0;
}

.customers-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.customers-intro__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

.customers-rooms {
  padding: 120px 0;
  background: var(--white);
}

.customers-rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.room-card__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.room-card:hover .room-card__img { transform: scale(1.04); }

.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
}

.room-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.room-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.room-card:hover .room-card__desc {
  max-height: 80px;
  opacity: 1;
}

.room-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: gap 0.2s;
}

.room-card:hover .room-card__link { gap: 12px; }


/* ========================================
   CUSTOMERS — GALLERY GRID
   ======================================== */
.customers-gallery {
  padding: 0 0 120px;
  background: var(--white);
}

.customers-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.customers-gallery__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: opacity 0.3s;
}

.customers-gallery__img:hover { opacity: 0.85; }


/* ========================================
   CUSTOMERS — PROCESS
   ======================================== */
.customers-process {
  background: var(--cream);
  padding: 120px 0;
}

.customers-process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.customers-process__img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 2px;
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.process-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  min-width: 48px;
}

.process-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Deliveries section */
.customers-delivery {
  background: var(--dark);
  padding: 100px 0;
}

.customers-delivery__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.customers-delivery__img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  border-radius: 2px;
  opacity: 0.9;
}


/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-layout {
  padding: 100px 0 120px;
  background: var(--cream);
}

.contact-layout__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.contact-info__detail {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.contact-info__detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info__value {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
}

.contact-info__value a { color: var(--text-dark); transition: color 0.2s; }
.contact-info__value a:hover { color: var(--gold); }

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}

.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-day { font-weight: 500; }

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 52px 48px;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}

.contact-form__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form__subtitle {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,155,106,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  padding: 17px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,155,106,0.35); }


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .container--narrow { padding: 0 28px; }
  .home-about__inner,
  .about-inventory__inner,
  .about-warehouse__inner,
  .customers-intro__inner,
  .customers-process__inner,
  .customers-delivery__inner,
  .contact-layout__inner { grid-template-columns: 1fr; gap: 48px; }
  .home-about__badge { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .home-cta__inner { flex-direction: column; align-items: flex-start; }
  .customers-rooms__grid { grid-template-columns: 1fr 1fr; }
  .customers-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .home-gallery__grid { grid-template-columns: 1fr 1fr; }
  .home-gallery__item--tall { grid-row: span 1; }
  .home-gallery__item--tall .home-gallery__img { min-height: auto; }
  /* Reduce tall fixed heights at tablet */
  .home-about__img { height: 420px; }
  .about-inventory__img { height: 380px; }
  .customers-intro__img { height: 360px; }
  .customers-process__img { height: 400px; }
  .customers-delivery__img { height: 340px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .section-pad { padding: 72px 0; }
  .section-pad--lg { padding: 88px 0; }

  /* Page hero */
  .page-hero { height: 300px; }
  .page-hero__content { padding: 0 24px 40px; }
  .page-hero__title { font-size: clamp(30px, 7vw, 48px); }

  /* Stats bar */
  .stats-bar__inner { grid-template-columns: 1fr; }
  .stats-bar__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 32px 24px;
  }
  .stats-bar__item:last-child { border-bottom: none; }
  .stats-bar__number { font-size: 42px; }

  /* Home sections */
  .home-about { padding: 72px 0; }
  .home-gallery { padding: 72px 0; }
  .home-cta { padding: 72px 0; }
  .home-cta__inner { gap: 28px; }
  .home-gallery__grid { grid-template-columns: 1fr; }
  .home-gallery__header { flex-direction: column; align-items: flex-start; }

  /* Fixed image heights — reduce for mobile */
  .home-about__img { height: 300px; }
  .home-gallery__img { height: 240px; }
  .about-inventory__img { height: 280px; }
  .customers-intro__img { height: 260px; }
  .customers-process__img { height: 280px; }
  .customers-delivery__img { height: 260px; }
  .room-card__img { height: 300px; }
  .customers-gallery__img { height: 180px; }

  /* Customers page */
  .customers-intro { padding: 72px 0; }
  .customers-rooms { padding: 72px 0; }
  .customers-rooms__grid { grid-template-columns: 1fr; }
  .customers-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .customers-process { padding: 72px 0; }
  .customers-process__inner { gap: 48px; }
  .customers-delivery { padding: 72px 0; }
  .customers-delivery__inner { gap: 40px; }

  /* About page */
  .timeline { padding: 72px 0; }
  .timeline__item { grid-template-columns: 90px 1fr; gap: 20px; }
  .timeline__line { left: 45px; }
  .timeline__year-col { padding-right: 20px; }
  .timeline__year { font-size: 20px; }
  .about-inventory { padding: 72px 0; }
  .about-inventory__types { grid-template-columns: 1fr; }
  .about-warehouse { padding: 72px 0; }
  .about-warehouse__inner { gap: 48px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Contact */
  .contact-layout { padding: 64px 0 80px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Section paddings */
  .timeline__list { margin-top: 40px !important; }
  .customers-rooms__grid { margin-top: 40px; }

  /* Map */
  .contact-map { height: 300px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }

  /* Hero */
  .page-hero { height: 260px; }
  .home-hero__title { font-size: clamp(34px, 9vw, 52px); }
  .home-hero__subtitle { font-size: 16px; }
  .home-hero__ctas { flex-direction: column; }

  /* Stats */
  .stats-bar__number { font-size: 36px; }

  /* Sections */
  .section-title { font-size: clamp(26px, 7vw, 40px); }
  .home-about { padding: 56px 0; }
  .home-gallery { padding: 56px 0; }
  .home-cta { padding: 56px 0; }
  .timeline { padding: 56px 0; }
  .about-inventory { padding: 56px 0; }
  .customers-intro { padding: 56px 0; }
  .customers-rooms { padding: 56px 0; }
  .customers-process { padding: 56px 0; }
  .customers-delivery { padding: 56px 0; }
  .contact-layout { padding: 48px 0 64px; }

  /* Images */
  .home-about__img { height: 240px; }
  .about-inventory__img { height: 220px; }
  .customers-intro__img { height: 220px; }
  .customers-process__img { height: 220px; }
  .customers-delivery__img { height: 200px; }
  .room-card__img { height: 260px; }

  /* Gallery */
  .customers-gallery__grid { grid-template-columns: 1fr 1fr; gap: 3px; }
  .customers-gallery__img { height: 140px; }

  /* CTA */
  .home-cta__inner { gap: 24px; }
  /* All buttons go full-width on small screens for easy tapping */
  .btn { width: 100%; justify-content: center; }
  /* Map */
  .contact-map { height: 240px; }

  /* Nav mobile menu */
  .nav__mobile { padding: 24px 20px 40px; }

  /* Footer */
  .footer { padding: 60px 0 32px; }

  /* Process steps */
  .process-step { gap: 16px; }
  .process-step__num { font-size: 28px; min-width: 36px; }

  /* Timeline */
  .timeline__item { grid-template-columns: 72px 1fr; gap: 16px; }
  .timeline__line { left: 36px; }
  .timeline__year { font-size: 17px; }
  .timeline__title { font-size: 18px; }
  .timeline__img { width: 100%; height: 140px; }

  /* Contact form */
  .contact-form { padding: 24px 18px; }
  .contact-form__title { font-size: 22px; }
}

/* ============ ABOUT — MISSION ============ */
.about-mission {
  background: var(--cream);
  padding: 100px 0;
}

.about-mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* ============ ABOUT — GALLERY STRIP ============ */
.about-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.about-gallery-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .about-mission__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-mission__img { height: 380px; }
  .about-gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-mission { padding: 72px 0; }
  .about-mission__img { height: 300px; }
  .about-gallery-strip img { height: 180px; }
}

@media (max-width: 480px) {
  .about-mission { padding: 56px 0; }
  .about-mission__img { height: 240px; }
  .about-gallery-strip img { height: 140px; }
}

/* ============ SERVICES PAGE ============ */
.services-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 0;
}

.services-tab {
  background: none;
  border: none;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.services-tab:hover {
  color: var(--text-dark);
}

.services-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.services-panel__header {
  margin-bottom: 40px;
}

.services-panel__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.services-panel__desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 620px;
}

.services-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.services-gallery img {
  width: 100%;
  aspect-ratio: 400 / 284;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.services-gallery img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
  z-index: 1;
  position: relative;
}

@media (max-width: 1024px) {
  .services-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .services-tabs { gap: 4px; }
  .services-tab { padding: 12px 16px; font-size: 12px; }
  .services-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .services-gallery { grid-template-columns: 1fr 1fr; gap: 4px; }
}
