/* ============================================================
   PETRA OTTICA — Design System
   Boutique Eyewear · Milano · Est. 2024
   ============================================================ */

/* --- CSS Custom Properties --------------------------------- */
:root {
  /* Palette — warm neutrals with editorial depth */
  --color-ink:        #1a1a18;
  --color-ink-soft:   #3d3d38;
  --color-ink-muted:  #6b6b63;
  --color-stone:      #9c9a90;
  --color-sand:       #d4d0c8;
  --color-parchment:  #edeae2;
  --color-cream:      #f5f3ed;
  --color-ivory:      #faf9f5;
  --color-white:      #ffffff;
  --color-accent:     #8b7355;
  --color-accent-light: #a8936f;
  --color-accent-dark:  #6e5a42;
  --color-gold:       #c4a265;
  --color-error:      #a04040;

  /* Typography */
  --font-display:  'Playfair Display', 'Georgia', serif;
  --font-body:     'Inter', 'Helvetica Neue', 'Arial', sans-serif;
  --font-mono:     'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing scale (8px base) */
  --sp-1: 0.25rem;  /* 4 */
  --sp-2: 0.5rem;   /* 8 */
  --sp-3: 0.75rem;  /* 12 */
  --sp-4: 1rem;     /* 16 */
  --sp-5: 1.5rem;   /* 24 */
  --sp-6: 2rem;     /* 32 */
  --sp-7: 2.5rem;   /* 40 */
  --sp-8: 3rem;     /* 48 */
  --sp-9: 4rem;     /* 64 */
  --sp-10: 5rem;    /* 80 */
  --sp-11: 6rem;    /* 96 */
  --sp-12: 8rem;    /* 128 */

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 860px;
  --max-width-text: 680px;
  --header-height: 80px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 700ms;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26,26,24,0.04);
  --shadow-md: 0 4px 16px rgba(26,26,24,0.06);
  --shadow-lg: 0 8px 32px rgba(26,26,24,0.08);
  --shadow-xl: 0 16px 64px rgba(26,26,24,0.1);
}

/* --- Reset ------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-ink);
  background-color: var(--color-ivory);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* --- Utility Classes --------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--text {
  max-width: var(--max-width-text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 8px;
  z-index: 9999;
  background: #1a1a2e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease-in-out;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid #ffd60a;
  outline-offset: 2px;
}

.text-center { text-align: center; }
.text-upper { text-transform: uppercase; letter-spacing: 0.15em; }
.text-italic { font-style: italic; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-ink);
  margin-bottom: var(--sp-5);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-ink-muted);
  line-height: 1.8;
  max-width: 600px;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin: var(--sp-6) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Reveal Animations ------------------------------------- */

/* --- Language Switcher ------------------------------------- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 2px;
}

.lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 20px;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0.4;
  transition: opacity var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  border: 1px solid rgba(26,26,24,0.1);
}

.lang-flag:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.lang-flag--active {
  opacity: 1;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.lang-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-mobile__lang {
  margin-top: var(--sp-4);
}

.nav-mobile__lang .lang-switcher {
  gap: 12px;
}

.nav-mobile__lang .lang-flag {
  width: 36px;
  height: 26px;
  opacity: 0.5;
}

.nav-mobile__lang .lang-flag--active {
  opacity: 1;
}

/* --- Reveal Animations ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(250,249,245,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,26,24,0.06);
  transition: background var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(250,249,245,0.97);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
}

.logo__img {
  height: 42px;
  width: auto;
  display: block;
}

.logo__img--footer {
  height: 36px;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  line-height: 1;
}

.logo__tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  margin-top: 3px;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
  margin-left: var(--sp-9);
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-ink-soft);
  position: relative;
  padding: var(--sp-1) 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--duration-base) var(--ease-out);
}

.nav-desktop a:hover {
  color: var(--color-ink);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a.active {
  color: var(--color-ink);
}

/* CTA Button in Nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-white) !important;
  background: var(--color-ink);
  padding: 10px 22px;
  border-radius: 0;
  transition: background var(--duration-fast) var(--ease-out);
}

.nav-cta:hover {
  background: var(--color-accent-dark);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-ink);
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
  transform-origin: center;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--color-ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-7);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-ink);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.nav-mobile.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.is-open a:nth-child(1) { transition-delay: 80ms; }
.nav-mobile.is-open a:nth-child(2) { transition-delay: 140ms; }
.nav-mobile.is-open a:nth-child(3) { transition-delay: 200ms; }
.nav-mobile.is-open a:nth-child(4) { transition-delay: 260ms; }
.nav-mobile.is-open a:nth-child(5) { transition-delay: 320ms; }
.nav-mobile.is-open a:nth-child(6) { transition-delay: 380ms; }

.nav-mobile a:hover {
  color: var(--color-accent);
}

.nav-mobile__contact {
  margin-top: var(--sp-6);
  text-align: center;
}

.nav-mobile__contact a {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  color: var(--color-ink-muted) !important;
  letter-spacing: 0.05em;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}

.hero.is-loaded .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,26,24,0.3) 0%,
    rgba(26,26,24,0.15) 40%,
    rgba(26,26,24,0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  max-width: 780px;
  margin-top: 10vh;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-gold);
  margin-bottom: var(--sp-5);
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeIn 1s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--sp-5);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s var(--ease-out) 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto var(--sp-8);
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeIn 1s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeIn 1s var(--ease-out) 0.9s forwards;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 1.3s forwards;
}

.hero__scroll span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 14px 32px;
  border: 1px solid transparent;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-white);
  color: var(--color-ink);
  border-color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

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

/* CTA buttons layout */
.cta-banner__buttons {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-3);
}

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

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

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.btn--ghost:hover {
  background: var(--color-ink);
  color: var(--color-white);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

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

.btn svg,
.btn i {
  font-size: 0.85em;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover svg,
.btn:hover i {
  transform: translateX(3px);
}

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section {
  padding: var(--sp-12) 0;
}

.section--lg {
  padding: var(--sp-12) 0;
}

.section--cream {
  background: var(--color-cream);
}

.section--parchment {
  background: var(--color-parchment);
}

.section--dark {
  background: var(--color-ink);
  color: var(--color-white);
}

.section--dark .section-label {
  color: var(--color-gold);
}

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

.section--dark .section-subtitle {
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   INTRO / PHILOSOPHY STRIP
   ============================================================ */
.intro-strip {
  padding: var(--sp-11) 0;
  text-align: center;
}

.intro-strip__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink-soft);
  max-width: 720px;
  margin: 0 auto;
}

.intro-strip__text em {
  font-style: italic;
  color: var(--color-accent);
}

/* ============================================================
   COLLECTIONS GRID (Homepage Preview + Collections Page)
   ============================================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

/* Homepage "all brands" compact variant: 5 columns */
.collections-grid--all {
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-3);
}

.collection-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-parchment);
  cursor: pointer;
  display: block;
}

.collections-grid--all .collection-card {
  aspect-ratio: 5 / 6;
}

.collection-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--duration-slow) var(--ease-out);
}

.collection-card:hover .collection-card__image {
  transform: scale(1.06);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(26,26,24,0.7) 100%
  );
  transition: opacity var(--duration-base) var(--ease-out);
}

.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-4);
  z-index: 2;
}

.collections-grid--all .collection-card__content {
  padding: var(--sp-3);
}

.collection-card__origin {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: var(--sp-1);
}

.collections-grid--all .collection-card__origin {
  font-size: 0.45rem;
  letter-spacing: 0.2em;
}

.collection-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: var(--sp-1);
}

.collection-card__logo {
  display: block;
  max-width: 160px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.collections-grid--all .collection-card__name {
  font-size: 0.9rem;
}

.collections-grid--all .collection-card__logo {
  max-width: 120px;
  max-height: 30px;
}

.collection-card__desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 280px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.collections-grid--all .collection-card__desc {
  font-size: 0.65rem;
}

.collection-card:hover .collection-card__desc {
  opacity: 1;
  transform: translateY(0);
}

.collection-card__arrow {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-white);
  font-size: 0.9rem;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: all var(--duration-base) var(--ease-out);
  z-index: 2;
}

.collections-grid--all .collection-card__arrow {
  width: 30px;
  height: 30px;
  top: var(--sp-3);
  right: var(--sp-3);
  font-size: 0.75rem;
}

.collection-card:hover .collection-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  padding: var(--sp-8) var(--sp-6);
  background: var(--color-white);
  border: 1px solid rgba(26,26,24,0.06);
  text-align: center;
  transition: box-shadow var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  border: 1px solid var(--color-sand);
  border-radius: 50%;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--sp-3);
  color: var(--color-ink);
}

.service-card__text {
  font-size: 0.88rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
}

/* ============================================================
   LOCATION / CONTACT SECTION
   ============================================================ */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.location-map {
  position: relative;
  background: var(--color-parchment);
  min-height: 400px;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) contrast(1.05);
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-10) var(--sp-9);
  background: var(--color-ink);
  color: var(--color-white);
}

.location-info .section-label {
  color: var(--color-gold);
}

.location-info .section-title {
  color: var(--color-white);
  margin-bottom: var(--sp-6);
}

.location-detail {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  align-items: flex-start;
}

.location-detail__icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-top: 3px;
}

.location-detail__text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.location-detail__text a {
  color: var(--color-gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.location-detail__text a:hover {
  border-color: var(--color-gold);
}

.location-hours {
  margin-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-5);
}

.location-hours__title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--sp-4);
}

.location-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.location-hours__row span:first-child {
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding-top: calc(var(--header-height) + var(--sp-12));
  padding-bottom: var(--sp-12);
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.about-content--reverse {
  direction: rtl;
}

.about-content--reverse > * {
  direction: ltr;
}

.about-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-sand);
  z-index: -1;
}

.about-text {
  padding: var(--sp-6) 0;
}

.about-text p {
  font-size: 1rem;
  color: var(--color-ink-soft);
  line-height: 1.85;
  margin-bottom: var(--sp-5);
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--sp-5);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--color-parchment);
  box-shadow: var(--shadow-md);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--sp-1);
}

.team-card__role {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

/* ============================================================
   BRAND DETAIL PAGE
   ============================================================ */
.brand-hero {
  padding-top: calc(var(--header-height) + var(--sp-10));
  padding-bottom: var(--sp-10);
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.brand-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.brand-hero__content {
  position: relative;
  z-index: 2;
}

.brand-hero__origin {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
}

.brand-hero__name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--sp-5);
}

.brand-hero__logo {
  display: block;
  max-width: 320px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-hero__desc {
  font-size: 1.1rem;
  color: var(--color-ink-soft);
  line-height: 1.8;
  max-width: 620px;
}

.brand-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.brand-feature {
  padding: var(--sp-5);
  border-left: 2px solid var(--color-sand);
}

.brand-feature__label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}

.brand-feature__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-ink);
}

.brand-cta {
  margin-top: var(--sp-9);
  padding: var(--sp-9);
  background: var(--color-cream);
  text-align: center;
}

/* ============================================================
   EYE SERVICES PAGE
   ============================================================ */
.services-hero {
  padding-top: calc(var(--header-height) + var(--sp-12));
  padding-bottom: var(--sp-10);
  text-align: center;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.service-detail-card {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: var(--color-white);
  border: 1px solid rgba(26,26,24,0.06);
  transition: box-shadow var(--duration-base) var(--ease-out);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-accent);
  background: var(--color-cream);
  border-radius: 50%;
}

.service-detail-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--sp-2);
}

.service-detail-card__body p {
  font-size: 0.88rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
}

/* Doctor profile */
.doctor-profile {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-9);
  align-items: center;
}

.doctor-profile__image {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center top;
  position: relative;
}

.doctor-profile__image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--color-gold);
  pointer-events: none;
}

.doctor-profile__text h3 {
  font-size: 1.8rem;
  margin-bottom: var(--sp-2);
}

.doctor-profile__text .role {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--sp-5);
}

.doctor-profile__text p {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  line-height: 1.85;
  margin-bottom: var(--sp-4);
}

.doctor-profile__credentials {
  display: flex;
  gap: var(--sp-6);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-sand);
}

.credential {
  text-align: center;
}

.credential__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent);
}

.credential__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-ink-muted);
  margin-top: var(--sp-1);
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding-top: calc(var(--header-height) + var(--sp-11));
  padding-bottom: var(--sp-10);
  text-align: center;
  background: var(--color-cream);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--color-accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-11) 0 var(--sp-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-9);
  margin-bottom: var(--sp-10);
}

.footer-brand .logo__name {
  color: var(--color-white);
  font-size: 1.4rem;
}

.footer-brand .logo__tagline {
  color: var(--color-gold);
}

.footer-brand__desc {
  margin-top: var(--sp-5);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,0.55);
}

.footer-col__title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: var(--sp-5);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: var(--sp-2) 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-col a:hover {
  color: var(--color-white);
}

/* Footer brands column: compact two-column layout for 15 brands */
.footer-col--brands {
  display: flex;
  flex-direction: column;
}
.footer-col--brands .footer-col__title {
  margin-bottom: var(--sp-3);
}
.footer-col--brands a {
  font-size: 0.78rem;
  padding: 2px 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.footer-brand__logo {
  display: block;
  max-width: 100px;
  max-height: 22px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-col--brands a:hover .footer-brand__logo {
  opacity: 1;
}

.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-bottom__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom__social {
  display: flex;
  gap: var(--sp-4);
}

.footer-bottom__social a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-bottom__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ============================================================
   INSURANCE / ASSICURAZIONI
   ============================================================ */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.insurance-card {
  padding: var(--sp-6) var(--sp-5);
  background: var(--color-white);
  border: 1px solid rgba(26,26,24,0.06);
  text-align: center;
  transition: box-shadow var(--duration-base) var(--ease-out);
}

.insurance-card:hover {
  box-shadow: var(--shadow-md);
}

.insurance-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-ink);
  margin-bottom: var(--sp-2);
}

.insurance-card__desc {
  font-size: 0.82rem;
  color: var(--color-ink-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: var(--sp-11) 0;
  text-align: center;
  background: var(--color-ink);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(139,115,85,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-white);
  margin-bottom: var(--sp-4);
  position: relative;
}

.cta-banner__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-7);
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ============================================================
   SHOWROOM GALLERY — Rich photo grid (homepage)
   ============================================================ */
.showroom-gallery {
  width: 100%;
  background: var(--color-ink);
  padding: 4px 0;
}

.showroom-gallery__hero {
  max-width: 1400px;
  margin: 0 auto 4px;
  padding: 0 4px;
}

.showroom-gallery__hero .showroom-gallery__img {
  aspect-ratio: 21 / 9;
}

.showroom-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto 4px;
  padding: 0 4px;
}

.showroom-gallery__grid .showroom-gallery__img--tall {
  grid-row: 1 / 3;
  aspect-ratio: auto;
  min-height: 100%;
}

.showroom-gallery__grid .showroom-gallery__img:not(.showroom-gallery__img--tall) {
  aspect-ratio: 16 / 10;
}

.showroom-gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4px;
}

.showroom-gallery__row .showroom-gallery__img {
  aspect-ratio: 4 / 3;
}

.showroom-gallery__img {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out);
}

.showroom-gallery__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.15));
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.showroom-gallery__img:hover {
  transform: scale(1.015);
}

.showroom-gallery__img:hover::after {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .showroom-gallery__hero .showroom-gallery__img {
    aspect-ratio: 16 / 9;
  }

  .showroom-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .showroom-gallery__grid .showroom-gallery__img--tall {
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }

  .showroom-gallery__grid .showroom-gallery__img:not(.showroom-gallery__img--tall) {
    aspect-ratio: 16 / 10;
  }

  .showroom-gallery__row {
    grid-template-columns: 1fr;
  }

  .showroom-gallery__row .showroom-gallery__img {
    aspect-ratio: 16 / 10;
  }
}

/* ============================================================
   SHOWROOM STRIP — Store photo gallery
   ============================================================ */
.showroom-strip {
  width: 100%;
  overflow: hidden;
  background: var(--color-ink);
}

.showroom-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
}

.showroom-strip__inner--three {
  grid-template-columns: repeat(3, 1fr);
}

.showroom-strip__img {
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s var(--ease-out);
  overflow: hidden;
}

.showroom-strip__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.25));
  pointer-events: none;
}

.showroom-strip__img:hover {
  transform: scale(1.02);
}

/* Variant for services page — slightly less padding */
.showroom-strip--services {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .showroom-strip__inner {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .showroom-strip__inner--three {
    grid-template-columns: 1fr;
  }

  .showroom-strip__img {
    aspect-ratio: 16 / 9;
  }
}

/* ============================================================
   QUOTE / TESTIMONIAL
   ============================================================ */
.quote-section {
  padding: var(--sp-12) 0;
  text-align: center;
}

.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--color-ink-soft);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto var(--sp-5);
  position: relative;
}

.quote-section blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-sand);
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: var(--font-display);
  line-height: 1;
}

.quote-section cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

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

  .collections-grid--all {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-7);
  }

  .brand-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .insurance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .collections-grid--all {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }

  .collection-card {
    aspect-ratio: 3 / 4;
  }

  .collections-grid--all .collection-card {
    aspect-ratio: 4 / 5;
  }

  .collection-card__logo {
    max-width: 120px;
    max-height: 32px;
  }

  .collections-grid--all .collection-card__logo {
    max-width: 90px;
    max-height: 24px;
  }

  .brand-hero__logo {
    max-width: 240px;
    max-height: 60px;
  }

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

  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .location-split {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 300px;
  }

  .location-info {
    padding: var(--sp-8) var(--sp-6);
  }

  .about-content,
  .about-content--reverse {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    direction: ltr;
  }

  .about-image::after {
    display: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-9);
  }

  .doctor-profile {
    grid-template-columns: 1fr;
  }

  .doctor-profile__credentials {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: var(--sp-10) 0;
  }

  .section--lg {
    padding: var(--sp-10) 0;
  }

  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__content {
    padding: var(--sp-9) var(--sp-5);
  }

  .hero__scroll {
    display: none;
  }

  .collection-card__desc {
    opacity: 1;
    transform: translateY(0);
  }

  .collection-card__arrow {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--sp-4);
  }

  .collections-grid--all .collection-card__logo {
    max-width: 70px;
    max-height: 20px;
  }

  .brand-hero__logo {
    max-width: 200px;
    max-height: 50px;
  }

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

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-box {
  background: var(--color-cream);
  border-radius: 16px;
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.newsletter-box__icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
}

.newsletter-box__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: var(--sp-3);
}

.newsletter-box__text {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.newsletter-box__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-ink) 0%, #2c2c2c 100%);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-5);
}

.newsletter-box__badge i {
  color: #f5c842;
}

.newsletter-form {
  text-align: left;
}

.newsletter-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.newsletter-form__field {
  margin-bottom: var(--sp-4);
}

.newsletter-form__field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-ink-soft);
  margin-bottom: var(--sp-2);
  font-weight: 500;
}

.newsletter-form__field input[type="text"],
.newsletter-form__field input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-sand);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-ink);
  background: var(--color-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.newsletter-form__field input[type="text"]:focus,
.newsletter-form__field input[type="email"]:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.newsletter-form__field input::placeholder {
  color: #bbb;
}

.newsletter-form__consent {
  margin-bottom: var(--sp-5);
}

.newsletter-form__consent label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  line-height: 1.5;
}

.newsletter-form__consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

.newsletter-form__btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 0.95rem;
  padding: 16px 32px;
}

.newsletter-success {
  padding: var(--sp-6) 0;
  text-align: center;
}

.newsletter-success__icon {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: var(--sp-4);
}

.newsletter-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-ink);
  margin-bottom: var(--sp-3);
}

.newsletter-success p {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .newsletter-form__row {
    grid-template-columns: 1fr;
  }

  .newsletter-box {
    padding: var(--sp-7) var(--sp-5);
  }
}

/* ============================================================
   SHOP ONLINE — Coming Soon Page
   ============================================================ */
.shop-coming-soon {
  text-align: center;
  background: var(--color-surface);
  border-radius: 16px;
  padding: var(--sp-10) var(--sp-8);
  border: 1px solid rgba(0,0,0,0.06);
}

.shop-coming-soon__icon {
  font-size: 3.5rem;
  color: var(--color-accent);
  margin-bottom: var(--sp-5);
}

.shop-coming-soon__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-ink);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.02em;
}

.shop-coming-soon__text {
  font-size: 1.05rem;
  color: var(--color-ink-soft);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto var(--sp-7);
}

.shop-coming-soon__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.shop-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.shop-feature i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.shop-feature span {
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Brand Grid */
.shop-brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}

.shop-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-4);
  background: var(--color-surface);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--color-accent);
}

.shop-brand-card__logo {
  display: block;
  max-width: 120px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.shop-brand-card:hover .shop-brand-card__logo {
  opacity: 1;
}

.shop-brand-card__origin {
  font-size: 0.72rem;
  color: var(--color-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .shop-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .shop-coming-soon__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
  }
  .shop-brand-card {
    padding: var(--sp-4) var(--sp-3);
  }
  .shop-brand-card__logo {
    max-width: 90px;
    max-height: 28px;
  }
}

@media (max-width: 480px) {
  .shop-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-coming-soon {
    padding: var(--sp-7) var(--sp-5);
  }
  .shop-coming-soon__features {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
}
