/* =============================================
   ALL GOOD WITH ANEESA — Main Stylesheet
   Shared by every page on the site.
   ============================================= */

/* === Design tokens === */
:root {
  --cream: #f6f1e8;
  --cream-soft: #fbf7f0;
  --sage: #8a9a7b;
  --sage-dark: #5f6f52;
  --terracotta: #c87456;
  --terracotta-soft: #e2a892;
  --ink: #2c2a26;
  --ink-soft: #5a564e;
  --line: #e6dfd2;
  --gold: #b89968;
}

/* === Reset & base === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* === Navigation === */
.nav {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active { color: var(--ink); }

.nav-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-icon {
  width: 18px;
  height: 18px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s;
}

.nav-icon:hover { color: var(--terracotta); }

/* === Storefronts bar === */
.storefronts {
  background: var(--ink);
  color: var(--cream);
  padding: 16px 0;
}

.storefront-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.storefront-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  margin-right: 6px;
  opacity: 0.85;
}

.storefront-pill {
  padding: 7px 16px;
  border: 1px solid rgba(246, 241, 232, 0.25);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
}

.storefront-pill:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.storefront-pill .arrow {
  opacity: 0.6;
  font-size: 12px;
}

/* === Footer === */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-logo span { color: var(--terracotta-soft); }

.footer-about {
  font-size: 14px;
  opacity: 0.7;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.6;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 14px;
  opacity: 0.85;
  transition: all 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--terracotta-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(246, 241, 232, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(246, 241, 232, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* === Generic buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
}

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

.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

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

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

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* === Common section eyebrows & titles === */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-title em,
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--sage-dark);
}

.view-all {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}

.view-all:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* === Mobile menu (hamburger) === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle:hover { color: var(--terracotta); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 380px;
  height: 100vh;
  background: var(--cream-soft);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.3s ease;
  box-shadow: -8px 0 30px rgba(44, 42, 38, 0.12);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 42, 38, 0.45);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 8px;
}

.mobile-menu-close svg { width: 22px; height: 22px; }
.mobile-menu-close:hover { color: var(--terracotta); }

.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu nav li {
  border-bottom: 1px solid var(--line);
}

.mobile-menu nav a {
  display: block;
  padding: 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  color: var(--terracotta);
  padding-left: 8px;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 32px;
}

.mobile-menu-footer .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-weight: 500;
}

.mobile-menu-storefronts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-menu-storefronts a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s;
}

.mobile-menu-storefronts a:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* === Responsive (base breakpoints) === */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  /* Storefronts — horizontal scroll on phones (no wrap, no clutter) */
  .storefronts { padding: 14px 0; }
  .storefront-label {
    flex-shrink: 0;
    margin-right: 12px;
    font-size: 14px;
  }
  .storefront-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    padding: 0 20px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
  }
  .storefront-row::-webkit-scrollbar { display: none; }
  .storefront-pill {
    flex-shrink: 0;
    padding: 7px 14px;
    font-size: 10px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
