/* ==========================================================================
   ZYVER LUXURY HEADWEAR - CORE STYLESHEET (ZyverWear.com)
   Aesthetic: Editorial, Masculine, Minimal, Confident, Architectural
   Restricted Palette: Charcoal Black, Deep Midnight Navy, Warm Off-White, Pure White
   ========================================================================== */

:root {
  --color-black: #0c0d10;
  --color-black-pure: #000000;
  --color-charcoal: #14161b;
  --color-charcoal-light: #20232c;
  --color-navy: #09101c;
  --color-navy-dark: #060a12;
  --color-navy-muted: #131c2e;
  --color-white: #ffffff;
  --color-offwhite: #f7f6f3;
  --color-stone: #ece9e2;
  --color-gray-100: #f2f2f0;
  --color-gray-200: #e2e1dc;
  --color-gray-400: #9e9ea3;
  --color-gray-500: #6b6e76;
  --color-gray-700: #32353e;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, "Liberation Mono", Menlo, Courier, monospace;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing */
  --site-max-width: 1440px;
  --header-height: 72px;
  --announcement-height: 36px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-black);
  line-height: 1.5;
  overflow-x: hidden;
}

body.drawer-active {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ==========================================================================
   DEVICE PREVIEW TOOLBAR (Top Floating Bar for Client Review)
   ========================================================================== */
.device-preview-bar {
  background: #000000;
  color: #a0a0a0;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
  z-index: 1000;
}

.device-preview-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-brand-tag {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.preview-pill {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 2px 8px;
  font-size: 11px;
  text-transform: uppercase;
  border: 1px solid #2a2a2a;
}

.device-switcher-buttons {
  display: flex;
  background: #111;
  border: 1px solid #282828;
  padding: 2px;
}

.device-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: #888;
  transition: var(--transition-fast);
}

.device-btn:hover {
  color: #fff;
}

.device-btn.active {
  background: #242424;
  color: #ffffff;
  font-weight: 600;
}

.viewport-frame {
  width: 100%;
  margin: 0 auto;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.viewport-frame.mode-tablet {
  max-width: 820px;
  box-shadow: 0 0 50px rgba(0,0,0,0.3);
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.viewport-frame.mode-mobile {
  max-width: 414px;
  box-shadow: 0 0 60px rgba(0,0,0,0.35);
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background-color: var(--color-black);
  color: var(--color-gray-200);
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 20px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.announcement-dot {
  width: 4px;
  height: 4px;
  background-color: #888;
  border-radius: 50%;
}

/* ==========================================================================
   GLOBAL HEADER
   ========================================================================== */
.global-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 90;
  background: rgba(12, 13, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.global-header.scrolled {
  background: rgba(10, 11, 14, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  max-width: var(--site-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Left: Desktop Nav Links */
.header-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d1d3d8;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.nav-active {
  color: var(--color-white);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background-color: var(--color-white);
  transition: width var(--transition-fast);
}

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

/* Center: ZYVER Wordmark */
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  user-select: none;
}

.brand-monogram-mark {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Right: Header Actions */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header-action-btn {
  color: #d1d3d8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  position: relative;
  transition: color var(--transition-fast);
}

.header-action-btn:hover {
  color: var(--color-white);
}

.cart-count-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-only {
  display: none !important;
}

/* ==========================================
   HOMEPAGE HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height) - var(--announcement-height));
  display: flex;
  align-items: flex-end;
  padding: 80px 32px;
  background-color: var(--color-black);
  overflow: hidden;
}

.hero-background-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.82) contrast(1.05);
  transform: scale(1.01);
  transition: transform 1.2s ease-out;
}

.hero-section:hover .hero-bg-img {
  transform: scale(1.03);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(12, 13, 16, 0.4) 0%,
    rgba(12, 13, 16, 0.2) 40%,
    rgba(12, 13, 16, 0.88) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--site-max-width);
  margin: 0 auto;
  width: 100%;
  color: var(--color-white);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c0c3cb;
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-subline {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  color: #d1d4dd;
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.45;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================
   BUTTON SYSTEM (Luxury Sharp Minimal)
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  border-radius: 0px; /* Sharp corners */
}

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.btn-dark {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
}

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

.btn-block {
  width: 100%;
}

.text-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid var(--color-black);
  padding-bottom: 3px;
  transition: opacity var(--transition-fast);
}

.text-link:hover {
  opacity: 0.65;
}

/* ==========================================
   SECTION COMMON LAYOUTS
   ========================================== */
.section {
  padding: 100px 32px;
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.section-full {
  padding: 100px 32px;
  width: 100%;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--color-gray-200);
  padding-bottom: 20px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}

/* ==========================================
   SECTION: BRAND STATEMENT (Deep Navy)
   ========================================== */
.section-statement {
  background-color: var(--color-navy);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.statement-grid {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.statement-copy-col {
  padding-right: 40px;
}

.statement-heading {
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.statement-body {
  font-size: clamp(16px, 1.6vw, 20px);
  color: #b8becb;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.statement-img-col {
  position: relative;
}

.statement-img-col img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.05);
}

.statement-img-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(12, 13, 16, 0.8);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gray-200);
}

/* ==========================================
   SECTION: COLLECTION BANNER ("THE EVERYDAY CAP")
   ========================================== */
.campaign-banner-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 80px 32px;
  overflow: hidden;
}

.campaign-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.campaign-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.65) contrast(1.05);
}

.campaign-banner-content {
  position: relative;
  z-index: 2;
  max-width: var(--site-max-width);
  margin: 0 auto;
  width: 100%;
}

.campaign-banner-title {
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 16px;
  max-width: 800px;
}

.campaign-banner-sub {
  font-size: clamp(16px, 1.8vw, 22px);
  color: #d1d4dc;
  margin-bottom: 32px;
  max-width: 520px;
}

/* ==========================================
   SECTION: SHOP BY STYLE (3 Large Tiles)
   ========================================== */
.style-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.style-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.style-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.style-card:hover .style-card-bg {
  transform: scale(1.05);
}

.style-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 13, 16, 0.88) 0%, rgba(12, 13, 16, 0.2) 60%, rgba(12, 13, 16, 0.1) 100%);
  transition: background var(--transition-fast);
}

.style-card:hover .style-card-overlay {
  background: linear-gradient(to top, rgba(12, 13, 16, 0.92) 0%, rgba(12, 13, 16, 0.3) 60%, rgba(12, 13, 16, 0.1) 100%);
}

.style-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 28px;
  z-index: 2;
}

.style-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a0a4ae;
  margin-bottom: 6px;
  display: block;
}

.style-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.style-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.style-card:hover .style-cta {
  opacity: 1;
  transform: translateX(4px);
}

/* ==========================================
   SECTION: PRODUCT DETAIL FEATURE ("THE DETAILS MATTER")
   ========================================== */
.section-feature-detail {
  background-color: var(--color-offwhite);
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.feature-meta-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 14px;
}

.feature-title {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.feature-lead {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 16px;
  line-height: 1.45;
}

.feature-body {
  font-size: 15px;
  color: var(--color-gray-700);
  margin-bottom: 32px;
  line-height: 1.6;
}

.feature-callouts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.callout-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--color-gray-200);
}

.callout-num {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--color-black);
}

.callout-heading {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.callout-desc {
  font-size: 13px;
  color: var(--color-gray-500);
  line-height: 1.5;
}

.feature-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Cluster Layout */
.detail-gallery-cluster {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cluster-main {
  position: relative;
  background-color: var(--color-charcoal);
  aspect-ratio: 4/5;
  overflow: hidden;
}

.cluster-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cluster-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cluster-sub-box {
  position: relative;
  background-color: var(--color-white);
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
}

.cluster-sub-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cluster-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(12, 13, 16, 0.85);
  color: var(--color-white);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ==========================================
   SECTION: EDITORIAL / LOOKBOOK GRID ("ZYVER IN MOTION")
   ========================================== */
.lookbook-masonry {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 20px;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  background-color: var(--color-charcoal);
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lookbook-item:hover img {
  transform: scale(1.04);
}

.lookbook-item.wide {
  grid-row: span 2;
}

.lookbook-item.tall {
  grid-row: span 2;
}

.lookbook-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(12, 13, 16, 0.88), transparent);
  color: var(--color-white);
}

.lookbook-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b0b4be;
  display: block;
  margin-bottom: 4px;
}

.lookbook-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================
   SECTION: NEW ARRIVALS HORIZONTAL SCROLL
   ========================================== */
.arrivals-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.arrivals-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}

.arrivals-track::-webkit-scrollbar {
  display: none;
}

.arrivals-track .product-card {
  flex: 0 0 calc(28% - 18px);
  min-width: 280px;
  scroll-snap-align: start;
}

/* ==========================================
   SECTION: FULL-WIDTH DARK CAMPAIGN ("WEAR IT YOUR WAY")
   ========================================== */
.dark-campaign-section {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}

.dark-campaign-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.campaign-oversized-title {
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 28px;
}

.campaign-lead-copy {
  font-size: clamp(16px, 1.8vw, 22px);
  color: #a8adb8;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.campaign-visual-frame {
  position: relative;
}

.campaign-break-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.campaign-vertical-tag {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #606470;
  white-space: nowrap;
}

/* ==========================================
   SECTION: SOCIAL INSTAGRAM GRID (@ZYVERWEAR)
   ========================================== */
.social-tiles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.social-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: var(--color-charcoal);
}

.social-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.social-tile:hover .social-tile-img {
  transform: scale(1.06);
}

.social-tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 13, 16, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-white);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.social-tile:hover .social-tile-overlay {
  opacity: 1;
}

.social-tile-handle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* ==========================================
   SECTION: NEWSLETTER BLOCK ("STAY IN THE LOOP")
   ========================================== */
.newsletter-section {
  background-color: var(--color-offwhite);
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 90px 32px;
  text-align: center;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.newsletter-sub {
  font-size: 15px;
  color: var(--color-gray-700);
  margin-bottom: 32px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-right: none;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--color-black);
  outline: none;
}

.newsletter-btn {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background-color var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--color-charcoal-light);
}

/* ==========================================
   STRUCTURED LUXURY FOOTER
   ========================================== */
.global-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 100px 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

.footer-brand-col {
  padding-right: 48px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.footer-brand-statement {
  font-size: 14px;
  color: var(--color-gray-400);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-domain {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #686c78;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888d9a;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 13px;
  color: #d1d3d8;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  font-size: 12px;
  color: #6a6e7a;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
