/* ============================================
   WEST CORNER SUPPLIES — Shared Stylesheet
   Warm editorial aesthetic, mobile-first
   ============================================ */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* === CSS VARIABLES === */
:root {
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE0;
  --parchment:   #E8DFD0;
  --espresso:    #1C1410;
  --brown:       #4A2E1A;
  --brown-mid:   #7A4B2E;
  --gold:        #B8862A;
  --gold-light:  #D4A84B;
  --gold-pale:   #F5EDD6;
  --text-body:   #3A2A1E;
  --text-muted:  #7A6A5E;
  --border:      #D8CEBC;
  --border-light:#EDE6D8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w: 1100px;
  --section-pad: 6rem 1.5rem;
  --radius: 4px;
  --radius-lg: 8px;

  --transition: 0.22s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--espresso);
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.italic { font-style: italic; }
.serif { font-family: var(--font-display); }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: var(--section-pad); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-outline:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--brown-mid);
  border-color: var(--brown-mid);
  transform: translateY(-1px);
}

/* === DIVIDER === */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 1.8rem;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* === NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--espresso);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--espresso);
  line-height: 1;
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* === HERO === */
.hero {
  padding: 5rem 1.5rem 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--gold-pale);
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.hero h1 { margin-bottom: 1.4rem; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

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

/* Hero visual panel */
.hero-visual {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 24px,
    rgba(184,134,42,0.04) 24px,
    rgba(184,134,42,0.04) 25px
  );
}
.hero-badge {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--espresso);
  text-align: center;
  line-height: 1.4;
}
.hero-badge strong {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold);
}
.hero-booth-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  background: var(--cream);
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual { min-height: 240px; }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--espresso);
  padding: 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust-text {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.trust-text strong {
  display: block;
  font-weight: 500;
  color: #fff;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .trust-item:last-child { border-bottom: none; }
}

/* === VISIT SECTION === */
.visit-section {
  background: var(--cream);
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.hours-table td {
  padding: 0.7rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
}
.hours-table td:first-child {
  font-weight: 500;
  color: var(--espresso);
  width: 120px;
}
.hours-table td:last-child {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.hours-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

.address-block {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}
.address-block .booth-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.address-block address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 800px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* === LEGACY SECTION === */
.legacy-section {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.legacy-section::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 30rem;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  top: -4rem;
  left: -2rem;
  pointer-events: none;
  font-weight: 600;
}
.legacy-section h2 { color: var(--cream); }
.legacy-section .section-label { color: var(--gold-light); }
.legacy-section .divider { background: var(--gold-light); }
.legacy-section p { color: rgba(250,247,242,0.82); }

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

.legacy-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-box {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 800px) {
  .legacy-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* === NEWSLETTER === */
.newsletter-section {
  background: var(--gold-pale);
  border-top: 1px solid var(--parchment);
  border-bottom: 1px solid var(--parchment);
  text-align: center;
}

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

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  border: 1.5px solid var(--parchment);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--espresso);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--gold);
}
.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.newsletter-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-success {
  display: none;
  background: #f0f9f0;
  border: 1px solid #b8d8b8;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: #2a5a2a;
  text-align: center;
  margin-top: 1rem;
}

/* === INSTAGRAM === */
.instagram-section {
  background: var(--cream);
  text-align: center;
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-body);
  margin: 1.5rem 0;
}
.instagram-handle .at { color: var(--gold); font-weight: 500; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 700px;
  margin: 2rem auto;
}
.instagram-placeholder {
  aspect-ratio: 1;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* === SHOP TEASER === */
.teaser-section {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.teaser-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 21px
  );
}
.teaser-section .section-label { color: var(--gold-light); }
.teaser-section h2 { color: var(--cream); }
.teaser-section p { color: rgba(250,247,242,0.78); }
.teaser-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

.coming-soon-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

/* === FAQ PREVIEW === */
.faq-preview-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2.5rem;
}

.faq-item {
  padding: 1.8rem 2rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }

.faq-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}
.faq-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.faq-preview-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 700px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--espresso);
  color: var(--cream);
  padding: 4rem 1.5rem;
  text-align: center;
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--cream); font-size: clamp(2rem, 5vw, 3.2rem); margin-top: 0.5rem; }
.page-hero p { color: rgba(250,247,242,0.75); max-width: 500px; margin: 1rem auto 0; font-size: 1rem; }

/* === ABOUT PAGE === */
.about-content {
  max-width: 720px;
  margin: 0 auto;
}
.about-content p { font-size: 1.02rem; line-height: 1.85; }
.about-photo-placeholder {
  background: var(--cream-dark);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 3rem 0;
}
.about-photo-placeholder strong { display: block; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--brown-mid); }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.value-card {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.value-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.value-card h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

@media (max-width: 600px) {
  .about-values { grid-template-columns: 1fr; }
}

/* === VISIT PAGE === */
.visit-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.map-placeholder {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}

.directions-tip {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-body);
}
.directions-tip strong { color: var(--brown); }

@media (max-width: 800px) {
  .visit-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* === FAQ PAGE === */
.faq-full {
  max-width: 720px;
  margin: 0 auto;
}

.faq-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
}

.faq-accordion-item {
  border-bottom: 1px solid var(--border);
}
.faq-accordion-item:last-child { border-bottom: none; }

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

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 2rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  background: var(--cream-dark);
}
.faq-answer.open { display: block; }

/* === NEWSLETTER PAGE === */
.newsletter-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.newsletter-page-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.newsletter-benefits {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: left;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-benefits li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.newsletter-benefits li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === FOOTER === */
.site-footer {
  background: var(--espresso);
  color: rgba(250,247,242,0.75);
  padding: 3.5rem 1.5rem 2rem;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.8rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.8rem;
}
.footer-logo span { color: var(--gold-light); }

.footer-about {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-contact-item strong {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(250,247,242,0.4);
}

.instagram-link-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gold-light);
  transition: opacity var(--transition);
}
.instagram-link-footer:hover { opacity: 0.8; }

@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-about { max-width: none; }
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.55s ease both;
}
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* === PRINT === */
@media print {
  .site-header, .newsletter-section, .instagram-section, .teaser-section { display: none; }
}
