/* ============================================================
   JO BUILDER'S CHOICE — GLOBAL STYLES v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --ink:       #0d1b18;
  --ink-mid:   #3a4e4a;
  --ink-light: #7a9490;
  --cream:     #f8f5f0;
  --white:     #ffffff;
  --accent:    #c8a96e;
  --border:    #e2ddd7;
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Jost', system-ui, sans-serif;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --promo-h:   36px;
  --nav-h:     64px;
  --header-h:  calc(var(--promo-h) + var(--nav-h));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px){ .wrap { padding: 0 24px; } }

.eyebrow {
  display: block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 16px;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.01em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--ink-mid); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 13px 30px;
  border: 1px solid currentColor;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s;
  white-space: nowrap; cursor: pointer; background: none;
}
.btn-dark    { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-dark:hover  { background: #1e3530; border-color: #1e3530; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-ghost   { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-accent  { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn-accent:hover { background: #b8944e; border-color: #b8944e; }
.btn .arrow  { font-size: 14px; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

/* ============================================================
   STICKY SITE HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
}

/* PROMO BAR */
.promo-bar {
  background: var(--ink); color: rgba(255,255,255,0.72);
  text-align: center; font-size: 11px;
  letter-spacing: 0.13em; text-transform: uppercase;
  height: var(--promo-h);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 0 16px;
}
.promo-bar strong { color: var(--accent); font-weight: 600; }

/* NAV */
.site-nav {
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: background 0.4s var(--ease), border-color 0.4s;
}

/* hero-page: transparent nav over dark hero */
.site-header.hero-page .site-nav {
  background: linear-gradient(to bottom, rgba(10,20,18,0.6) 0%, rgba(10,20,18,0) 100%);
  border-bottom-color: transparent;
}
.site-header.hero-page .site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%; gap: 20px;
}

.nav-logo {
  font-family: var(--f-display); font-size: 1.25rem; font-weight: 400;
  letter-spacing: 0.02em; color: var(--ink); flex-shrink: 0;
  transition: color 0.3s;
}
.site-header.hero-page .site-nav:not(.scrolled) .nav-logo { color: var(--white); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-mid); transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.site-header.hero-page .site-nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.78); }
.site-header.hero-page .site-nav:not(.scrolled) .nav-links a:hover,
.site-header.hero-page .site-nav:not(.scrolled) .nav-links a.active { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }

.nav-icon-btn {
  background: none; border: none;
  color: var(--ink-mid); transition: color 0.2s;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; position: relative;
}
.nav-icon-btn:hover { color: var(--ink); }
.site-header.hero-page .site-nav:not(.scrolled) .nav-icon-btn { color: rgba(255,255,255,0.78); }
.site-header.hero-page .site-nav:not(.scrolled) .nav-icon-btn:hover { color: var(--white); }

.cart-badge {
  position: absolute; top: 5px; right: 5px;
  background: var(--accent); color: var(--ink);
  font-size: 8px; font-weight: 700;
  width: 15px; height: 15px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; letter-spacing: 0;
}

.nav-cta-btn {
  font-family: var(--f-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 20px; background: var(--ink); color: var(--white);
  border: 1px solid var(--ink); transition: background 0.3s;
  white-space: nowrap; margin-left: 8px;
}
.nav-cta-btn:hover { background: #1e3530; }
.site-header.hero-page .site-nav:not(.scrolled) .nav-cta-btn {
  background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white);
}
.site-header.hero-page .site-nav:not(.scrolled) .nav-cta-btn:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  margin-left: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s, background 0.3s;
}
.site-header.hero-page .site-nav:not(.scrolled) .hamburger span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media(max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta-btn { display: none; }
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */
.mobile-overlay {
  position: fixed; inset: 0;
  background: var(--white); z-index: 850;
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 28px) 36px 48px;
  transform: translateX(-100%);
  transition: transform 0.42s var(--ease);
  overflow-y: auto;
}
.mobile-overlay.open { transform: translateX(0); }

.mobile-overlay nav { display: flex; flex-direction: column; }
.mobile-overlay nav a {
  font-family: var(--f-display); font-size: 2.2rem; font-weight: 300;
  color: var(--ink); padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s, padding-left 0.25s;
}
.mobile-overlay nav a::after { content: '→'; font-family: var(--f-body); font-size: 1rem; color: var(--ink-light); }
.mobile-overlay nav a:hover { color: var(--ink-mid); padding-left: 8px; }

.mob-cta {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.mob-cta a {
  display: flex; align-items: center; justify-content: center;
  padding: 16px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; text-align: center;
}

.mob-footer {
  margin-top: auto; padding-top: 28px;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--ink-light); text-transform: uppercase;
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 880; padding: 28px 0;
  transform: translateY(-110%); opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.search-overlay.open { transform: translateY(0); opacity: 1; }

.search-inner {
  max-width: 680px; margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center; gap: 16px;
}
@media(max-width:600px){ .search-inner { padding: 0 24px; } }
.search-input {
  flex: 1; border: none;
  border-bottom: 1.5px solid var(--ink);
  padding: 10px 0;
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 300;
  color: var(--ink); background: transparent; outline: none;
}
.search-input::placeholder { color: var(--ink-light); }
.search-close-btn {
  background: none; border: none;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-light); transition: color 0.2s;
}
.search-close-btn:hover { color: var(--ink); }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay-bg {
  position: fixed; inset: 0;
  background: rgba(13,27,24,0.45);
  z-index: 1090; opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  backdrop-filter: blur(2px);
}
.cart-overlay-bg.visible { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; background: var(--white);
  z-index: 1100;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
  box-shadow: -24px 0 80px rgba(0,0,0,0.14);
}
.cart-sidebar.open { transform: translateX(0); }
@media(max-width:480px){ .cart-sidebar { width: 100%; } }

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--f-display); font-size: 1.4rem; font-weight: 400; }
.cart-close-btn {
  background: none; border: none; color: var(--ink-mid);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; transition: color 0.2s;
}
.cart-close-btn:hover { color: var(--ink); }

.cart-body {
  flex: 1; overflow-y: auto; padding: 24px 28px;
  display: flex; flex-direction: column; gap: 0;
}

.cart-item {
  display: grid; grid-template-columns: 68px 1fr auto;
  gap: 14px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 68px; height: 68px; background: var(--cream);
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--f-display); font-size: 1rem; font-weight: 400; margin-bottom: 4px; }
.cart-item-sub  { font-size: 11px; color: var(--ink-light); letter-spacing: 0.05em; }
.cart-remove {
  background: none; border: none; color: var(--ink-light);
  font-size: 18px; line-height: 1; transition: color 0.2s; padding: 4px;
}
.cart-remove:hover { color: var(--ink); }

.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; color: var(--ink-light); text-align: center; padding: 40px;
}
.cart-empty-icon { font-size: 3rem; opacity: 0.35; }
.cart-empty p { font-size: 13px; line-height: 1.75; }

.cart-footer {
  padding: 22px 28px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.cart-note {
  font-size: 11px; color: var(--ink-light);
  text-align: center; letter-spacing: 0.04em; line-height: 1.65;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 52px; height: 52px; z-index: 800;
  background: var(--white); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.3s;
  pointer-events: none; cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { box-shadow: 0 8px 36px rgba(0,0,0,0.2); }

.back-to-top .progress-ring {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.ring-bg  { fill: none; stroke: var(--border); stroke-width: 2.5; }
.ring-fill {
  fill: none; stroke: var(--accent); stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 138.23;   /* 2π × 22 */
  stroke-dashoffset: 138.23;
  transition: stroke-dashoffset 0.1s linear;
}
.btt-arrow {
  position: relative; z-index: 1; font-size: 14px;
  color: var(--ink); line-height: 1;
  transition: transform 0.3s var(--ease);
}
.back-to-top:hover .btt-arrow { transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,18,0.88) 0%, rgba(10,20,18,0.38) 45%, rgba(10,20,18,0.12) 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: 96px; width: 100%; }
.hero-content .wrap { display: flex; flex-direction: column; gap: 24px; }

.hero-tag {
  display: inline-block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent); padding: 6px 14px;
  opacity: 0; animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-heading {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.08; color: var(--white); max-width: 720px;
  opacity: 0; animation: fadeUp 0.9s 0.5s var(--ease) forwards;
}
.hero-heading em { font-style: italic; }
.hero-sub {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.72); max-width: 420px;
  opacity: 0; animation: fadeUp 0.8s 0.7s var(--ease) forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.9s var(--ease) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-scroll-hint {
  position: absolute; bottom: 36px; right: 48px;
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; z-index: 2;
  opacity: 0; animation: fadeUp 0.8s 1.2s var(--ease) forwards;
}
.hero-scroll-hint::before { content: ''; display: block; width: 40px; height: 1px; background: rgba(255,255,255,0.3); }
.hero-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer;
  transition: background 0.3s, border-color 0.3s; padding: 0;
}
.hero-dot.active { background: var(--white); border-color: var(--white); }
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: none; border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.slide-arrow:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.slide-arrow.prev { left: 48px; }
.slide-arrow.next { right: 48px; }
@media(max-width:600px){ .slide-arrow.prev { left:16px; } .slide-arrow.next { right:16px; } }

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--border); }
.intro-strip-item { padding: 36px 28px; border-right: 1px solid var(--border); display: flex; align-items: flex-start; gap: 16px; }
.intro-strip-item:last-child { border-right: none; }
.strip-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.strip-label { font-size: 12px; font-weight: 500; margin-bottom: 3px; }
.strip-desc  { font-size: 12px; color: var(--ink-light); }
@media(max-width:700px){ .intro-strip { grid-template-columns:1fr; } .intro-strip-item { border-right:none; border-bottom:1px solid var(--border); } .intro-strip-item:last-child { border-bottom:none; } }

/* ============================================================
   BRAND STATEMENT
   ============================================================ */
.brand-statement { padding: 112px 0; }
.brand-statement .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
@media(max-width:768px){ .brand-statement .wrap { grid-template-columns:1fr; gap:48px; } }
.statement-text .quote { font-family: var(--f-display); font-size: clamp(1.6rem,3vw,2.5rem); font-weight: 300; line-height: 1.35; margin-bottom: 28px; }
.statement-text .quote em { font-style: italic; color: var(--ink-mid); }
.statement-text p { font-size: 14px; color: var(--ink-mid); line-height: 1.9; margin-bottom: 28px; }
.statement-image { position: relative; height: 480px; overflow: hidden; background: var(--cream); }
.statement-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PRODUCTS PREVIEW
   ============================================================ */
.products-preview { padding: 80px 0 120px; background: var(--cream); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
@media(max-width:600px){ .section-head { flex-direction:column; align-items:flex-start; gap:20px; } }

.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
@media(max-width:900px){ .product-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:500px){ .product-grid { grid-template-columns:1fr; } }

.product-card { background: var(--white); transition: opacity 0.3s; overflow: hidden; cursor: pointer; position: relative; }
.product-card:hover { opacity: 0.93; }
.product-card:hover .prod-img-inner { transform: scale(1.04); }
.prod-img-wrap { height: 260px; overflow: hidden; background: var(--cream); position: relative; }
.prod-img-inner { width: 100%; height: 100%; transition: transform 0.6s var(--ease); overflow: hidden; }
.prod-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.prod-badge { position: absolute; top: 14px; left: 14px; background: var(--ink); color: var(--white); font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 10px; }
.prod-badge.accent { background: var(--accent); color: var(--ink); }
.prod-info { padding: 20px 22px 26px; }
.prod-brand { font-size: 10px; color: var(--ink-light); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 5px; }
.prod-name  { font-family: var(--f-display); font-size: 1.15rem; font-weight: 400; margin-bottom: 4px; }
.prod-grade { font-size: 11px; color: var(--ink-light); margin-bottom: 14px; }
.prod-cta   { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mid); transition: color 0.2s; }
.product-card:hover .prod-cta { color: var(--ink); }

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services-strip { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 64px; }
@media(max-width:900px){ .services-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:500px){ .services-grid { grid-template-columns:1fr; } }
.service-item { padding: 36px 28px; border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s var(--ease); }
.service-item:hover { border-color: var(--ink-mid); transform: translateY(-4px); }
.svc-num { font-family: var(--f-display); font-size: 2rem; font-weight: 300; color: var(--border); margin-bottom: 20px; }
.svc-title { font-size: 13px; font-weight: 500; margin-bottom: 10px; }
.svc-desc  { font-size: 12px; color: var(--ink-light); line-height: 1.8; }

/* ============================================================
   DELIVERY BAND
   ============================================================ */
.delivery-band { background: var(--ink); padding: 96px 0; text-align: center; }
.delivery-band .section-title { color: var(--white); margin-bottom: 20px; }
.delivery-band .section-title em { color: var(--accent); }
.delivery-band p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 520px; margin: 0 auto 40px; line-height: 1.9; }

/* ============================================================
   LOCATION
   ============================================================ */
.location-section { padding: 100px 0; }
.location-section .wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
@media(max-width:768px){ .location-section .wrap { grid-template-columns:1fr; gap:48px; } }
.location-text h2 { font-family: var(--f-display); font-size: clamp(2rem,4vw,3rem); font-weight: 300; margin-bottom: 24px; font-style: italic; }
.location-text address { font-style: normal; font-size: 14px; color: var(--ink-mid); line-height: 2.1; margin-bottom: 32px; }
.location-text address strong { color: var(--ink); display: block; margin-bottom: 4px; }
.reg-num { display: inline-block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); border-top: 1px solid var(--border); padding-top: 14px; margin-top: 14px; }
.map-frame { height: 400px; overflow: hidden; position: relative; }
.map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.25) contrast(1.05); }
.map-overlay-label { position: absolute; bottom: 0; left: 0; right: 0; background: var(--white); padding: 13px 20px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mid); display: flex; align-items: center; gap: 10px; }
.map-overlay-label::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 56px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: var(--f-display); font-size: clamp(2.5rem,6vw,5rem); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.page-hero p { font-size: 14px; color: var(--ink-mid); max-width: 460px; line-height: 1.85; }

/* ============================================================
   PRODUCTS PAGE — CATEGORY TABS
   ============================================================ */
.cat-filters { display: flex; gap: 0; border-bottom: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.cat-filters::-webkit-scrollbar { display: none; }
.cat-btn {
  background: none; border: none; font-family: var(--f-body);
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-light); padding: 20px 26px; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.cat-btn:hover { color: var(--ink); }
.cat-btn.active { color: var(--ink); border-bottom-color: var(--ink); }

/* Products grid */
.products-full { padding: 64px 0 120px; }
.product-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
@media(max-width:900px){ .product-full-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:500px){ .product-full-grid { grid-template-columns:1fr; } }

.pfcard {
  background: var(--white); border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.pfcard:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.07); transform: translateY(-4px); }
.pfcard.hidden { display: none; }

.pfcard-img { height: 200px; overflow: hidden; position: relative; background: var(--cream); }
.pfcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pfcard:hover .pfcard-img img { transform: scale(1.05); }
.pfcard-badge { position: absolute; top: 12px; left: 12px; font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; }
.pfcard-badge.dark { background: var(--ink); color: var(--white); }
.pfcard-badge.gold { background: var(--accent); color: var(--ink); }

.pfcard-body { padding: 24px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.pfcard-brand { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 5px; }
.pfcard-name  { font-family: var(--f-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 4px; }
.pfcard-grade { font-size: 11px; color: var(--ink-light); margin-bottom: 10px; }
.pfcard-desc  { font-size: 12px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 20px; flex: 1; }
.pfcard-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.pfcard-price { font-size: 11px; font-weight: 500; color: var(--ink); }
.pfcard-link  { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mid); transition: color 0.2s; }
.pfcard:hover .pfcard-link { color: var(--ink); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full { padding: 80px 0 120px; }
.service-full-item { display: grid; grid-template-columns: 72px 1fr; gap: 40px; padding: 52px 0; border-bottom: 1px solid var(--border); align-items: start; }
.service-full-item:first-child { border-top: 1px solid var(--border); }
.sfx-num { font-family: var(--f-display); font-size: 3rem; font-weight: 300; color: var(--border); line-height: 1; }
.sfx-body h3 { font-family: var(--f-display); font-size: 1.8rem; font-weight: 300; margin-bottom: 12px; }
.sfx-body p { font-size: 14px; color: var(--ink-mid); line-height: 1.9; max-width: 560px; }

/* ============================================================
   ORDER PAGE
   ============================================================ */
.order-page-wrap { padding-top: calc(var(--header-h) + 56px); }
.order-layout { padding: 56px 0 120px; display: grid; grid-template-columns: 1fr 1.55fr; gap: 88px; align-items: start; }
@media(max-width:900px){ .order-layout { grid-template-columns:1fr; gap:48px; } }
.order-sidebar h2 { font-family: var(--f-display); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
.order-sidebar h2 em { font-style: italic; }
.order-sidebar > p { font-size: 14px; color: var(--ink-mid); line-height: 1.9; margin-bottom: 36px; }
.order-guarantees { display: flex; flex-direction: column; gap: 14px; }
.guarantee-item { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--ink-mid); }
.g-icon { width: 30px; height: 30px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; }
.order-form-wrap { background: var(--cream); padding: 44px; }
@media(max-width:600px){ .order-form-wrap { padding: 28px 20px; } }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:500px){ .form-row { grid-template-columns:1fr; } }
label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 8px; }
input, select, textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); background: var(--white); font-family: var(--f-body); font-size: 14px; font-weight: 300; color: var(--ink); transition: border-color 0.2s; appearance: none; -webkit-appearance: none; border-radius: 0; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
input::placeholder, textarea::placeholder { color: var(--ink-light); }
select { 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='%237a9490' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
textarea { resize: vertical; min-height: 96px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { padding: 64px 0 120px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 88px; align-items: start; }
@media(max-width:768px){ .contact-layout { grid-template-columns:1fr; gap:48px; } }
.contact-info h2 { font-family: var(--f-display); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 300; margin-bottom: 32px; }
.contact-block { padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-block:first-of-type { border-top: 1px solid var(--border); }
.contact-block h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 8px; }
.contact-block p, .contact-block a { font-size: 14px; color: var(--ink-mid); line-height: 1.8; }
.contact-block a:hover { color: var(--ink); }
.contact-map { height: 480px; }
.contact-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.2); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
@media(max-width:768px){ .footer-grid { grid-template-columns:1fr 1fr; gap:32px; } }
@media(max-width:480px){ .footer-grid { grid-template-columns:1fr; } }
.footer-brand .logo-mark { font-family: var(--f-display); font-size: 1.4rem; color: var(--white); display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.85; max-width: 220px; }
.footer-col h5 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.62); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col p { font-size: 13px; line-height: 1.9; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 11px; flex-wrap: wrap; gap: 12px; }
.footer-bottom .rc { color: rgba(255,255,255,0.26); letter-spacing: 0.1em; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }
/* ============================================================
   ENHANCED ANIMATIONS & NEW SECTIONS
   ============================================================ */

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--cream);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media(max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}
.stat-item {
  padding: 32px;
  background: var(--white);
  border-radius: 8px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.stat-number {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: 8px;
  display: block;
}

/* Product Slider */
.product-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
}
.product-slider::-webkit-scrollbar {
  display: none;
}
.product-slider .product-card {
  min-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.slider-arrow {
  background: var(--white);
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: var(--ink);
  font-size: 18px;
  flex-shrink: 0;
}
.slider-arrow:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
@media(max-width: 768px) {
  .slider-arrow { display: none; }
  .product-slider { gap: 16px; }
}

/* Brands Slider */
.brands-slider-section {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}
.brands-slider-container {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}
.brands-track {
  display: flex;
  gap: 48px;
  animation: scrollBrands 25s linear infinite;
  width: fit-content;
}
.brands-track:hover {
  animation-play-state: paused;
}
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo {
  text-align: center;
  min-width: 120px;
}
.brand-logo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 2px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.brand-logo:hover img {
  transform: scale(1.05);
  border-color: var(--accent);
}
.brand-logo span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--cream);
}
.testimonial-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
}
.testimonial-slider::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  min-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  padding: 36px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonial-card i {
  font-size: 28px;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 20px;
  display: block;
}
.testimonial-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--ink-light);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media(max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-image img {
  transform: scale(1.05);
}
.blog-content {
  padding: 24px;
}
.blog-date {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.blog-content h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-content p {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.blog-link:hover {
  color: var(--accent);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--ink);
  text-align: center;
}
.cta-content h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content h2 em {
  font-style: italic;
  color: var(--accent);
}
.cta-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-phone, .footer-email {
  margin-top: 12px;
  font-size: 12px;
}
.footer-phone i, .footer-email i {
  margin-right: 8px;
  color: var(--accent);
}

/* Enhanced animations */
.animate-item {
  opacity: 0;
  transform: translateY(30px);
}
.hero-slide.active .animate-item {
  animation: fadeUp 0.8s forwards;
}
.hero-slide.active .hero-tag { animation-delay: 0.2s; }
.hero-slide.active .hero-heading { animation-delay: 0.4s; }
.hero-slide.active .hero-sub { animation-delay: 0.6s; }
.hero-slide.active .hero-actions { animation-delay: 0.8s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}