/* ============================================================
   MAVAS TRADE — Refined Industrial Luxury
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

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

/* ── Variables ── */
:root {
  --bg:          #F5F3EF;
  --bg-mid:      #EDEAE3;
  --bg-dark:     #1B2B3C;
  --bg-darker:   #111D28;
  --text:        #1A1918;
  --text-muted:  #706B62;
  --accent:      #C4A45A;
  --accent-dark: #A8883E;
  --white:       #FFFFFF;
  --border:      #D4D0C8;
  --border-dark: rgba(255,255,255,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0,  0.0,  0.2,  1);
  --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { max-width: 68ch; }
.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.28s var(--ease);
  position: relative;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 164, 90, 0.35);
}
.btn-outline {
  border: 1.5px solid currentColor;
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--bg-dark);
}
.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--bg-darker);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Navigation ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
#nav.transparent { background: transparent; }
#nav.solid {
  background: rgba(245, 243, 239, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
#nav.dark-solid {
  background: rgba(27, 43, 60, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 2rem;
}
.nav-logo img {
  height: 36px;
  width: auto;
  transition: filter 0.3s;
}
#nav.transparent .nav-logo img { filter: brightness(0) invert(1); }
#nav.solid .nav-logo img { filter: none; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  transition: color 0.2s;
  position: relative;
}
#nav.transparent .nav-link { color: rgba(255,255,255,0.88); }
#nav.solid .nav-link { color: var(--text-muted); }
#nav.dark-solid .nav-link { color: rgba(255,255,255,0.75); }
.nav-link:hover,
#nav.solid .nav-link:hover { color: var(--accent); }
#nav.transparent .nav-link:hover { color: var(--white); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--bg-mid);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--accent); }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: var(--bg-dark) !important;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
#nav.solid .nav-hamburger span { background: var(--text); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 3rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-sub {
  padding-left: 1.25rem;
  margin-top: 0.25rem;
  border-bottom: none !important;
}
.mobile-nav-sub a {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
}
.mobile-nav-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav-contact a {
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: none;
  color: var(--text-muted);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 29, 40, 0.82) 0%,
    rgba(27, 43, 60, 0.55) 60%,
    rgba(0,0,0,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.25rem;
  max-width: 54ch;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: var(--gutter);
  z-index: 1;
  display: flex;
  gap: 2.5rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Page hero (inner pages) */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--bg-dark);
  color: var(--white);
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}
.page-hero-inner {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.page-hero-text { align-self: center; }
.page-hero-text h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  font-weight: 300;
}
.page-hero-img {
  position: relative;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  height: 340px;
  align-self: end;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a:hover { color: var(--accent); }

/* ── Section Spacing ── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.section-mid { background: var(--bg-mid); }

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 58ch;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* Divider */
.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 1.25rem 0;
}
.divider.center { margin: 1.25rem auto; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
  position: relative;
}
.service-card:hover { background: var(--white); }
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.service-icon svg { width: 100%; height: 100%; }
.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
  transition: color 0.25s;
}
.service-card:hover .service-num { color: var(--bg-mid); }
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Products grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-mid);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1.5rem; }
.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.product-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.product-spec {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.product-spec span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-mid);
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
}

/* ── Product detail (single page) ── */
.product-detail { padding: clamp(3rem, 6vw, 5rem) 0; }
.product-detail + .product-detail { border-top: 1px solid var(--border); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.product-detail-grid.reverse { direction: rtl; }
.product-detail-grid.reverse > * { direction: ltr; }
.product-detail-img {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-mid);
}
.product-detail-img img { width: 100%; height: 360px; object-fit: contain; padding: 2rem; }
.product-detail-body h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}
.product-detail-body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
.specs-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.specs-table th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--border);
}
.specs-table td {
  padding: 0.65rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--bg-mid);
}
.specs-table td:first-child { color: var(--text-muted); width: 50%; }
.specs-table td:last-child { font-weight: 500; }

/* ── Why Us / Features ── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.why-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.why-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}
.why-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.faq-icon::before {
  content: '';
  width: 8px;
  height: 1.5px;
  background: currentColor;
  position: absolute;
  transition: transform 0.3s;
}
.faq-icon::after {
  content: '';
  width: 1.5px;
  height: 8px;
  background: currentColor;
  position: absolute;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-a-inner p + p { margin-top: 0.75rem; }

/* ── Portfolio ── */
.portfolio-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
}

.portfolio-masonry {
  columns: 3;
  column-gap: 1.25rem;
}
.portfolio-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,29,40,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-info h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}
.portfolio-item-info span {
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.2s;
  user-select: none;
}
.lightbox-nav:hover { color: var(--white); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.blog-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; line-height: 1.3; }
.blog-card h3 a { transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}
.read-more:hover { gap: 0.75rem; }
.read-more svg { width: 14px; height: 14px; }

/* Blog single post */
.post-header { padding: calc(var(--nav-h) + 3rem) 0 3rem; }
.post-meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.post-content { max-width: 720px; }
.post-content h2 { font-size: 1.75rem; margin: 2.25rem 0 1rem; }
.post-content h3 { font-size: 1.35rem; margin: 2rem 0 0.75rem; }
.post-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.975rem; }
.post-content ul { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.post-content li { font-size: 0.975rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.4rem; }
.post-content img { width: 100%; height: auto; margin: 2rem 0; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { height: 140px; }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.contact-detail-value {
  font-size: 1rem;
  line-height: 1.6;
}
.contact-detail-value a { transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--accent); }
.contact-hours { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.9rem; color: var(--text-muted); }
.contact-hours strong { color: var(--text); font-weight: 500; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--bg-dark);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,164,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); max-width: 500px; }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-top: 0.75rem; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--bg-darker);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.trust-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ── Footer ── */
footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.65);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo img { filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 30ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
}
.footer-bottom-left { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom-left a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-left a:hover { color: var(--accent); }
.footer-badges { display: flex; gap: 1rem; align-items: center; }
.footer-badges img { height: 32px; width: auto; opacity: 0.65; transition: opacity 0.2s; }
.footer-badges img:hover { opacity: 1; }

/* ── Animations / Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
}
.about-img-accent strong { font-size: 2.5rem; font-weight: 700; display: block; line-height: 1; }
.about-img-accent span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.values-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.75rem; }
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-check svg { width: 12px; height: 12px; }
.value-text h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.value-text p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { gap: 3rem; }
  .portfolio-masonry { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail-grid.reverse { direction: ltr; }
  .product-detail-img { position: static; }
  .hero-stats { display: none; }
  .hero-scroll { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .field-group { grid-template-columns: 1fr; }
  .portfolio-masonry { columns: 1; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── FAQ layout responsive ── */
@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .page-hero-inner { padding: 3rem 0 2rem; }
  .hero-content h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .post-content { max-width: 100%; }
  .specs-table td, .specs-table th { font-size: 0.8rem; }
}

/* ── Scroll offset for sticky nav ── */
:target { scroll-margin-top: calc(var(--nav-h) + 1.5rem); }

/* ── Selection ── */
::selection { background: var(--accent); color: var(--bg-dark); }

/* ── Focus ring ── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Utility ── */
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none; }
