/* ─── HERO ─── */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 1.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(196,154,108,0.035) 60px,
    rgba(196,154,108,0.035) 61px
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 720px;
  animation: heroFadeUp 0.9s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.82;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 2.4rem;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 13px 2rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.35);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.06);
}

/* ─── HIGHLIGHTS BAR ─── */
.highlights-bar {
  background: var(--accent);
  padding: 1.4rem 1.5rem;
}

.highlights-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.highlight-icon { font-size: 1.1rem; }

.highlight-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ─── INTRO ─── */
.intro {
  padding: 6rem 1.5rem;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}


.intro-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 1rem;
}

.link-arrow {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: letter-spacing 0.2s;
}

.link-arrow:hover { letter-spacing: 1px; }

/* ─── MODELS ─── */
.models {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 1.5rem;
}

.models-inner { max-width: 1000px; margin: 0 auto; }

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.model-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30,27,22,0.1);
}

.model-card.featured {
  border-color: var(--accent-light);
  border-width: 2px;
}

.model-img {
  position: relative;
  height: 200px;
}

.model-img .img-placeholder {
  height: 100%;
  border-radius: 0;
}

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

.model-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
}

.model-tag.popular {
  background: #3a6b3a;
}

.model-body { padding: 1.5rem; }

.model-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.model-body > p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.model-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.spec { display: flex; flex-direction: column; gap: 2px; }

.spec-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
}

.spec-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.btn-card {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 11px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: background 0.2s;
}

.btn-card:hover { background: #5e4429; }

/* ─── FEATURES ─── */
.features {
  background: var(--dark);
  padding: 5.5rem 1.5rem;
}

.features-inner { max-width: 1000px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  transition: background 0.2s;
}

.feature-item:hover {
  background: rgba(255,255,255,0.07);
}

.feature-icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }

.feature-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

/* ─── ADD-ONS ─── */
.addons {
  padding: 5.5rem 1.5rem;
}

.addons-inner {
  max-width: 700px;
  margin: 0 auto;
}

.addons-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.addons-grid {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.addon-row:last-child { border-bottom: none; }
.addon-row:hover { background: var(--bg); }

.addon-name {
  font-size: 15px;
  color: var(--text);
}

.addon-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 1rem;
}

.addons-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* ─── PROCESS ─── */
.process {
  background: var(--accent);
  padding: 5.5rem 1.5rem;
}

.process-inner { max-width: 1000px; margin: 0 auto; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: white;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

.process-arrow {
  color: rgba(255,255,255,0.35);
  font-size: 1.4rem;
  padding-top: 1rem;
  flex-shrink: 0;
}

/* ─── FAQ ─── */
.faq {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5.5rem 1.5rem;
}

.faq-inner { max-width: 720px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 1.2rem 0;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.2rem;
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--dark);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-banner-inner { max-width: 600px; margin: 0 auto; }

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.8rem;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ─── GALLERY BUTTON ─── */
.btn-gallery {
  background: var(--dark);
  color: white;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.4px;
}

.btn-gallery:hover { background: #3a3530; }

/* ─── GALLERY LIGHTBOX ─── */
.gallery-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease;
}

.gallery-overlay.open { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gallery-modal {
  background: var(--surface);
  border-radius: 16px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.25s ease;
}

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

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
  border-radius: 16px 16px 0 0;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.gallery-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}

.gallery-close:hover { color: var(--text); }

.gallery-main {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.5rem;
  background: var(--dark);
}

.gallery-img-wrap {
  flex: 1;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  background: #2e2a22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  border-radius: 8px;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.gallery-nav {
  background: rgba(255,255,255,0.08);
  border: none;
  color: white;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
}

.gallery-nav:hover { background: rgba(255,255,255,0.18); }

.gallery-caption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 0.8rem 1.5rem 0;
  min-height: 2rem;
  font-style: italic;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 1rem 1.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
  border-radius: 6px;
  border: 2px solid transparent;
  background: var(--border);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--muted);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover { border-color: var(--accent-light); }
.gallery-thumb.active { border-color: var(--accent); }

.gallery-footer {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .models-grid, .features-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .highlights-inner { flex-wrap: wrap; gap: 1rem; }
  .highlight-divider { display: none; }
  .highlight-item { flex: 0 0 45%; }
  .hero h1 { font-size: 2.2rem; }
}



@media (max-width: 640px) {
  .gallery-modal {
    max-height: 95vh;
    border-radius: 12px;
  }

  .gallery-main {
    padding: 0.8rem 0.4rem;
  }

  .gallery-img-wrap {
    aspect-ratio: 4/3; /* taller ratio gives more image height on mobile */
  }

  .gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    margin: 0 2px;
  }

  .gallery-thumbs {
    padding: 0.6rem 1rem;
  }

  .gallery-thumb {
    width: 56px;
    height: 42px;
  }
}