/* ============================================================
   OTELKOM – style.css
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Variables ── */
:root {
  --cream:      #FAF8F5;
  --white:      #ffffff;
  --dark:       #1a1a1a;
  --dark2:      #333333;
  --gold:       #c9a96e;
  --gold-dk:    #b8975e;
  --text-mid:   #6a6560;
  --text-soft:  #8a8478;
  --text-dark2: #4a4540;
  --border:     #E8E4DF;
  --bg-light:   #F0EBE4;
  --radius:     8px;
  --radius-lg:  12px;
  --shadow:     0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --trans:      .25s ease;
  --font-body:  'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-w:      1280px;
}

/* ── Base ── */
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); }

p { color: var(--text-mid); line-height: 1.7; }

/* ── Utilities ── */
.hidden { display: none !important; }

.container {
  width: min(var(--max-w), 92%);
  margin-inline: auto;
}

.section {
  padding: 48px 0;
}
.bg-cream { background: var(--cream); }
.bg-white  { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-header h2 { margin-top: .5rem; }

.eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  transition: background var(--trans), color var(--trans), transform var(--trans);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-1px); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); }

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

.btn-outline-white-sm {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
  padding: .45rem .9rem;
  font-size: .78rem;
  border-radius: 4px;
}
.btn-outline-white-sm:hover { background: rgba(255,255,255,.2); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark2);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { background: var(--cream); }

/* ── Icons ── */
.icon-xs { width: 12px; height: 12px; }
.icon-sm { width: 14px; height: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--dark);
  line-height: 1;
}
.logo-tag {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 2px;
}

/* Desktop nav */
.desktop-nav { display: flex; }
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.desktop-nav a {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .875rem;
  color: var(--text-dark2);
  transition: color var(--trans);
}
.desktop-nav a:hover { color: var(--dark); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .75rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: .65rem 1.1rem;
  font-size: .875rem;
  color: var(--text-dark2);
  transition: background var(--trans), color var(--trans);
}
.dropdown a:hover { background: var(--cream); color: var(--dark); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: .2rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-dark2);
  background: none;
  border: none;
  transition: color var(--trans);
}
.lang-btn:hover { color: var(--dark); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  color: var(--dark);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu a {
  display: block;
  padding: .7rem .5rem;
  font-size: .9rem;
  color: var(--text-dark2);
  border-bottom: 1px solid var(--border);
  transition: color var(--trans);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px clamp(1.5rem, 5vw, 5rem) 0 clamp(1.5rem, 6vw, 6rem);
  max-width: 680px;
}

.eyebrow-hero {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #c4b9a8;
  margin-bottom: 1rem;
}

.hero-content h1 { color: var(--white); font-weight: 500; }

.hero-desc {
  color: #d4cdc4;
  font-size: 1.05rem;
  margin: 1.25rem 0 2rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero features strip */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.feature-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.feature-sub {
  font-size: .75rem;
  color: #a8a095;
  margin-top: 2px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step-card {
  text-align: center;
  position: relative;
}
/* Dashed connector between steps */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  width: calc(100% - 32px);
  border-top: 2px dashed var(--border);
}
.step-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--text-soft);
}
.step-icon-wrap svg { width: 28px; height: 28px; }
.step-num {
  font-size: .7rem;
  color: var(--text-soft);
  margin-bottom: .4rem;
  letter-spacing: .05em;
}
.step-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
}
.step-card p { font-size: .875rem; max-width: 200px; margin: 0 auto; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-img-wrap {
  height: 192px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-body { padding: 1.25rem 1rem; }
.service-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  margin-bottom: .75rem;
}
.service-icon-wrap svg { width: 18px; height: 18px; }
.service-body h3 {
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--dark);
}
.service-body p { font-size: .78rem; line-height: 1.55; }

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: .9rem;
  transition: color var(--trans), gap var(--trans);
}
.explore-link:hover { color: var(--gold); gap: .55rem; }

/* ============================================================
   HOTEL TYPE SELECTOR
   ============================================================ */

/* Section header */
.type-step {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: .25rem;
}
.type-heading {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--dark);
}
.type-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: .75rem auto;
}
.type-subtitle {
  font-size: .9rem;
  color: var(--text-soft);
}

/* Grid */
.hotel-types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

/* Card */
.type-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.type-card:hover {
  border-color: var(--dark);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.type-card.active {
  border-color: var(--dark);
  border-width: 2px;
  box-shadow: var(--shadow);
}

/* Icon */
.type-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  margin-bottom: .6rem;
  transition: color var(--trans);
}
.type-card.active .type-icon,
.type-card:hover  .type-icon { color: var(--gold); }
.type-icon svg { width: 28px; height: 28px; }

/* Title */
.type-card h3 {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .75rem;
}

/* Image */
.type-img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: .85rem;
  aspect-ratio: 4/3;
}
.type-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.type-card:hover .type-img img { transform: scale(1.05); }

/* Description */
.type-card p {
  font-size: .78rem;
  color: var(--text-mid);
  line-height: 1.55;
  flex: 1;
  margin-bottom: .9rem;
}

/* Select link */
.type-select {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: auto;
  transition: color var(--trans), gap var(--trans);
}
.type-select svg { width: 13px; height: 13px; }
.type-select:hover,
.type-card.active .type-select { color: var(--gold); gap: .55rem; }

/* Footer note */
.type-footer-note {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.type-footer-note p { font-size: .85rem; color: var(--text-soft); }
.type-footer-note a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--trans);
}
.type-footer-note a:hover { color: var(--gold); }

/* ============================================================
   SOLUTIONS GRID (5-card MVP design)
   ============================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans);
}
.solution-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.solution-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.solution-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.solution-card:hover .solution-img-wrap img { transform: scale(1.06); }
.solution-icon {
  width: 44px; height: 44px;
  background: var(--cream, #f5efe6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -22px;
  margin-bottom: .9rem;
  position: relative;
  z-index: 2;
}
.solution-icon svg { width: 20px; height: 20px; color: var(--dark); }
.solution-body {
  padding: 0 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.solution-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: .55rem;
}
.solution-body p {
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: .9rem;
}
.solution-explore {
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--trans), gap var(--trans);
  cursor: pointer;
}
.solution-explore svg { width: 13px; height: 13px; }
.solution-explore:hover { color: var(--gold); gap: .6rem; }

/* ============================================================
   DESIGN STYLES
   ============================================================ */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.style-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.style-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.style-card:hover img { transform: scale(1.06); }
.style-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.22) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.25rem;
}
.style-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .2rem;
}
.style-overlay > p {
  font-size: .78rem;
  color: #cbbfa9;
  margin-bottom: 1rem;
}
.btn-outline-white {
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
  background: transparent;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .45rem 1rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.14);
  border-color: var(--white);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.projects-header .eyebrow { margin-bottom: .5rem; }
.projects-header h2 { color: var(--dark); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.project-img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.project-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover .project-img-wrap img { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
}
.project-overlay h3 {
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--white);
  line-height: 1.3;
}
.project-overlay p {
  font-size: .75rem;
  color: #c4b9a8;
  margin-top: .15rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--dark);
  padding: 48px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 3rem;
}
.cta-text h2 {
  color: var(--white);
}
.cta-action p {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 0;
}
.cta-btn { flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.footer-inner { padding: 56px 0 28px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 1.25rem; }

.social-links {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: background var(--trans), color var(--trans);
}
.social-link svg { width: 15px; height: 15px; }
.social-link:hover { background: var(--dark); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .875rem;
  color: var(--text-mid);
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--dark); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-mid);
}
.contact-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--text-soft); margin-top: 2px; }

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: var(--text-soft); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: 16px;
  width: min(560px, 100%);
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--trans);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: background var(--trans);
}
.modal-close svg { width: 14px; height: 14px; }
.modal-close:hover { background: var(--border); }

.modal h2 { font-size: 1.5rem; margin: .4rem 0 .25rem; }
.modal-desc { font-size: .875rem; margin-bottom: 1.75rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .875rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 88px; }

/* ── File upload ── */
.file-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: 1.4rem 1rem;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  background: var(--cream);
  transition: border-color var(--trans), background var(--trans);
}
.file-drop:hover { border-color: var(--gold); background: rgba(201,169,110,.06); }
.file-drop svg { width: 26px; height: 26px; color: var(--text-soft); }
.file-drop-text { font-size: .85rem; color: var(--dark); font-weight: 500; }
.file-drop-hint { font-size: .72rem; color: var(--text-soft); }

.file-list { display: flex; flex-direction: column; gap: .4rem; margin-top: .6rem; }
.file-list:empty { display: none; }
.file-list-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .75rem;
  background: var(--bg-light);
  border-radius: 6px;
  font-size: .8rem;
}
.file-list-item .file-name {
  flex: 1;
  color: var(--dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-list-item .file-size { color: var(--text-soft); font-size: .72rem; }
.file-list-item .file-remove {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.file-list-item .file-remove:hover { color: var(--dark); background: rgba(0,0,0,.05); }
.file-list-item .file-remove svg { width: 14px; height: 14px; }

/* ── Toast ── */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: var(--white);
  padding: .9rem 1.4rem;
  border-radius: 10px;
  font-size: .875rem;
  z-index: 9999;
  transform: translateY(120%);
  transition: transform .3s ease;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
#toast.show { transform: translateY(0); }
#toast.success { background: #2e7d4f; }

/* ============================================================
   REAL SOLUTIONS
   ============================================================ */
.real-solutions {
  background: var(--cream);
}

.rs-headline {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--dark);
  margin-top: .5rem;
  line-height: 1.2;
}
.rs-headline em {
  font-style: italic;
  color: var(--gold);
}

.rs-sub {
  font-size: .975rem;
  color: var(--text-mid);
  margin-top: .75rem;
  line-height: 1.75;
  max-width: 620px;
  margin-inline: auto;
}

/* Service Grid — 4 cols × 3 rows */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  transition: box-shadow var(--trans), transform var(--trans);
}
.svc-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.svc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .7rem;
}

.svc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.svc-icon { color: var(--text-soft); }
.svc-icon svg { width: 20px; height: 20px; display: block; }

.svc-card h3 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .65rem;
  font-family: var(--font-body);
  line-height: 1.3;
}

.svc-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: .75rem;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.05); }

.svc-list { display: flex; flex-direction: column; }
.svc-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .48rem 0 .48rem .85rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.svc-list-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .08rem;
  min-width: 0;
}
.svc-list-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  transition: color var(--trans);
}
.svc-list-cta { font-size: .62rem; color: var(--gold); }
.svc-list-right {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
}
.svc-list-thumb {
  width: 38px; height: 38px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-list-chevron { color: var(--text-soft); flex-shrink: 0; transition: color var(--trans); }
.svc-list-chevron svg { width: 12px; height: 12px; display: block; }
.svc-list li:hover .svc-list-name { color: var(--gold); }
.svc-list li:hover .svc-list-chevron { color: var(--gold); }
.svc-card-title-link h3 { transition: color var(--trans); }
.svc-card-title-link:hover h3 { color: var(--gold); }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: flex;
  gap: 10px;
  padding: 0 clamp(1rem, 3vw, 3rem);
  background: var(--cream);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 calc(20% - 8px);
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
  scroll-snap-align: start;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section {
  background: var(--bg-light);
  padding: 52px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .65rem;
  padding: 0 1.5rem;
  border-right: 1px solid var(--border);
}
.benefit-item:first-child { padding-left: 0; }
.benefit-item:last-child  { border-right: none; padding-right: 0; }
.benefit-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-item h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--dark);
  line-height: 1.2;
}
.benefit-item p {
  font-size: .78rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.cat-hero {
  background: var(--cream);
  padding: calc(72px + 56px) 0 56px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-size: .78rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-mid); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-soft); }
.breadcrumb .current { color: var(--dark); }

.cat-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.cat-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.cat-intro {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 720px;
  line-height: 1.75;
}

.subprod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.subprod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.subprod-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.subprod-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.subprod-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.subprod-card:hover .subprod-card-img img { transform: scale(1.06); }

.subprod-card-num {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .35rem .6rem;
  border-radius: 4px;
  font-family: var(--font-body);
  z-index: 2;
}

.subprod-card-body {
  padding: 1.5rem 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.subprod-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: .65rem;
  color: var(--dark);
  line-height: 1.25;
}
.subprod-card-body > p {
  color: var(--text-mid);
  font-size: .85rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.subprod-card-body ul {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.subprod-card-body li {
  font-size: .78rem;
  color: var(--text-mid);
  padding-left: .85rem;
  position: relative;
  line-height: 1.55;
}
.subprod-card-body li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.subprod-link {
  margin-top: auto;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--trans), gap var(--trans);
  cursor: pointer;
}
.subprod-link:hover { color: var(--gold); gap: .65rem; }
.subprod-link svg { width: 14px; height: 14px; }

.subprod-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Variant cards — product-level pages (e.g. timber-veneer-panels) ── */
.variant-card {
  border-top: 3px solid var(--gold);
  background: #faf9f6;
}
.variant-card .subprod-card-num {
  background: var(--dark);
  color: var(--gold);
}
.variant-card .subprod-card-body ul {
  border-bottom: none;
  margin-bottom: .85rem;
  padding-bottom: 0;
}
.variant-card .subprod-link {
  background: var(--gold);
  color: var(--white);
  padding: .55rem 1.1rem;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  justify-content: center;
  width: 100%;
  transition: background var(--trans), transform var(--trans);
}
.variant-card .subprod-link:hover {
  background: var(--dark);
  color: var(--white);
  gap: .4rem;
  transform: translateY(-1px);
}
.variant-card .subprod-link svg { width: 13px; height: 13px; }

@media (max-width: 1200px) {
  .subprod-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .subprod-grid { grid-template-columns: repeat(2, 1fr); }
  .subprod-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cat-hero { padding: calc(72px + 32px) 0 36px; }
  .subprod-grid { gap: 1.25rem; }
}
@media (max-width: 600px) {
  .subprod-grid { grid-template-columns: 1fr; }
  .subprod-grid--4 { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCT DETAIL MODAL
   ============================================================ */
.prod-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}
.prod-modal-overlay.open { opacity: 1; pointer-events: all; }
.prod-modal {
  background: var(--white);
  border-radius: 14px;
  width: min(1080px, 100%);
  max-height: 92vh;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.prod-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--dark);
  transition: background var(--trans);
}
.prod-modal-close svg { width: 18px; height: 18px; }
.prod-modal-close:hover { background: var(--white); }

.prod-modal-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  max-height: 92vh;
  overflow: hidden;
}
.prod-gallery {
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.prod-gallery-main {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-light);
}
.prod-gallery-main img,
.prod-gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prod-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
}
.prod-thumb {
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  position: relative;
  transition: border-color var(--trans);
}
.prod-thumb.active { border-color: var(--gold); }
.prod-thumb:hover { border-color: var(--gold); }
.prod-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.prod-thumb-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.prod-thumb-video::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-30%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  z-index: 2;
}

.prod-details {
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.prod-eyebrow {
  font-size: .68rem;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .5rem;
}
.prod-modal h2 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.prod-desc {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.prod-section { margin-bottom: 1.5rem; }
.prod-section h4 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.prod-section ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.prod-section li {
  font-size: .82rem;
  color: var(--text-mid);
  padding-left: .9rem;
  position: relative;
  line-height: 1.55;
}
.prod-section li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.prod-section dl {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: .55rem 1rem;
}
.prod-section dt {
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
}
.prod-section dd {
  font-size: .8rem;
  color: var(--text-mid);
}

.prod-form-wrap { margin-top: .25rem; }
.prod-form-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.prod-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .5rem;
}
.btn-text {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  padding: .5rem 0;
  transition: color var(--trans);
}
.btn-text:hover { color: var(--dark); }

@media (max-width: 768px) {
  .prod-modal-grid {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .prod-gallery-main { aspect-ratio: 16/10; }
  .prod-details { padding: 1.5rem; }
  .prod-modal h2 { font-size: 1.5rem; }
  .prod-section dl { grid-template-columns: 40% 1fr; }
}

/* ============================================================
   CTA NEW
   ============================================================ */
.cta-new {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 0 clamp(1rem, 3vw, 3rem) 56px;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, .80);
}
.cta-new-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  padding: 48px 0;
}
.cta-small {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.cta-big {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-big em {
  font-style: italic;
  color: var(--white);
}
.cta-desc {
  color: #b0a89e;
  font-size: .9rem;
  margin-bottom: 1.75rem;
  max-width: 400px;
  line-height: 1.7;
}
/* 4 features in a single row with dividers */
.cta-new-feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}
.cta-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
  padding: 0 1.25rem;
  border-left: 1px solid rgba(255,255,255,.12);
}
.cta-feat:first-child {
  border-left: none;
  padding-left: 0;
}
.cta-feat-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.cta-feat-icon svg { width: 20px; height: 20px; }
.cta-feat p {
  font-size: .8rem;
  color: #9a9288;
  line-height: 1.5;
}
.cta-feat strong { color: var(--white); display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .services-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-grid     { grid-template-columns: repeat(3, 1fr); }
  .solutions-grid  { grid-template-columns: repeat(3, 1fr); }
  .styles-grid     { grid-template-columns: repeat(2, 1fr); }

  .svc-grid        { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid   { grid-template-columns: repeat(3, 1fr); }
  .cta-new-inner   { grid-template-columns: 1fr; gap: 2rem; padding: 44px 0; }
  .cta-new-feats   { grid-template-columns: repeat(4, 1fr); }
  .cta-desc        { max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 36px 0; }

  .steps-grid       { grid-template-columns: repeat(2, 1fr); }
  .step-card::after { display: none; }
  .hotel-types-grid { grid-template-columns: repeat(3, 1fr); }
  .solutions-grid   { grid-template-columns: repeat(2, 1fr); }
  .projects-grid    { grid-template-columns: repeat(2, 1fr); }
  .styles-grid      { grid-template-columns: repeat(2, 1fr); }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; }
  .cta-btn   { display: flex; justify-content: center; }

  .projects-header { flex-direction: column; align-items: flex-start; }

  .footer-grid  { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  .svc-grid        { grid-template-columns: repeat(2, 1fr); }
  .gallery-item    { flex: 0 0 60vw; height: 220px; }
  .benefits-grid   { grid-template-columns: repeat(3, 1fr); }
  .benefit-item { padding: 0 1rem 1.5rem; border-right: none; border-bottom: 1px solid var(--border); }
  .benefit-item:first-child { padding-left: 1rem; }
  .benefit-item:last-child  { border-bottom: none; }
  .benefit-item:nth-child(3n) { border-right: none; }
  .benefit-item:nth-child(3n+1) { padding-left: 0; }
  .benefit-item:nth-child(3n+3) { padding-right: 0; }
  .cta-new         { margin: 0 .75rem 40px; border-radius: 10px; }
  .cta-new-feats   { grid-template-columns: repeat(2, 1fr); }
  .cta-feat        { padding: .75rem 1rem 0; }
  .cta-feat:nth-child(2n+1) { border-left: none; padding-left: 0; }
  .cta-feat:nth-child(n+3)  { border-top: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 480px) {
  .steps-grid       { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .solutions-grid   { grid-template-columns: repeat(2, 1fr); }
  .projects-grid    { grid-template-columns: 1fr; }
  .styles-grid      { grid-template-columns: 1fr; }
  .hotel-types-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr; }
  .hero-features    { grid-template-columns: repeat(2, 1fr); }
  .hero-btns        { flex-direction: column; }
  .form-row         { grid-template-columns: 1fr; }
  .modal            { padding: 1.75rem 1.25rem; }

  .svc-grid         { grid-template-columns: 1fr; }
  .gallery-item     { flex: 0 0 75vw; height: 200px; }
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .cta-new-feats    { grid-template-columns: repeat(2, 1fr); }
  .cta-big          { font-size: 2.5rem; }
}

/* ── Product detail page ─────────────────────────────────────── */
.prod-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.prod-page-gallery {
  position: sticky;
  top: 100px;
}

.prod-page-main {
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4/3;
}

.prod-page-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .3s;
}

.prod-page-thumbs {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.prod-page-thumb {
  width: 72px; height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color .2s;
}

.prod-page-thumb.active,
.prod-page-thumb:hover {
  border-color: var(--gold);
}

.prod-page-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.prod-page-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.prod-page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin: 0;
}

.prod-page-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

.prod-page-section h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .875rem;
}

.prod-page-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.prod-page-features li {
  padding-left: 1.25rem;
  position: relative;
  font-size: .9375rem;
  color: #444;
  line-height: 1.5;
}

.prod-page-features li::before {
  content: '';
  position: absolute;
  left: 0; top: .6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.prod-page-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5rem 1.5rem;
  margin: 0;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: 10px;
}

.prod-page-specs dt {
  font-size: .8125rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}

.prod-page-specs dd {
  font-size: .9375rem;
  color: var(--dark);
  margin: 0;
}

@media (max-width: 900px) {
  .prod-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .prod-page-gallery { position: static; }
}
