/*
Theme Name: TentPergola
Theme URI: https://tentpergola.com
Author: Prime Awning
Description: TentPergola / Prime Awning custom theme - bioclimatic pergola & awning export site. Converted from static HTML.
Version: 1.0
Text Domain: tentpergola
*/

/* ============================================================
   TENTPERGOLA.COM — MASTER DESIGN SYSTEM
   Premium Outdoor Shading Systems — Export Worldwide
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --ivory:      #F7F4EF;
  --ivory-dark: #EDE9E1;
  --sand:       #E3DDD3;
  --warm:       #C9B99A;
  --accent:     #8B6914;
  --gold:       #C6922A;
  --gold-light: #D4A843;
  --gold-pale:  rgba(198,146,42,0.12);
  --charcoal:   #1A1A18;
  --charcoal-2: #242422;
  --charcoal-3: #2E2E2C;
  --mid:        #4A4948;
  --soft:       #7A7670;
  --muted:      #A09B95;
  --white:      #FFFFFF;
  --border:     rgba(139,105,20,0.15);
  --border-dark:rgba(255,255,255,0.08);
  --shadow-sm:  0 2px 12px rgba(26,26,24,0.06);
  --shadow-md:  0 8px 32px rgba(26,26,24,0.10);
  --shadow-lg:  0 20px 60px rgba(26,26,24,0.14);
  --ff-head:    'Cormorant Garamond', 'Times New Roman', serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --ff-mono:    'DM Mono', monospace;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h:      80px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY SCALE ── */
h1 { font-family: var(--ff-head); font-weight: 300; font-size: clamp(3rem, 6vw, 6rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 {
    font-family: var(--ff-head);
    font-weight: 300;
    font-size: clamp(2.2rem, 2vw, 4rem);
    line-height: 2.1;
    letter-spacing: -0.015em;
}
h3 { font-family: var(--ff-head); font-weight: 400; font-size: clamp(1.5rem, 2.5vw, 2.2rem); line-height: 1.2; }
h4 { font-family: var(--ff-head); font-weight: 400; font-size: 1.25rem; line-height: 1.3; }
h5 { font-family: var(--ff-body); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; }
p { color: var(--mid); font-size: 0.97rem; line-height: 1.8; font-weight: 300; }
em { font-style: italic; color: inherit; }
strong { font-weight: 500; color: var(--charcoal); }

/* ── EYEBROW / LABEL ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--ff-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.eyebrow--no-line::before { display: none; }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 7rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 10rem 0; }
.section--dark { background: var(--charcoal); }
.section--charcoal2 { background: var(--charcoal-2); }
.section--sand { background: var(--sand); }
.section--ivory-dark { background: var(--ivory-dark); }
.section--white { background: var(--white); }
.text-center { text-align: center; }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center p { max-width: 580px; margin: 1rem auto 0; }
.section-header h2 { margin-top: 0.8rem; }
.section-header p { margin-top: 1rem; font-size: 1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.9rem 2.4rem; font-family: var(--ff-body); font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid currentColor; transition: all 0.35s var(--ease);
  position: relative; overflow: hidden; background: transparent; cursor: pointer;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: currentColor; opacity: 0; transform: scaleX(0);
  transform-origin: left; transition: transform 0.35s var(--ease), opacity 0.35s;
}
.btn:hover::after { transform: scaleX(1); opacity: 0.08; }
.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; flex-shrink: 0; }
.btn--primary { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(198,146,42,0.35); }
.btn--primary::after { display: none; }
.btn--outline-dark { color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline-dark:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn--outline-light { color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--outline-light:hover { background: var(--white); color: var(--charcoal); }
.btn--ghost-gold { color: var(--gold); border-color: var(--gold); }
.btn--ghost-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 3rem; font-size: 0.8rem; }
.btn--sm { padding: 0.65rem 1.6rem; font-size: 0.7rem; }
.btn-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: border-color 0.3s, gap 0.3s;
}
.btn-arrow:hover { border-color: var(--gold); gap: 0.8rem; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background 0.45s var(--ease), box-shadow 0.45s, height 0.3s;
}
.nav.scrolled {
  background: rgba(247,244,239,0.97); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--border);
  height: 68px;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
img.nav__logo-img {
    height: 125px !important;
}
.nav__logo {
  font-family: var(--ff-head); font-size: 1.55rem; font-weight: 400;
  color: var(--white); letter-spacing: 0.04em; transition: color 0.3s; z-index: 2;
}
.nav.scrolled .nav__logo { color: var(--charcoal); }
.nav__logo .gold { color: var(--gold); }
.nav__menu { display: flex; align-items: center; gap: 0; }
.nav__item { position: relative; }
.nav__link {
  display: block; padding: 0.5rem 1.1rem; font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgb(0 0 0 / 80%);
  transition: color 0.3s; white-space: nowrap;
}
.nav.scrolled .nav__link { color: var(--mid); }
.nav__link:hover { color: var(--gold); }
.nav__link::after {
  content: ''; position: absolute; bottom: -2px; left: 1.1rem; right: 1.1rem;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--gold); }
/* Dropdown */
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all 0.3s var(--ease); z-index: 100;
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a {
  display: block; padding: 0.7rem 1.4rem; font-size: 0.82rem; color: var(--mid);
  border-bottom: 1px solid var(--border); transition: all 0.2s;
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover { background: var(--ivory); color: var(--gold); padding-left: 1.8rem; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__quote {
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.6rem 1.5rem; border: 1px solid rgba(255,255,255,0.45); color: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .nav__quote { border-color: var(--gold); color: var(--gold); }
.nav__quote:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.nav__hamburger { display: none; background: none; border: none; padding: 0.4rem; }
.hamburger-bar { display: block; width: 24px; height: 1.5px; background: var(--white); margin: 5px 0; transition: all 0.3s; }
.nav.scrolled .hamburger-bar { background: var(--charcoal); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--charcoal); z-index: 999;
  flex-direction: column; padding: 6rem 2.5rem 3rem; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  font-family: var(--ff-head); font-size: 2rem; font-weight: 300; color: var(--white);
  padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block; transition: color 0.2s;
}
.mobile-nav__link:hover { color: var(--gold); }
.mobile-nav__close {
  position: absolute; top: 1.5rem; right: 2rem; background: none; border: none;
  color: var(--white); font-size: 1.5rem; padding: 0.5rem;
}

/* ============================================================
   HERO — BASE STYLES (shared across pages)
============================================================ */
.page-hero {
  min-height: 75vh; display: flex; align-items: flex-end; padding-bottom: 6rem;
  position: relative; overflow: hidden;
}
.page-hero--tall { min-height: 90vh; }
.page-hero--short { min-height: 55vh; }
.page-hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.04); } }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,26,24,0.72) 0%, rgba(26,26,24,0.5) 50%, rgba(139,105,20,0.2) 100%);
}
.page-hero__gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, var(--ivory), transparent);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__eyebrow { margin-bottom: 1.2rem; }
.page-hero__eyebrow .eyebrow { color: var(--warm); }
.page-hero__eyebrow .eyebrow::before { background: var(--warm); }
.page-hero__title { color: var(--white); margin-bottom: 1.2rem; }
.page-hero__subtitle {
  color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 580px;
  margin-bottom: 2.5rem; line-height: 1.75;
}
.page-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb {
  background: var(--white); border-bottom: 1px solid var(--border); padding: 0.9rem 0;
}
.breadcrumb__inner { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb__link { font-size: 0.75rem; color: var(--soft); transition: color 0.2s; }
.breadcrumb__link:hover { color: var(--gold); }
.breadcrumb__sep { font-size: 0.65rem; color: var(--muted); }
.breadcrumb__current { font-size: 0.75rem; color: var(--charcoal); font-weight: 500; }

/* ============================================================
   TICKER / ANNOUNCEMENT BAR
============================================================ */
.ticker-bar {
  background: var(--charcoal-2); padding: 0.7rem 0;
  overflow: hidden; white-space: nowrap;
  margin-top: var(--nav-h); /* push below fixed nav */
}
.ticker-track {
  display: inline-flex; animation: ticker 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 1rem; padding: 0 2rem;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 1rem; padding: 1.6rem 2rem; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-item__icon {
  width: 42px; height: 42px; background: var(--gold-pale); display: flex;
  align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.trust-item__strong { display: block; font-size: 0.84rem; font-weight: 500; color: var(--charcoal); }
.trust-item__small { font-size: 0.73rem; color: var(--soft); }

/* ============================================================
   2-COLUMN SPLIT LAYOUT (detail sections)
============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split--3-5 { grid-template-columns: 3fr 5fr; }
.split--5-3 { grid-template-columns: 5fr 3fr; }
.split__visual { position: relative; }
.split__img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; background-size: cover;
  background-position: center; display: block; transition: transform 0.6s var(--ease);
}
.split__visual:hover .split__img { transform: scale(1.02); }
.split__img-wrap { overflow: hidden; }
.split__label { margin-bottom: 0.8rem; }
.split__title { margin-bottom: 1.2rem; }
.split__body { margin-bottom: 1.5rem; line-height: 1.85; }
.split__body + .split__body { margin-top: -0.5rem; }

/* ============================================================
   FEATURE LIST
============================================================ */
.feature-list { margin: 1.5rem 0 2rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.89rem; color: var(--mid); line-height: 1.6;
}
.feature-list li:first-child { border-top: 1px solid var(--border); }
.feature-list__icon { color: var(--gold); flex-shrink: 0; font-size: 0.9rem; margin-top: 0.05rem; }
.feature-list li strong { color: var(--charcoal); font-weight: 500; }

/* ============================================================
   PRODUCT CARDS GRID
============================================================ */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(139,105,20,0.12);
}
.products-grid--2 { grid-template-columns: repeat(2, 1fr); }
.products-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-card { background: var(--white); overflow: hidden; position: relative; }
.product-card__img-wrap { overflow: hidden; }
.product-card__img {
  height: 240px; background-size: cover; background-position: center;
  transition: transform 0.65s var(--ease);
}
.product-card:hover .product-card__img { transform: scale(1.06); }
.product-card__badge {
  position: absolute; top: 1.2rem; right: 1.2rem; background: var(--gold);
  color: var(--white); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.25rem 0.7rem; z-index: 1;
}
.product-card__body { padding: 1.8rem 2rem 2.2rem; }
.product-card__tag {
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem; display: block;
}
.product-card__title { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.7rem; }
.product-card__desc { font-size: 0.85rem; color: var(--soft); line-height: 1.7; margin-bottom: 1.4rem; }
.product-card--wide { grid-column: span 2; }
.product-card--wide .product-card__img { height: 340px; }
.product-card--dark { background: var(--charcoal); }
.product-card--dark .product-card__title { color: var(--white); }
.product-card--dark .product-card__desc { color: rgba(255,255,255,0.5); }

/* ============================================================
   STATS / NUMBERS
============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); }
.stat-item { padding: 3rem 2.5rem; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--ff-head); font-size: clamp(3rem, 5vw, 5rem); font-weight: 300; line-height: 1; color: var(--charcoal); }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.75rem; color: var(--soft); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.5rem; }
.stat-desc { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }

/* ============================================================
   FAQ SECTION
============================================================ */
.faq { }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0; background: none; border: none; cursor: pointer;
  text-align: left; gap: 1rem; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question span { font-size: 0.95rem; font-weight: 400; color: var(--charcoal); flex: 1; line-height: 1.4; }
.faq-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.2rem; }
.faq-answer p { font-size: 0.9rem; line-height: 1.8; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.testimonial-card { background: var(--white); padding: 2.5rem; position: relative; overflow: hidden; }
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-quote { font-family: var(--ff-head); font-size: 4rem; color: var(--gold); line-height: 0.4; margin-bottom: 0.6rem; opacity: 0.5; }
.testimonial-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9rem; line-height: 1.78; color: var(--mid); font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--charcoal); }
.testimonial-author span { font-size: 0.75rem; color: var(--soft); }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band { background: var(--charcoal); padding: 5rem 0; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(198,146,42,0.12) 0%, transparent 70%);
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band__title { font-family: var(--ff-head); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; color: var(--white); margin-bottom: 0.6rem; }
.cta-band__sub { color: rgba(255,255,255,0.55); font-size: 0.95rem; }

/* ============================================================
   CONTACT FORM
============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: span 2; }
label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); }
input, select, textarea {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--border); background: var(--ivory);
  font-family: var(--ff-body); font-size: 0.9rem; color: var(--charcoal); outline: none;
  transition: border-color 0.3s, background 0.3s; appearance: none; border-radius: 0;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--white); }
textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C6922A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-note { font-size: 0.74rem; color: var(--soft); text-align: center; margin-top: 0.8rem; }
.form-card { background: var(--white); padding: 3.5rem; border: 1px solid var(--border); }

/* ============================================================
   PRICE TABLE
============================================================ */
.price-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.price-table th, .price-table td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; color: var(--soft); background: var(--ivory-dark); }
.price-table td { font-size: 0.9rem; color: var(--mid); }
.price-table td strong { color: var(--charcoal); }
.price-table tr:hover td { background: var(--ivory); }
.price-badge { background: var(--gold); color: var(--white); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.5rem; display: inline-block; margin-left: 0.4rem; }

/* ============================================================
   EXPORT STEPS
============================================================ */
.export-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.export-step { display: flex; gap: 1.5rem; }
.export-step__num { font-family: var(--ff-head); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; flex-shrink: 0; width: 50px; }
.export-step__title { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.25rem; }
.export-step__text { font-size: 0.84rem; color: var(--soft); line-height: 1.7; }

/* ============================================================
   REGIONS / EXPORT MAP
============================================================ */
.region-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.region-chip {
  background: rgba(198,146,42,0.1); border: 1px solid rgba(198,146,42,0.3);
  padding: 0.4rem 1rem; font-size: 0.75rem; color: var(--mid);
  transition: all 0.2s; cursor: default;
}
.region-chip:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.region-chip--dark { background: rgba(198,146,42,0.08); border-color: rgba(198,146,42,0.25); color: rgba(255,255,255,0.7); }

/* ============================================================
   GALLERY / IMAGE GRID
============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-item {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  overflow: hidden; cursor: pointer; position: relative;
}
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0; background: rgba(26,26,24,0.5);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

/* ============================================================
   WHY CARDS
============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.why-card {
  background: var(--white); padding: 2.8rem 2.4rem; position: relative;
  transition: transform 0.3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); z-index: 1; box-shadow: var(--shadow-lg); }
.why-card__num {
  font-family: var(--ff-head); font-size: 3.5rem; font-weight: 300; color: rgba(198,146,42,0.18);
  line-height: 1; margin-bottom: 1rem;
}
.why-card__icon { font-size: 1.8rem; margin-bottom: 1rem; }
.why-card__title { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 400; margin-bottom: 0.7rem; }
.why-card__text { font-size: 0.87rem; color: var(--soft); line-height: 1.75; }
.why-card--dark { background: var(--charcoal); }
.why-card--dark .why-card__title { color: var(--white); }
.why-card--dark .why-card__text { color: rgba(255,255,255,0.45); }

/* ============================================================
   INFO BLOCKS (spec boxes)
============================================================ */
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); margin: 2rem 0; }
.spec-item { background: var(--ivory-dark); padding: 1.4rem 1.8rem; }
.spec-item__label { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soft); margin-bottom: 0.3rem; }
.spec-item__value { font-size: 0.95rem; color: var(--charcoal); font-weight: 400; }

/* ============================================================
   HIGHLIGHT BOX
============================================================ */
.highlight-box {
  border-left: 3px solid var(--gold); padding: 1.5rem 2rem;
  background: var(--gold-pale); margin: 2rem 0;
}
.highlight-box p { font-size: 0.9rem; line-height: 1.7; }
.highlight-box strong { color: var(--accent); }

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.wa-btn {
  position: fixed; bottom: 2rem; right: 2rem; width: 58px; height: 58px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); z-index: 998;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.15);opacity:0} }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--charcoal); padding-top: 6rem; }
.footer__top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 4rem; border-bottom: 1px solid var(--border-dark);
}
.footer__logo { font-family: var(--ff-head); font-size: 1.7rem; color: var(--white); margin-bottom: 1rem; }
.footer__logo .gold { color: var(--gold); }
.footer__tagline { font-size: 0.83rem; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.footer__contact-info { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 2; }
.footer__col h4 { font-family: var(--ff-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.3rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a { font-size: 0.85rem; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 0; flex-wrap: wrap; gap: 1rem;
}
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.22); }
.footer__langs { display: flex; gap: 0.4rem; }
.footer__lang {
  font-size: 0.68rem; padding: 0.25rem 0.55rem; border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.35); letter-spacing: 0.06em; cursor: pointer; transition: all 0.2s;
}
.footer__lang:hover, .footer__lang.active { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(0.95); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   PAGE-SPECIFIC OVERRIDES
============================================================ */
/* Prices page highlight */
.price-highlight { background: var(--charcoal); color: var(--white); padding: 0.3rem 0.7rem; font-size: 1rem; font-weight: 500; }
.price-note { font-size: 0.78rem; color: var(--soft); margin-top: 0.3rem; display: block; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .split { gap: 4rem; }
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__top > *:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
@media (max-width: 1024px) {
  :root { --nav-h: 70px; }
  h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
  h2 { font-size: clamp(2rem, 4vw, 3rem); }
  .nav__menu { display: none; }
  .nav__quote { display: none; }
  .nav__hamburger { display: block; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split--reverse { direction: ltr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .product-card--wide { grid-column: span 1; }
  .product-card--wide .product-card__img { height: 240px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > *:last-child { grid-column: auto; display: block; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 5rem 0; }
  .products-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .form-card { padding: 2rem; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 60vh; }
  .page-hero--tall { min-height: 75vh; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .region-grid { gap: 0.5rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  .btn { padding: 0.8rem 1.8rem; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ==== Homepage hero-slider specific styles (moved from inline <style>) ==== */

  /* ══════════════════════════════════════════════════════════
     HERO SLIDER
  ══════════════════════════════════════════════════════════ */
  .slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 660px;
    overflow: hidden;
    background: #0d0d0b;
  }

  /* ── Slides (background layers) ── */
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.6s cubic-bezier(.4,0,.2,1);
  }
  .slide.is-active { opacity: 1; z-index: 2; }

  .slide__bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    transform: scale(1.07);
    transition: transform 9s ease-out;
    will-change: transform;
  }
  .slide.is-active .slide__bg { transform: scale(1.00); }

  .slide__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(100deg, rgba(8,8,6,.88) 0%, rgba(8,8,6,.38) 50%, rgba(8,8,6,.12) 100%),
      linear-gradient(to top,  rgba(8,8,6,.95) 0%, rgba(8,8,6,.0)  48%);
  }

  /* Fade into page */
  .slider__fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 32%;
    background: linear-gradient(to top, #F7F4EF, transparent);
    z-index: 6;
    pointer-events: none;
  }

  /* ── Text content — always visible, animates in on load ── */
  .slider__content {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: flex;
    align-items: flex-end;
    padding-bottom: 13vh;
    pointer-events: none;
  }
  .slider__content .inner { pointer-events: auto; }

  /* One-time entrance animation on page load */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #C6922A;
    margin-bottom: 1.1rem;
    animation: fadeUp .8s ease-out .3s both;
  }
  .hero__eyebrow::before {
    content: '';
    width: 36px; height: 1px;
    background: #C6922A;
    flex-shrink: 0;
  }

  .hero__h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3rem, 6.2vw, 7rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -.028em;
    color: #fff;
    margin: 0 0 .5rem;
    max-width: 900px;
    animation: fadeUp .9s ease-out .55s both;
  }
  .hero__h1 em { color: #C6922A; font-style: italic; }
  .hero__h1 small {
    display: block;
    font-size: .55em;
    letter-spacing: .02em;
    font-style: normal;
    color: rgba(255,255,255,.7);
    margin-top: .3rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
  }

  .hero__sub {
    font-size: .95rem;
    font-weight: 300;
    color: rgba(255,255,255,.65);
    line-height: 1.82;
    max-width: 540px;
    margin: 1rem 0 2.2rem;
    animation: fadeUp .8s ease-out .8s both;
  }

  .hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .7s ease-out 1.05s both;
  }

  .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .95rem 2.1rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
  }
  .btn-hero:hover { transform: translateY(-2px); }
  .btn-hero--gold {
    background: #C6922A;
    color: #fff;
    box-shadow: 0 4px 24px rgba(198,146,42,.35);
  }
  .btn-hero--gold:hover { background: #b07d20; box-shadow: 0 8px 32px rgba(198,146,42,.5); }
  .btn-hero--ghost {
    border: 1px solid rgba(255,255,255,.32);
    color: rgba(255,255,255,.88);
  }
  .btn-hero--ghost:hover { border-color: #C6922A; color: #C6922A; }

  /* ── Slide indicators (right side) ── */
  .slider__nav {
    position: absolute;
    right: 2.6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
  }
  .slider__counter {
    writing-mode: vertical-rl;
    font-family: 'Cormorant Garamond', serif;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .1em;
    user-select: none;
  }
  .slider__counter strong { color: #fff; font-size: 1rem; font-weight: 400; }
  .slider__dots { display: flex; flex-direction: column; gap: .55rem; }
  .sdot {
    width: 2px; height: 28px;
    background: rgba(255,255,255,.18);
    border: none; padding: 0; cursor: pointer;
    position: relative; overflow: hidden;
    transition: background .3s;
  }
  .sdot::after {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 0%;
    background: #C6922A;
    transition: height .4s ease;
  }
  .sdot.is-active { background: rgba(255,255,255,.06); }
  .sdot.is-active::after { height: 100%; }
  .sdot:hover:not(.is-active) { background: rgba(255,255,255,.45); }

  /* ── Thumbnail strip ── */
  .slider__thumbs {
    position: absolute;
    bottom: 22vh; right: 2.6rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  .sthumb {
    width: 58px; height: 40px;
    background-size: cover;
    background-position: center;
    opacity: .28; cursor: pointer;
    border: 1px solid transparent;
    transition: opacity .3s, border-color .3s, transform .3s;
    flex-shrink: 0;
  }
  .sthumb.is-active { opacity: 1; border-color: #C6922A; }
  .sthumb:hover { opacity: .72; transform: scaleX(1.1); }

  /* ── Progress ── */
  .slider__progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px; width: 0%;
    background: #C6922A;
    z-index: 10;
    transition: width linear;
  }

  /* ── Scroll hint ── */
  .slider__scroll {
    position: absolute;
    bottom: 4rem; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.28);
  }
  .scroll-line {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
    animation: scrollPulse 2.2s ease-in-out infinite;
  }
  @keyframes scrollPulse { 0%,100%{opacity:.2} 50%{opacity:.9} }

  /* ── NAV LOGO ── */
  .nav__logo { display: flex; align-items: center; text-decoration: none; }
  .nav__logo-img {
    height: 44px; width: auto; display: block;
    mix-blend-mode: screen;
    filter: brightness(1.1);
    transition: filter .3s;
  }
  .nav.scrolled .nav__logo-img { mix-blend-mode: multiply; filter: brightness(.95); }

  /* ── Responsive ── */
  @media (max-width: 960px) {
    .slider__thumbs { display: none; }
    .slider__nav { right: 1.4rem; }
    .hero__h1 { font-size: clamp(2.6rem, 8vw, 4rem); }
  }
  @media (max-width: 600px) {
    .slider__nav, .slider__scroll { display: none; }
    .hero__h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
    .hero__sub { font-size: .88rem; }
    .slider { height: 100svh; }
    .slider__content { padding-bottom: 10vh; }
  }
  
/* ==== Projects gallery page specific styles (moved from inline <style>) ==== */

    .gallery-masonry {
      columns: 3;
      column-gap: 1rem;
    }
    @media (max-width: 900px) { .gallery-masonry { columns: 2; } }
    @media (max-width: 560px) { .gallery-masonry { columns: 1; } }
    .gallery-masonry figure {
      break-inside: avoid;
      margin: 0 0 1rem;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .gallery-masonry figure img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform .4s ease;
    }
    .gallery-masonry figure:hover img { transform: scale(1.04); }
    .gallery-masonry figure figcaption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,.7));
      color: rgba(255,255,255,.85);
      font-size: .75rem;
      padding: .8rem 1rem .6rem;
      opacity: 0;
      transition: opacity .3s;
    }
    .gallery-masonry figure:hover figcaption { opacity: 1; }

    /* Lightbox */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.92);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    #lightbox.active { display: flex; }
    #lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      box-shadow: 0 0 60px rgba(0,0,0,.5);
    }
    #lightbox-close {
      position: absolute;
      top: 1.2rem; right: 1.5rem;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
      background: none;
      border: none;
    }
    #lightbox-caption {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,.7);
      font-size: .8rem;
      text-align: center;
      max-width: 600px;
    }
  
/* ==== Homepage FAQ accordion (native details/summary) — moved from inline <style> ==== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  padding: 1.3rem 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 1.4rem;
  font-size: .9rem;
  color: var(--soft);
  line-height: 1.8;
}
