/* =============================================
   THE LOOMWARD - MAIN STYLESHEET
   Design Concept: Asymmetric Balance
   Color Palette: Warm neutrals + terracotta accent
   ============================================= */

:root {
  --color-bg: #FAF8F5;
  --color-bg-alt: #F3EFE9;
  --color-bg-dark: #1C1814;
  --color-text: #2A2420;
  --color-text-muted: #6B5F57;
  --color-text-light: #F5F0EA;
  --color-primary: #C4633A;
  --color-primary-dark: #A34E2C;
  --color-primary-light: #E8956E;
  --color-secondary: #3D5A4E;
  --color-secondary-light: #5A7A6B;
  --color-accent: #D4A574;
  --color-accent-light: #EDD5B0;
  --color-border: #E2D9D0;
  --color-border-dark: #C8BDB4;

  --shadow-sm: 0 1px 3px rgba(44,32,20,0.08), 0 1px 2px rgba(44,32,20,0.04);
  --shadow-md: 0 4px 12px rgba(44,32,20,0.10), 0 2px 6px rgba(44,32,20,0.06);
  --shadow-lg: 0 10px 30px rgba(44,32,20,0.12), 0 4px 12px rgba(44,32,20,0.08);
  --shadow-xl: 0 20px 60px rgba(44,32,20,0.15), 0 8px 24px rgba(44,32,20,0.10);
  --shadow-card: 0 2px 8px rgba(44,32,20,0.07), 0 8px 24px rgba(44,32,20,0.06);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;

  --font-body: 'Urbanist', sans-serif;

  --nav-height: 72px;
  --transition-base: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.site-body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

ul { list-style: none; }

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */

.hero-heading {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.hero-heading em {
  font-style: italic;
  color: var(--color-primary);
}

.section-heading-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: 0 4px 16px rgba(196,99,58,0.25);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,99,58,0.35);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(196,99,58,0.2);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(196,99,58,0.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

/* =============================================
   NAVIGATION
   ============================================= */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.nav-transparent {
  background: transparent;
}

.nav-solid {
  background: rgba(250,248,245,0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.nav-scrolled {
  background: rgba(250,248,245,0.97) !important;
  box-shadow: 0 2px 20px rgba(44,32,20,0.10) !important;
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  transition: opacity var(--transition-base);
}

.logo-img:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: rgba(196,99,58,0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: 1.2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.cart-btn:hover {
  background: rgba(196,99,58,0.08);
  color: var(--color-primary);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  transition: transform var(--transition-base);
}

.cart-count.bump {
  transform: scale(1.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.hamburger:hover { background: rgba(196,99,58,0.08); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-transparent .hamburger span { background: rgba(250,248,245,0.92); }

/* =============================================
   MOBILE MENU
   ============================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--color-bg);
  z-index: 1100;
  padding: 2rem;
  padding-top: 5rem;
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-smooth);
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-text);
  transition: all var(--transition-base);
}

.mobile-menu-close:hover {
  background: var(--color-primary);
  color: #fff;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.mobile-nav-links a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding-left: 1.5rem;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,24,20,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =============================================
   CART SIDEBAR
   ============================================= */

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(400px, 95vw);
  height: 100vh;
  background: var(--color-bg);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-smooth);
}

.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-header button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-text);
  transition: all var(--transition-base);
}

.cart-header button:hover {
  background: var(--color-primary);
  color: #fff;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  text-align: center;
  padding: 2rem 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.cart-item-remove:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

.cart-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--color-border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,24,20,0.5);
  z-index: 1150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  backdrop-filter: blur(4px);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =============================================
   HERO - DIAGONAL SPLIT
   ============================================= */

.hero-diagonal {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-image-side {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-diagonal-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(250,248,245,0.97) 0%,
    rgba(250,248,245,0.97) 45%,
    rgba(250,248,245,0.6) 55%,
    transparent 65%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-color-side {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding: var(--space-xl) 2rem var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem));
  max-width: 55%;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  background: rgba(196,99,58,0.1);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(196,99,58,0.2);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 1.5rem 0 2.5rem;
  max-width: 440px;
}

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

/* =============================================
   FEATURE TABS
   ============================================= */

.feature-tabs-section {
  padding: var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem));
  background: var(--color-bg-alt);
}

.feature-tabs-layout {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 5rem;
  align-items: start;
}

.feature-tabs-left {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.feature-tabs-left .section-heading-lg {
  margin-bottom: 2.5rem;
  margin-top: 0.75rem;
}

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

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-base);
}

.tab-btn i {
  width: 20px;
  color: var(--color-primary-light);
  transition: color var(--transition-base);
}

.tab-btn:hover {
  background: rgba(196,99,58,0.06);
  color: var(--color-text);
  border-color: rgba(196,99,58,0.15);
}

.tab-btn.active {
  background: rgba(196,99,58,0.08);
  color: var(--color-primary);
  border-color: rgba(196,99,58,0.25);
  font-weight: 600;
}

.tab-btn.active i { color: var(--color-primary); }

.feature-tabs-right {
  min-height: 400px;
}

.tab-panel {
  display: none;
  animation: fadeInPanel 0.35s ease;
}

.tab-panel.active { display: block; }

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(196,99,58,0.3);
}

.tab-panel h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.tab-panel p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.tab-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */

.products-section {
  padding: var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem));
}

.products-header {
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.products-header .section-heading-lg {
  margin-top: 0.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border: 1px solid var(--color-border);
}

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

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,24,20,0.35);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.product-card:hover .product-overlay { opacity: 1; }

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  background: var(--color-bg);
  color: var(--color-text);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-add-cart:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,99,58,0.3);
}

.product-info {
  padding: 1.25rem;
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: rgba(61,90,78,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.product-fabric {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

.btn-add-cart-sm {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-base);
  box-shadow: 0 3px 10px rgba(196,99,58,0.3);
}

.btn-add-cart-sm:hover {
  background: var(--color-primary-dark);
  transform: scale(1.1);
  box-shadow: 0 5px 16px rgba(196,99,58,0.4);
}

.products-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* =============================================
   BRAND STRIP
   ============================================= */

.brand-strip {
  background: var(--color-bg-dark);
  overflow: hidden;
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: 60% 1fr;
  min-height: 420px;
}

.brand-strip-text {
  padding: var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem)) var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-strip-text .section-eyebrow {
  color: var(--color-accent);
}

.brand-strip-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
}

.brand-strip-image {
  overflow: hidden;
}

.strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.brand-strip:hover .strip-img {
  opacity: 1;
  transform: scale(1.02);
}

/* =============================================
   SERVICE AREAS
   ============================================= */

.service-areas-section {
  padding: var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem));
  background: var(--color-bg-alt);
}

.service-areas-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 5rem;
  align-items: center;
}

.service-areas-content .section-heading-lg {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.service-regions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.region-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.region-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.region-item i {
  color: var(--color-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.region-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.region-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.map-visual {
  position: relative;
}

.map-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.map-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.map-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.map-card > p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.map-shipping-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.map-shipping-note i {
  color: var(--color-secondary);
  width: 16px;
  flex-shrink: 0;
}

.map-bg-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-primary-light));
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
  opacity: 0.3;
  z-index: 0;
  filter: blur(40px);
}

/* =============================================
   GIFT CARD SECTION
   ============================================= */

.giftcard-section {
  padding: var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem));
  background: var(--color-bg);
}

.giftcard-inner {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 5rem;
  align-items: center;
}

.giftcard-text .section-eyebrow { margin-bottom: 0.75rem; }

.giftcard-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.giftcard-text p {
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.giftcard-mockup {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2D2018 50%, #3D2A1A 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.giftcard-mockup::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196,99,58,0.4), transparent 70%);
  border-radius: 50%;
}

.giftcard-mockup::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(212,165,116,0.3), transparent 70%);
  border-radius: 50%;
}

.gc-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.gc-amount {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.gc-code {
  font-size: 0.8rem;
  color: rgba(245,240,234,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  padding: calc(var(--nav-height) + 4rem) max(2rem, calc((100vw - 1320px) / 2 + 2rem)) 4rem;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 60%);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(196,99,58,0.05));
  pointer-events: none;
}

.page-hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 500px;
}

/* =============================================
   BRAND STORY (our-brand.html)
   ============================================= */

.brand-story-section {
  padding: var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem));
}

.brand-story-layout {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 6rem;
  align-items: center;
}

.story-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.brand-story-text .section-heading-lg {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.brand-story-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* =============================================
   VALUES SECTION
   ============================================= */

.values-section {
  padding: var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem));
  background: var(--color-bg-alt);
}

.values-header {
  max-width: 500px;
  margin-bottom: 3.5rem;
}

.values-header .section-heading-lg { margin-top: 0.5rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* =============================================
   FABRIC PHILOSOPHY
   ============================================= */

.fabric-philosophy-section {
  padding: var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem));
}

.fabric-philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 6rem;
  align-items: center;
}

.fabric-text .section-heading-lg {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.fabric-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.fabric-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   CATALOG (seasonal-picks.html)
   ============================================= */

.catalog-section {
  padding: var(--space-lg) max(2rem, calc((100vw - 1320px) / 2 + 2rem)) var(--space-xl);
}

.catalog-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.catalog-card {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 4rem;
  align-items: start;
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-smooth);
}

.catalog-card:nth-child(even) {
  grid-template-columns: 1fr 35%;
  direction: rtl;
}

.catalog-card:nth-child(even) > * {
  direction: ltr;
}

.catalog-card:hover { box-shadow: var(--shadow-lg); }

.catalog-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.catalog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.catalog-card:hover .catalog-img { transform: scale(1.03); }

.catalog-details {
  padding: 3rem 3rem 3rem 0;
}

.catalog-card:nth-child(even) .catalog-details {
  padding: 3rem 0 3rem 3rem;
}

.catalog-top { margin-bottom: 2rem; }

.catalog-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
}

.catalog-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.catalog-fabric-section,
.catalog-styling-section {
  margin-bottom: 1.75rem;
}

.catalog-fabric-section h3,
.catalog-styling-section h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.catalog-fabric-section h3 i { color: var(--color-secondary); }
.catalog-styling-section h3 i { color: var(--color-primary); }

.catalog-fabric-section p,
.catalog-styling-section p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.btn-catalog {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  width: 100%;
  justify-content: center;
}

/* =============================================
   SIZE GUIDE
   ============================================= */

.size-guide-section {
  padding: var(--space-lg) max(2rem, calc((100vw - 1320px) / 2 + 2rem)) var(--space-xl);
}

.size-guide-intro {
  max-width: 640px;
  margin-bottom: 3rem;
}

.size-guide-intro h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.size-guide-intro p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.size-table-wrap {
  margin-bottom: 3rem;
}

.size-table-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.table-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg);
  font-size: 0.9rem;
}

.size-table th {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.size-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.size-table tbody tr:hover {
  background: var(--color-bg-alt);
}

.size-table tbody tr:last-child td { border-bottom: none; }

.size-tips {
  margin-top: 3rem;
}

.size-tips h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.tip-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.tip-card i {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.tip-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-section {
  padding: var(--space-lg) max(2rem, calc((100vw - 1320px) / 2 + 2rem)) var(--space-xl);
}

.contact-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.contact-form-col h2,
.contact-info-col h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196,99,58,0.12);
  background: var(--color-bg);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-item i {
  width: 40px;
  height: 40px;
  background: rgba(196,99,58,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-detail-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-detail-item a:hover { color: var(--color-primary); }

.map-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */

.checkout-section {
  padding: calc(var(--nav-height) + 3rem) max(2rem, calc((100vw - 1320px) / 2 + 2rem)) var(--space-xl);
}

.checkout-header {
  margin-bottom: 3rem;
  max-width: 540px;
}

.checkout-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.checkout-header p {
  color: var(--color-text-muted);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.checkout-block {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.checkout-block h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.checkout-block h2 i { color: var(--color-primary); }

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

.gc-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.gc-input-row {
  display: flex;
  gap: 0.75rem;
}

.gc-input-row input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.gc-input-row input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196,99,58,0.12);
}

.gc-message {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
}

.gc-message.success {
  background: rgba(61,90,78,0.1);
  color: var(--color-secondary);
  border: 1px solid rgba(61,90,78,0.2);
}

.gc-message.error {
  background: rgba(220,38,38,0.07);
  color: #dc2626;
  border: 1px solid rgba(220,38,38,0.15);
}

.checkout-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.order-summary {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.order-summary h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.checkout-items-list {
  margin-bottom: 1.5rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.checkout-item-name { color: var(--color-text); }
.checkout-item-price {
  font-weight: 600;
  color: var(--color-primary);
}

.order-totals {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.order-total-final {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.gc-applied-amount { color: var(--color-secondary); font-weight: 600; }

/* =============================================
   THANKS PAGE
   ============================================= */

.thanks-section {
  padding: calc(var(--nav-height) + 4rem) max(2rem, calc((100vw - 1320px) / 2 + 2rem)) var(--space-xl);
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
}

.thanks-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.thanks-inner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.thanks-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.thanks-gc-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(61,90,78,0.08);
  border: 1px solid rgba(61,90,78,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.thanks-gc-notice i {
  color: var(--color-secondary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.thanks-gc-notice p {
  font-size: 0.9rem;
  color: var(--color-secondary-light);
  font-weight: 500;
}

.thanks-order-summary {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
  text-align: left;
}

.thanks-order-summary h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.thanks-items {
  margin-bottom: 1rem;
}

.thanks-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}

.thanks-item-price { font-weight: 600; color: var(--color-primary); }

.thanks-totals {
  padding-top: 0.75rem;
}

.thanks-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.thanks-total-final {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.thanks-next-steps {
  margin-bottom: 2.5rem;
  text-align: left;
}

.thanks-next-steps h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.next-step {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  text-align: center;
}

.next-step i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.next-step p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   LEGAL PAGES
   ============================================= */

.legal-section {
  padding: calc(var(--nav-height) + 4rem) max(2rem, calc((100vw - 1320px) / 2 + 2rem)) var(--space-xl);
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--space-xl) max(2rem, calc((100vw - 1320px) / 2 + 2rem)) var(--space-md);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(245,240,234,0.1);
  margin-bottom: var(--space-md);
}

.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(245,240,234,0.6);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(245,240,234,0.55);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-contact-info i {
  color: var(--color-accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.footer-contact-info a {
  color: rgba(245,240,234,0.55);
  transition: color var(--transition-base);
}

.footer-contact-info a:hover { color: var(--color-accent); }

.footer-nav-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-col a {
  font-size: 0.875rem;
  color: rgba(245,240,234,0.6);
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer-nav-col a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,240,234,0.4);
}

/* =============================================
   COOKIE CONSENT
   ============================================= */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(245,240,234,0.1);
  backdrop-filter: blur(12px);
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--color-accent);
}

.cookie-text p {
  font-size: 0.8rem;
  color: rgba(245,240,234,0.65);
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--color-primary-dark);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(245,240,234,0.7);
  border: 1px solid rgba(245,240,234,0.2);
}

.cookie-btn-reject:hover {
  background: rgba(245,240,234,0.08);
  color: var(--color-text-light);
}

.cookie-btn-customize {
  background: transparent;
  color: rgba(245,240,234,0.7);
  border: 1px solid rgba(245,240,234,0.2);
}

.cookie-btn-customize:hover {
  background: rgba(245,240,234,0.08);
}

.cookie-customize-panel {
  border-top: 1px solid rgba(245,240,234,0.1);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.cookie-category {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245,240,234,0.08);
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: rgba(245,240,234,0.8);
}

.cookie-category input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.cookie-category small {
  margin-left: auto;
  font-size: 0.7rem;
  color: rgba(245,240,234,0.4);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
  .feature-tabs-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-tabs-left {
    position: static;
  }

  .tabs-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .brand-strip-image {
    height: 300px;
  }

  .service-areas-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .giftcard-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brand-story-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .fabric-philosophy-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .catalog-card {
    grid-template-columns: 40% 1fr;
    gap: 2.5rem;
  }

  .catalog-card:nth-child(even) {
    grid-template-columns: 1fr 40%;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --space-xl: 4.5rem;
    --space-lg: 3rem;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-color-side {
    max-width: 100%;
    padding: 3rem 1.5rem 3rem;
    min-height: calc(100vh - var(--nav-height));
  }

  .hero-diagonal-line {
    background: linear-gradient(
      160deg,
      rgba(250,248,245,0.97) 0%,
      rgba(250,248,245,0.92) 50%,
      rgba(250,248,245,0.5) 70%,
      transparent 85%
    );
  }

  .hero-heading { font-size: clamp(2.8rem, 12vw, 4.5rem); }

  .catalog-card,
  .catalog-card:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .catalog-img-wrap {
    aspect-ratio: 16/9;
  }

  .catalog-details {
    padding: 1.5rem;
  }

  .catalog-card:nth-child(even) .catalog-details {
    padding: 1.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .next-steps-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand { grid-column: auto; }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .brand-strip-text {
    padding: 3rem 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

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

  .tabs-nav {
    flex-direction: column;
  }

  .gc-input-row {
    flex-direction: column;
  }

  .gc-input-row .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .checkout-section {
    padding-top: calc(var(--nav-height) + 2rem);
  }

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

/* =============================================
   GLASSMORPHISM ACCENTS
   ============================================= */

.glass-card {
  background: rgba(250,248,245,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(250,248,245,0.4);
  box-shadow: 0 8px 32px rgba(44,32,20,0.12), inset 0 1px 0 rgba(255,255,255,0.5);
}

/* =============================================
   UTILITY
   ============================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

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


:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}