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

:root {
  --ink:        #1A1208;
  --ivory:      #F7EFE0;
  --gold:       #C9873A;
  --maroon:     #7B3F2A;
  --parchment:  #E8D9C5;
  --forest:     #1A4A35;
  --forest-deep:#0F2E20;
  --forest-mid: #2A6B4F;
  --white:      #FFFFFF;
  --border:     #E8E0D4;
  --text-light: #888880;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  gap: 24px;
}

.nav-logo {
  justify-self: center;
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}

.nav-logo img {
  height: 60px;
  object-fit: contain;
}

.nav-links-left,
.nav-links-right {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links-right { justify-content: flex-end; }

.nav-links-left a,
.nav-links-right a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links-left a:hover,
.nav-links-right a:hover { color: var(--forest); }

/* ── HERO BANNER ── */
.hero-banner {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}

.hero-banner > img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(10%) brightness(0.82);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,46,32,0.65) 0%, rgba(15,46,32,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 80px 80px;
}

.hero-banner-label {
  font-family: 'Cormorant SC', serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-banner-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.0;
  margin-bottom: 36px;
}

.btn-cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.btn-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── COLLECTION CARDS ── */
.collection-cards { background: var(--white); }

.collection-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) brightness(0.9);
  transition: transform 0.6s ease;
}

.collection-card:hover img { transform: scale(1.04); }

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,46,32,0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: background 0.3s;
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(15,46,32,0.92) 0%, rgba(15,46,32,0.2) 70%);
}

.collection-card-label {
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 6px;
}

.collection-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 12px;
  line-height: 1.2;
}

.collection-card-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(247,239,224,0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.collection-card:hover .collection-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── FEATURED SECTION ── */
.featured-section {
  padding: 80px 40px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.featured-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}

.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 300;
  color: var(--ink);
}

.featured-explore {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.featured-explore:hover { color: var(--gold); border-color: var(--gold); }

/* 4-column product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
}

.product-tile { cursor: pointer; }

.product-tile-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 680/920;
  background: var(--parchment);
  margin-bottom: 16px;
}

.product-tile-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) brightness(0.95);
  transition: opacity 0.4s ease;
}

.product-tile-img-hover { opacity: 0; }
.product-tile:hover .product-tile-img > img:first-child { opacity: 0; }
.product-tile:hover .product-tile-img-hover { opacity: 1; }

.product-tile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.product-tile-detail {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-tile-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 12px;
}

.product-tile-btn {
  display: inline-block;
  padding: 9px 24px;
  border: 1px solid var(--forest);
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.product-tile-btn:hover {
  background: var(--forest);
  color: var(--white);
}

/* ── CATEGORY BANNERS ── */
.cat-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border);
}

.cat-banner {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/5;
  text-decoration: none;
}

.cat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) brightness(0.85);
  transition: transform 0.6s ease;
}

.cat-banner:hover img { transform: scale(1.04); }

.cat-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15,46,32,0.25);
  transition: background 0.3s;
}

.cat-banner:hover .cat-banner-overlay { background: rgba(15,46,32,0.5); }

.cat-banner-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--ivory);
  text-align: center;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.cat-banner-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid rgba(247,239,224,0.6);
  padding-bottom: 3px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.cat-banner:hover .cat-banner-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── BRAND STORY ── */
.brand-story {
  padding: 100px 40px;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.brand-story-inner { max-width: 680px; margin: 0 auto; }

.brand-story-eyebrow {
  font-family: 'Cormorant SC', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--forest);
  margin-bottom: 24px;
}

.brand-story-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 28px;
}

.brand-story-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(26,18,8,0.65);
  line-height: 1.85;
  margin-bottom: 40px;
}

.btn-outline-dark {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.btn-outline-dark:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

/* ── INSTAGRAM STRIP ── */
.insta-strip {
  padding: 64px 40px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.insta-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.insta-strip-label {
  font-family: 'Cormorant SC', serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--ink);
}

.insta-strip-handle {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
}

.insta-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}

.insta-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) brightness(0.95);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.insta-item:hover img {
  transform: scale(1.05);
  filter: sepia(0%) brightness(1);
}

/* ── FOOTER ── */
/* ── SITE FOOTER ── */
.site-footer {
  background: var(--ivory);
  border-top: 1px solid var(--border);
  padding: 72px 60px 40px;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e8e0d4;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
}

.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

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

.footer-social a {
  color: #888;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: var(--ink); }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-col a:hover { color: var(--gold); }

.site-footer-legal {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-footer-legal p {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #bbb;
}

/* ── INNER PAGES (About / Contact / Terms / Privacy) ── */
.page-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}

.page-hero {
  background: var(--forest-deep);
  padding: 180px 60px 80px;
  border-bottom: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 2px 3px at 50% 50%, rgba(201,135,58,0.08) 100%, transparent 100%);
  background-size: 28px 36px;
  pointer-events: none;
}

.page-hero-breadcrumb {
  font-family: 'Cormorant SC', serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--ivory);
  margin-bottom: 20px;
  position: relative;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--ivory);
  position: relative;
}

/* ── ABOUT PAGE ── */
.content-section {
  padding: 80px 60px;
  background: var(--white);
  max-width: 820px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Cormorant SC', serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  color: var(--forest);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.15;
  color: var(--ink);
}

.content-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 52px;
  margin-bottom: 16px;
  padding-top: 52px;
  border-top: 1px solid var(--border);
}

.content-section h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.content-section p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(26,18,8,0.68);
  line-height: 1.9;
  margin-bottom: 18px;
}

.content-section ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.content-section ul li {
  font-size: 15px;
  font-weight: 300;
  color: rgba(26,18,8,0.68);
  line-height: 1.9;
  margin-bottom: 4px;
}

.policy-date {
  font-family: 'Cormorant SC', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--forest);
  margin-bottom: 52px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.about-value {
  background: var(--white);
  padding: 48px 40px;
}

.about-value h4 {
  font-family: 'Cormorant SC', serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--forest);
  margin-bottom: 16px;
}

.about-value p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(26,18,8,0.6);
}

/* ── CONTACT PAGE ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-label {
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--forest);
  margin-bottom: 8px;
}

.contact-detail { margin-bottom: 36px; }

.contact-detail p,
.contact-detail a {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.7;
}

.contact-detail a:hover { color: var(--forest); }

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 36px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  appearance: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--forest); }
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--forest);
  color: var(--white);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

.btn-submit:hover { background: var(--gold); }

/* ── SHARED FOOTER FOR INNER PAGES ── */
footer {
  background: var(--forest-deep);
  color: rgba(247,239,224,0.7);
  padding: 64px 40px 0;
  border-top: 1px solid var(--gold);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,239,224,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  list-style: none;
  align-items: center;
}

.footer-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(247,239,224,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(247,239,224,0.45);
}

.footer-legal {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(247,239,224,0.28);
  line-height: 1.6;
}

/* ── ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  nav { height: 64px; }
  .nav-inner { padding: 0 20px; }
  .nav-links-left, .nav-links-right { display: none; }
  .hero-banner { margin-top: 64px; }

  .hero-banner { margin-top: 72px; }
  .hero-banner-overlay { padding: 48px 32px; }

  .collection-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-banners { grid-template-columns: 1fr; }
  .insta-strip-grid { grid-template-columns: repeat(3, 1fr); }

  .site-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .site-footer-cols { grid-template-columns: repeat(2, 1fr); }

  .featured-section { padding: 60px 24px; }
  .brand-story { padding: 72px 24px; }
  .insta-strip { padding: 48px 24px; }
  .site-footer { padding: 48px 24px 0; }

  .contact-wrapper { grid-template-columns: 1fr; padding: 60px 24px; gap: 56px; }
  .about-grid { grid-template-columns: 1fr; }
  .content-section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 60px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .collection-cards-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .insta-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer-cols { grid-template-columns: 1fr; }
  .featured-header { flex-direction: column; gap: 12px; align-items: flex-start; }
}
