/* =============================================
   RESET & CUSTOM PROPERTIES
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #0C0808;
  --dark-2:      #131010;
  --dark-card:   #181414;
  --cream:       #EDE8DC;
  --cream-2:     #F4F0E6;
  --cream-3:     #FAF8F3;
  --white:       #FFFFFF;
  --text:        #1C1612;
  --muted:       #726860;
  --light:       #E5DDD2;
  --muted-light: #9A918A;
  --gold:        #C4A87A;
  --wine:        #5A1010;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --gutter: 1.5rem;
  --r: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream-2);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.12;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
h4 { font-size: 1rem; font-family: var(--ff-body); font-weight: 500; }

em { font-style: italic; }
p  { color: var(--muted); line-height: 1.7; }

.container {
  width: min(var(--max-w), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.78rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn-dark {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.btn-dark:hover { background: #2C2020; }

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

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.32);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.65); color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: rgba(28,22,18,0.28);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.78rem; }

/* Nav specific */
.btn-nav-ghost {
  background: transparent;
  color: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.28);
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
}
.btn-nav-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

.btn-nav-cream {
  background: var(--cream);
  color: var(--dark);
  padding: 0.5rem 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.btn-nav-cream:hover { background: var(--white); }

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 3px;
  padding: 0.42rem 0.7rem;
  cursor: pointer;
  color: rgba(255,255,255,0.78);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, color 0.2s;
}
.lang-btn:hover,
.lang-btn[aria-expanded="true"] {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.lang-btn svg {
  transition: transform 0.2s;
}
.lang-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1A1414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  min-width: 130px;
  padding: 0.35rem 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}

.lang-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.55rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-option:hover       { background: rgba(255,255,255,0.06); color: #fff; }
.lang-option.is-active   { color: var(--gold); }

/* Mobile language pills */
.mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.mobile-lang-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 0.45rem 0.9rem;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.18s;
}
.mobile-lang-btn:hover    { color: #fff; border-color: rgba(255,255,255,0.35); }
.mobile-lang-btn.is-active {
  background: rgba(196,168,122,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(12, 8, 8, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 70px;
}

/* Brand */
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
  line-height: 1.2;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.brand-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.brand-gem {
  font-size: 0.6rem;
  color: var(--gold);
  line-height: 1;
}

.brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0 auto;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 0.86rem;
  transition: color 0.2s;
}
.site-nav a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.2s;
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.6rem 2rem;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.brand-light .brand-name,
.brand-light .brand-sub {
  color: var(--white);
}
.brand-light .brand-sub { color: rgba(255,255,255,0.4); }

.menu-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.4rem;
  transition: color 0.2s;
}
.menu-close:hover { color: #fff; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.mobile-nav a {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 9vw, 3.8rem);
  color: var(--white);
  text-decoration: none;
  line-height: 1.25;
  transition: opacity 0.2s;
}
.mobile-nav a:hover { opacity: 0.55; }

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.mobile-btn-cream {
  background: var(--cream);
  color: var(--dark);
  width: 100%;
  justify-content: center;
  padding: 1rem;
}
.mobile-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 80% at 80% 25%, #3D0E0E 0%, #200808 45%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 60% 60%, #1A0505 0%, transparent 65%);
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 10rem 0 5rem;
  position: relative;
  z-index: 1;
}

.hero-title { color: var(--white); }

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-self: flex-end;
  padding-bottom: 1.5rem;
}

.hero-desc {
  color: rgba(255,255,255,0.62);
  font-size: 1rem;
  max-width: 320px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Ticker */
.hero-ticker {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 1.4rem;
  animation: ticker 28s linear infinite;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
}

.t-dot {
  color: var(--gold);
  font-size: 0.45rem;
  align-self: center;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.33%); }
}

/* =============================================
   PRODUCT HIGHLIGHTS
   ============================================= */
.highlights {
  background: var(--dark-2);
  padding: 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.hcard {
  background: var(--dark-card);
  padding: 1.8rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  cursor: pointer;
  transition: background 0.22s;
}
.hcard:hover { background: #201818; }

.hcard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hcard-brand {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.hcard-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.hcard:hover .hcard-arrow {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
}

.hcard-img {
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.hcard-img-1 { background: url('images/premium-oynx.png') center/cover no-repeat; }
.hcard-img-2 { background: url('images/portable.png') center/cover no-repeat; }
.hcard-img-3 { background: url('images/diamond-laser.png') center/cover no-repeat; }

.hcard-body h3 {
  color: var(--white);
  font-size: 1.28rem;
  margin-bottom: 0.5rem;
}
.hcard-body p {
  color: rgba(255,255,255,0.42);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* =============================================
   LOCATIONS / MAP
   ============================================= */
.locations {
  background: var(--cream);
  padding: 6rem 0;
}

.locations-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.locations-text h2 {
  color: var(--text);
  margin-bottom: 1.8rem;
}
.locations-text h2 em { color: var(--text); }

.europe-svg { width: 100%; height: auto; }

/* =============================================
   GALLERY
   ============================================= */
.gallery { overflow: hidden; }

.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 500px;
}

.gallery-cell { background-size: cover; background-position: center; }

/* Replace these with real images: background-image: url('images/salon-1.jpg'); */
.gallery-cell-1 {
  background-image: url('images/gallery-left.png');
  background-size: cover;
  background-position: center;
}
.gallery-cell-2 {
  background-image: url('images/gallery-right.png');
  background-size: cover;
  background-position: center;
}

/* =============================================
   SHOP
   ============================================= */
.shop {
  background: var(--cream-2);
  padding: 6rem 0;
}

.shop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.shop-head h2 { max-width: 500px; }
.shop-head h2 em { font-style: italic; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.scard {
  background: var(--cream-3);
  border: 1px solid rgba(28,22,18,0.07);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.scard:hover { box-shadow: 0 8px 30px rgba(12,8,8,0.1); }

.scard-label {
  padding: 0.9rem 1rem 0;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.scard-img { height: 195px; margin: 0.6rem 0; }

/* Replace with real images */
.scard-img-1 { background: url('images/premium-oynx.png') center/cover no-repeat; }
.scard-img-2 { background: url('images/premium-supreme.png') center/cover no-repeat; }
.scard-img-3 { background: url('images/portable.png') center/cover no-repeat; }
.scard-img-4 { background: url('images/diamond-laser.png') center/cover no-repeat; }

.scard-body {
  padding: 0 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.scard-body h4 {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.scard-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq { background: var(--cream-2); padding: 6rem 0; }
.faq h2 { margin-bottom: 3rem; }

.faq-list { max-width: 780px; }

.faq-item {
  border-bottom: 1px solid rgba(28,22,18,0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  gap: 1rem;
}
.faq-question:hover { color: var(--dark); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(28,22,18,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  transition: transform 0.25s, border-color 0.2s;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--dark);
  color: var(--dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 680px;
}

/* =============================================
   PERFORMANCE / ABOUT
   ============================================= */
.performance {
  background: var(--dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.perf-deco {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.perf-diamond {
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,0.055);
  transform: rotate(45deg);
}

.performance-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.performance-text h2 {
  color: var(--white);
  margin-bottom: 1.6rem;
}

.performance-text p {
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.75;
}

.perf-sub { margin-top: 1rem; font-size: 0.9rem; }

.perf-cta { margin-top: 2.2rem; }

.perf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arrow-ring {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: rgba(255,255,255,0.65);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--cream-2);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.eyebrow-sm {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  display: block;
}

.contact-text h2 { color: var(--text); font-size: clamp(1.5rem, 3vw, 2.5rem); }
.contact-text h2 em { color: var(--text); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(28,22,18,0.22);
  padding: 0.7rem 0;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder { color: var(--muted); }
.form-group input:focus { border-bottom-color: var(--text); }

.contact-form .btn { align-self: flex-start; margin-top: 0.4rem; }

/* Decorative portrait — replace with: background-image: url('images/contact-portrait.jpg') */
.contact-portrait {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 26%;
  background: linear-gradient(160deg, #2E2424 0%, #1A1414 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  padding-top: 4.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand { display: flex; flex-direction: column; gap: 2rem; }

.footer-logo { display: flex; align-items: flex-start; gap: 1rem; }

.footer-gem {
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-logo-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.footer-logo p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}

.footer-social { display: flex; gap: 0.7rem; }

.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: rgba(255,255,255,0.38); color: #fff; }

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  font-size: 0.84rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.78); }

.footer-newsletter p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.newsletter-form input {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.7rem 0.9rem;
  font-family: var(--ff-body);
  font-size: 0.84rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.28); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.28); }

.footer-bottom {
  padding: 1.3rem 0;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.22);
}

/* =============================================
   FORM VALIDATION
   ============================================= */
.form-error {
  font-size: 0.72rem;
  color: #B03030;
  margin-top: 0.3rem;
  display: block;
  min-height: 1em;
}

.form-group input.is-invalid {
  border-bottom-color: #B03030;
}

.form-success {
  font-size: 0.85rem;
  color: #2A6B3A;
  margin-top: 0.5rem;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--dark);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 80% 50%, #3D0E0E 0%, #1A0505 50%, transparent 75%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  font-size: 1rem;
}

/* =============================================
   ACTIVE NAV LINK
   ============================================= */
.site-nav a.is-active { color: var(--white); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1060px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .performance-inner { grid-template-columns: 1fr; }
  .perf-icon { display: none; }
  .perf-deco { display: none; }

  .locations-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .europe-svg { max-height: 340px; }
}

@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 1px; }
  .contact-portrait { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 720px) {
  .site-nav, .nav-actions { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 8rem 0 4rem;
    gap: 2.5rem;
  }
  .hero-aside { align-self: auto; padding-bottom: 0; }

  .gallery-row { height: 320px; }

  .shop-grid { grid-template-columns: 1fr 1fr; }

  .shop-head { flex-direction: column; align-items: flex-start; gap: 1rem; }

.form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .shop-grid { grid-template-columns: 1fr; }
}
