/* ===== SM FASHION — MAIN STYLESHEET ===== */
/* Aesthetic: Refined luxury editorial — blush rose, deep navy, gold accents */

:root {
  --rose:      #f5c6d8;
  --rose-light:#fde8f0;
  --rose-dark: #e8a0bc;
  --navy:      #2b2d5e;
  --navy-deep: #1a1b3e;
  --navy-light:#4a4d8a;
  --gold:      #c9a84c;
  --gold-light:#e8cc7a;
  --cream:     #fdf8f5;
  --warm-white:#fffdf9;
  --text:      #2a2a35;
  --text-muted:#6b6b82;
  --border:    rgba(43,45,94,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--navy-light); }
.section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
}
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head .section-desc { margin: 0 auto; }

/* ── CONTAINER ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 20px rgba(43,45,94,0.3);
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(43,45,94,0.4); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: white; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,253,249,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(43,45,94,0.08);
  padding: 0.65rem 2rem;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-mobile a {
  padding: 0.85rem 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { background: var(--rose-light); }
.nav-mobile.open { display: flex; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 40%, rgba(245,198,216,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 60%),
    linear-gradient(160deg, var(--warm-white) 0%, #fce8f0 40%, var(--rose-light) 70%, var(--warm-white) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,198,216,0.4) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
  max-width: 750px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy-light);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp 1s 0.8s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee-wrap {
  background: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--rose-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.marquee-track .dot {
  font-style: normal;
  color: var(--gold);
  font-size: 0.6rem;
}

/* ══════════════════════════════════
   COLLECTION
══════════════════════════════════ */
.collection {
  padding: 7rem 0;
  background: var(--cream);
}
.collection-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.col-card--wide { grid-row: span 2; }
.col-card { border-radius: var(--radius); overflow: hidden; }
.col-card-inner {
  padding: 2rem;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.col-card:hover .col-card-inner { transform: translateY(-4px); filter: brightness(1.06); }
.col-card-inner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.col-card-icon { font-size: 2rem; }
.col-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
}
.col-card-inner p { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; }
.col-card-inner ul { font-size: 0.82rem; opacity: 0.8; display: flex; flex-direction: column; gap: 0.3rem; margin-top: auto; }
.col-card-inner ul li::before { content: '— '; opacity: 0.6; }

/* ══════════════════════════════════
   WHY US
══════════════════════════════════ */
.why-us {
  padding: 7rem 0;
  background: var(--warm-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon { font-size: 1.5rem; flex-shrink: 0; padding-top: 2px; }
.why-feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
}
.why-feature p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.why-visual { display: flex; justify-content: center; }
.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 340px;
}
.why-stat {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: white;
  box-shadow: 0 8px 30px rgba(43,45,94,0.2);
  transition: var(--transition);
}
.why-stat:hover { transform: translateY(-4px) rotate(-1deg); }
.why-stat:nth-child(even) { transform: translateX(24px); background: linear-gradient(135deg, #c14b8a 0%, #8b3a6e 100%); }
.why-stat:nth-child(even):hover { transform: translateX(24px) translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--rose-light);
}
.stat-num sup { font-size: 1.5rem; }
.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
  line-height: 1.4;
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: linear-gradient(160deg, var(--rose-light) 0%, var(--cream) 60%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}
.about-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-logo {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(43,45,94,0.15));
  transition: var(--transition);
}
.about-logo:hover { transform: scale(1.03); }
.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════════
   VISIT
══════════════════════════════════ */
.visit {
  padding: 7rem 0;
  background: var(--warm-white);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.visit-info { display: flex; flex-direction: column; gap: 2rem; }
.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.visit-icon { font-size: 1.4rem; flex-shrink: 0; padding-top: 2px; }
.visit-detail h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}
.visit-detail p, .visit-detail a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.visit-detail a:hover { color: var(--navy); }
.map-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  transition: var(--transition);
  cursor: pointer;
}
.contact-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 30px rgba(43,45,94,0.12);
  transform: translateY(-4px);
}
.contact-icon { font-size: 2rem; }
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy-deep);
}
.contact-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  padding: 5rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.65;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-logo { height: 56px; width: auto; filter: brightness(1.1); }
.footer-links-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links-col ul li, .footer-links-col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-links-col ul a:hover { color: var(--rose-light); }
.footer-bottom {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-legal strong { color: rgba(255,255,255,0.8); }
.footer-legal a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.footer-copy p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-policy-links {
  display: flex;
  gap: 1.2rem;
}
.footer-policy-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-policy-links a:hover { color: var(--rose-light); }

/* ══════════════════════════════════
   POLICY PAGES
══════════════════════════════════ */
.policy-page {
  padding: 10rem 2rem 6rem;
  min-height: 80vh;
  max-width: 820px;
  margin: 0 auto;
}
.policy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}
.policy-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.policy-page h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
}
.policy-page h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.policy-page p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.policy-page ul, .policy-page ol {
  margin: 0.75rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.policy-page ul li { list-style: disc; }
.policy-page ol li { list-style: decimal; }
.policy-page li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.policy-page a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.policy-page .highlight-box {
  background: var(--rose-light);
  border-left: 4px solid var(--navy);
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--navy-deep);
}
.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
}
.policy-page th {
  background: var(--navy);
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 500;
}
.policy-page td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.policy-page tr:nth-child(even) td { background: var(--cream); }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Scroll-triggered fade */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .col-card--wide { grid-row: span 1; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .collection-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-logo { width: 180px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-copy { align-items: flex-start; }
  .hero-cta { flex-direction: column; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
  .container { padding: 0 1.25rem; }
}
