@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&display=swap');

:root {
  --color-burgundy: #7F1D1D;
  --color-burgundy-dark: #4A0E0E;
  --color-burgundy-light: #991B1B;
  --color-gold: #D4AF37;
  --color-gold-light: #F3E5AB;
  --color-gold-glow: rgba(212, 175, 55, 0.25);
  --color-black: #09090B;
  --color-black-card: #121216;
  --color-black-nav: rgba(9, 9, 11, 0.88);
  --color-ivory: #FFFDF9;
  --color-ivory-dim: rgba(255, 253, 249, 0.75);
  --color-muted: #9CA3AF;
  --color-border: rgba(212, 175, 55, 0.2);
  --color-border-hover: rgba(212, 175, 55, 0.6);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-black);
  color: var(--color-ivory);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: var(--color-black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection {
  background: var(--color-burgundy);
  color: var(--color-gold-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-black);
}
::-webkit-scrollbar-thumb {
  background: var(--color-burgundy);
  border-radius: 4px;
  border: 1px solid var(--color-border);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--color-ivory);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--color-ivory-dim);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: all var(--transition-fast);
}
a:hover {
  color: var(--color-gold-light);
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

/* Gold Accents & Embroidery Styling */
.gold-text {
  background: linear-gradient(135deg, #FFFDF9 0%, #D4AF37 50%, #AA820A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-border-bottom {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}
.gold-border-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.gold-crest {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.gold-crest::before,
.gold-crest::after {
  content: '✦';
  font-size: 0.6rem;
  color: var(--color-gold);
}

.embroidery-pattern {
  background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-black-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(9, 9, 11, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-ivory);
  letter-spacing: 0.05em;
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.5;
}

.brand-logo span {
  color: var(--color-gold);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-ivory-dim);
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-dark) 100%);
  color: var(--color-ivory);
  border: 1px solid var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(127, 29, 29, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, #AA820A 100%);
  color: var(--color-black);
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-ivory);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.7) 0%, rgba(9, 9, 11, 0.95) 100%),
              radial-gradient(circle at 70% 30%, rgba(127, 29, 29, 0.3) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  border-radius: 4px;
  padding: 1rem;
  background: var(--color-black-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-dark);
  transition: all var(--transition-smooth);
}

.hero-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.hero-card-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.95) contrast(1.05);
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: rgba(18, 18, 22, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-gold);
  padding: 1.25rem 1.75rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-dark);
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* Feature Showcase / Bespoke Presentation */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--color-black-card);
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-burgundy), var(--color-gold));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(127, 29, 29, 0.2);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Gold Embroidered Tuxedo Presentation */
.tuxedo-section {
  background: radial-gradient(ellipse at center, rgba(127, 29, 29, 0.15) 0%, var(--color-black) 70%);
}

.tuxedo-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tuxedo-image-wrapper {
  position: relative;
}

.tuxedo-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.gold-detail-box {
  background: rgba(18, 18, 22, 0.95);
  border: 1px solid var(--color-gold);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
}

.gold-detail-box::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.15;
  line-height: 1;
}

.specs-list {
  list-style: none;
  margin: 1.5rem 0;
}

.specs-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--color-ivory-dim);
}

.specs-list li svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Client Reviews / Testimonials */
.reviews-section {
  background: var(--color-black);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.review-card {
  background: var(--color-black-card);
  border: 1px solid var(--color-border);
  padding: 2.25rem;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--color-gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.review-quote {
  font-style: italic;
  color: var(--color-ivory-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  object-fit: cover;
}

.author-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-ivory);
}

.author-title {
  font-size: 0.8rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Category Filter & Products Grid */
.filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: transparent;
  color: var(--color-ivory-dim);
  border: 1px solid var(--color-border);
  padding: 0.65rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-burgundy);
  color: var(--color-ivory);
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(127, 29, 29, 0.4);
}

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

.product-card {
  background: var(--color-black-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.product-image-container {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #000;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-burgundy);
  color: var(--color-gold-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--color-gold);
  border-radius: 2px;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--color-ivory-dim);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
}

/* Floating Label Form Styling (Contact) */
.contact-section {
  padding-top: 130px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-card {
  background: var(--color-black-card);
  border: 1px solid var(--color-border);
  padding: 3rem;
  border-radius: 4px;
  height: 100%;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(127, 29, 29, 0.3);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.form-card {
  background: var(--color-black-card);
  border: 1px solid var(--color-gold);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: var(--shadow-dark);
}

.floating-group {
  position: relative;
  margin-bottom: 2rem;
}

.floating-input,
.floating-textarea,
.floating-select {
  width: 100%;
  padding: 1.1rem 1rem 0.5rem;
  background: rgba(9, 9, 11, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-ivory);
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.floating-input:focus,
.floating-textarea:focus,
.floating-select:focus {
  border-color: var(--color-gold);
}

.floating-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 0.2s ease;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-textarea:focus ~ .floating-label,
.floating-textarea:not(:placeholder-shown) ~ .floating-label,
.floating-select:focus ~ .floating-label,
.floating-select:valid ~ .floating-label {
  top: 0.35rem;
  font-size: 0.7rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

/* Custom Milan Haute Couture Atelier Map */
.milan-map-box {
  margin-top: 3rem;
  background: var(--color-black-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.map-header {
  padding: 1.5rem 2rem;
  background: rgba(127, 29, 29, 0.3);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-canvas-container {
  height: 380px;
  width: 100%;
  background: #0d0d10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interactive-map-svg {
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.map-pin-overlay {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pulse-pin 2s infinite alternate;
}

@keyframes pulse-pin {
  0% { transform: translate(-50%, -100%) scale(1); }
  100% { transform: translate(-50%, -105%) scale(1.08); }
}

.map-pin-badge {
  background: var(--color-burgundy);
  color: var(--color-gold-light);
  border: 1px solid var(--color-gold);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  margin-bottom: 6px;
}

.map-pin-icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
}

/* Legal Pages Styling */
.legal-page {
  padding-top: 140px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.6) 0%, var(--color-black) 100%);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-black-card);
  border: 1px solid var(--color-border);
  padding: 3.5rem 4rem;
  border-radius: 4px;
  box-shadow: var(--shadow-dark);
}

.legal-header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-section h3 {
  font-size: 1.25rem;
  color: var(--color-ivory);
  margin: 1.5rem 0 0.75rem;
}

.legal-section p, .legal-section ul {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--color-ivory-dim);
}

.legal-section ul {
  list-style: none;
  margin-left: 1rem;
  margin-bottom: 1.25rem;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}

.legal-section ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.6rem;
  top: 0.35rem;
}

.legal-badge-box {
  background: rgba(127, 29, 29, 0.2);
  border: 1px solid var(--color-gold);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

/* GDPR Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 9999;
  background: rgba(18, 18, 22, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  padding: 1.75rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(200%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text h4 {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.cookie-text p {
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.consent-id-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px dashed var(--color-gold);
  color: var(--color-gold-light);
  padding: 0.3rem 0.75rem;
  font-family: monospace;
  font-size: 0.85rem;
  border-radius: 3px;
  margin-top: 0.5rem;
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.site-footer {
  background: #050507;
  border-top: 1px solid var(--color-border);
  padding-top: 5rem;
  padding-bottom: 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-ivory-dim);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  color: var(--color-ivory);
  font-size: 0.85rem;
  outline: none;
  flex-grow: 1;
  border-radius: 2px;
}

.newsletter-input:focus {
  border-color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid, .tuxedo-flex, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-card-img {
    height: 400px;
  }
  .hero-badge {
    left: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-container {
    padding: 2rem 1.5rem;
  }
}
