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

:root {
  --red: #C8102E;
  --red-light: #f5e6e9;
  --black: #111111;
  --grey: #6b6b6b;
  --light: #f7f7f5;
  --border: #e8e8e4;
  --white: #ffffff;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: 'Inter', sans-serif; font-weight: 300; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 4rem;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo svg { width: 22px; height: 22px; fill: var(--red); flex-shrink: 0; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--black); letter-spacing: 0.01em; line-height: 1; }
.nav-logo-text span { display: block; font-family: 'Inter', sans-serif; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--grey); font-size: 0.8rem; letter-spacing: 0.06em; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-cta { background: var(--black) !important; color: var(--white) !important; padding: 0.6rem 1.4rem !important; border-radius: 2px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--red) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 22px; height: 1.5px; background: var(--black); display: block; }

/* PAGE PADDING */
.page-body { padding-top: var(--nav-h); }

/* HERO BANNER (inner pages) */
.page-hero {
  background: var(--light);
  padding: 5rem 4rem 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero .breadcrumb { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: var(--red); text-decoration: none; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.05; }
.page-hero p { color: var(--grey); font-size: 1rem; line-height: 1.75; max-width: 540px; margin-top: 1rem; }

/* SECTIONS */
section { padding: 5rem 4rem; }
.section-tag { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 0.6rem; display: block; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; }
.intro-text { color: var(--grey); font-size: 0.95rem; line-height: 1.8; max-width: 580px; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.85rem 2rem; border-radius: 2px; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--red); }
.btn-outline { background: transparent; color: var(--black); border: 1px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #a00d24; }

/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.product-card { background: var(--white); overflow: hidden; text-decoration: none; color: var(--black); transition: box-shadow 0.3s; display: block; }
.product-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.1); z-index: 1; position: relative; }
.product-card-img { height: 280px; overflow: hidden; background: var(--light); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; filter: brightness(0.95); }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1.5rem; border-top: 1px solid var(--border); }
.product-card-cat { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 0.4rem; display: block; }
.product-card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; }
.product-card-body p { font-size: 0.78rem; color: var(--grey); line-height: 1.6; }
.product-card-arrow { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--black); margin-top: 1rem; }

/* BRAND CARD */
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.brand-card { border: 1px solid var(--border); border-radius: 3px; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.brand-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.brand-card-img { height: 220px; overflow: hidden; background: var(--light); }
.brand-card-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-card-body { padding: 1.75rem; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.brand-origin { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 0.75rem; display: block; }
.brand-card-body p { font-size: 0.82rem; color: var(--grey); line-height: 1.75; margin-bottom: 1.25rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { font-size: 0.68rem; letter-spacing: 0.08em; background: var(--light); border: 1px solid var(--border); padding: 0.3rem 0.75rem; border-radius: 20px; color: var(--grey); }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 4rem; border-top: 1px solid #222; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #222; }
.footer-brand p { font-size: 0.8rem; line-height: 1.7; margin-top: 1rem; color: rgba(255,255,255,0.4); max-width: 240px; }
.footer-col h5 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }
.social-row { display: flex; gap: 0.75rem; }
.social-btn { width: 36px; height: 36px; border: 1px solid #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.4); transition: border-color 0.2s, color 0.2s; }
.social-btn:hover { border-color: var(--red); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.footer-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer-logo-text span { display: block; font-family: 'Inter', sans-serif; font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* UTILS */
.divider { height: 1px; background: var(--border); margin: 0 4rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.text-red { color: var(--red); }
.bg-light { background: var(--light); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  section { padding: 4rem 2rem; }
  .page-hero { padding: 4rem 2rem 3rem; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--border); z-index: 99; }
  .product-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .divider { margin: 0 2rem; }
}
