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

/* ─── TOKENS ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* Brand */
  --red:     #D9504D;
  --red-d:   #C03E3B;
  --red-l:   #E8706D;
  --red-xs:  #FDF2F2;
  --red-s:   #FAE0DF;

  /* Neutrals */
  --ink:     #1E1918;
  --dark:    #2D2422;
  --mid:     #5C5450;
  --light:   #9A9490;
  --cream:   #F5EFE6;
  --cream-d: #EDE4D6;
  --warm:    #FDFAF5;
  --white:   #FFFFFF;

  /* Nature accent */
  --green:   #3B6B4E;
  --green-l: #5A8C6E;

  --shadow-sm: 0 2px 12px rgba(30,25,24,0.08);
  --shadow-md: 0 6px 28px rgba(30,25,24,0.12);
  --shadow-lg: 0 16px 48px rgba(30,25,24,0.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'DM Sans', system-ui, sans-serif;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }
body { font-family: var(--f-sans); background: var(--warm); color: var(--ink); overflow-x: hidden; line-height: 1.65; font-size: 16px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────── */
.serif { font-family: var(--f-serif); }
.tag-line { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 0.9rem; }
.h1 { font-family: var(--f-serif); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; line-height: 1.05; }
.h2 { font-family: var(--f-serif); font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 300; line-height: 1.12; margin-bottom: 1.2rem; }
.h3 { font-family: var(--f-serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; line-height: 1.25; margin-bottom: 0.75rem; }
.h2 em, .h3 em { font-style: italic; }
.body-l { font-size: 1rem; color: var(--mid); line-height: 1.8; }
.body-s { font-size: 0.88rem; color: var(--mid); line-height: 1.75; }

/* ─── BUTTONS ─────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.4rem; border-radius: 3rem; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: all 0.3s var(--ease); padding: 0.82rem 2rem; }
.btn-red  { background: var(--red); color: #fff; }
.btn-red:hover  { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,80,77,0.35); }
.btn-outline { border: 1.5px solid var(--red); color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ─── REVEAL ANIMATION ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ─── NAV ─────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px; padding: 0 4%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(253,250,245,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: var(--f-serif); font-size: 1.65rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; transition: color 0.4s;
}
.nav.scrolled .nav-logo { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); padding: 0.5rem 0.85rem; border-radius: var(--radius-sm);
  transition: all 0.25s; display: block;
}
.nav.scrolled .nav-links > li > a { color: var(--dark); }
.nav-links > li > a:hover { color: var(--red); }
.nav-links > li > a.active { color: var(--red); }
/* Dropdown */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 0.75rem 0;
  min-width: 240px; opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s var(--ease);
  border: 1px solid rgba(0,0,0,0.06);
}
.nav-links .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: block; padding: 0.6rem 1.25rem;
  font-size: 0.82rem; color: var(--dark);
  transition: all 0.2s; letter-spacing: 0.04em;
}
.dropdown-menu a:hover { background: var(--red-xs); color: var(--red); padding-left: 1.5rem; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-lang { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color 0.3s; padding: 0.3rem 0.5rem; }
.nav.scrolled .nav-lang { color: var(--light); }
.nav-lang:hover { color: var(--red) !important; }
.nav-cta { padding: 0.5rem 1.4rem; border-radius: 3rem; border: 1.5px solid rgba(255,255,255,0.35); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; transition: all 0.3s; }
.nav.scrolled .nav-cta { border-color: var(--red); color: var(--red); }
.nav-cta:hover { background: var(--red); border-color: var(--red); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all 0.3s; }
.nav.scrolled .hamburger span { background: var(--ink); }

/* ─── MOBILE MENU ─────────────────────────────── */
.mob-menu {
  position: fixed; inset: 0; z-index: 199;
  background: var(--dark); padding: 6rem 6% 4rem;
  transform: translateX(100%); transition: transform 0.55s var(--ease);
  overflow-y: auto;
}
.mob-menu.open { transform: translateX(0); }
.mob-links { list-style: none; }
.mob-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mob-links > li > a {
  font-family: var(--f-serif); font-size: clamp(1.6rem,4vw,2.2rem); font-weight: 300;
  color: #fff; display: block; padding: 0.8rem 0; transition: color 0.3s, padding-left 0.3s;
}
.mob-links > li > a:hover { color: var(--red-l); padding-left: 0.5rem; }
.mob-sub { padding: 0.5rem 0 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.mob-sub a { font-size: 0.78rem; color: rgba(255,255,255,0.5); padding: 0.3rem 0.9rem; border: 1px solid rgba(255,255,255,0.12); border-radius: 3rem; transition: all 0.2s; }
.mob-sub a:hover { border-color: var(--red-l); color: var(--red-l); }
.mob-foot { margin-top: 2rem; font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 2; }
.mob-foot a { color: var(--red-l); }

/* ─── TICKER ─────────────────────────────── */
.ticker { background: var(--red); padding: 0.75rem 0; overflow: hidden; white-space: nowrap; }
.t-track { display: inline-block; animation: tick 45s linear infinite; }
.t-item { display: inline-flex; align-items: center; gap: 2rem; padding: 0 2rem; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.t-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── PAGE HERO (interior pages) ─────────────────────────────── */
.page-hero {
  min-height: 52vh; background: var(--dark); position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.35; transition: transform 12s ease; }
.page-hero:hover .page-hero-bg { transform: scale(1.04); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,25,24,0.85) 0%, rgba(30,25,24,0.2) 70%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 6% 5rem; max-width: 900px; }
.page-hero-content .tag-line { color: rgba(255,255,255,0.65); margin-bottom: 0.75rem; }
.page-hero-content .h1 { color: #fff; }
.page-hero-content .h1 em { font-style: italic; color: var(--red-l); }
.page-hero-content .lead { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 540px; margin-top: 1rem; line-height: 1.8; }

/* ─── BREADCRUMB ─────────────────────────────── */
.breadcrumb { padding: 1.1rem 6%; background: var(--cream); display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--light); flex-wrap: wrap; }
.breadcrumb a { color: var(--mid); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red-d); }

/* ─── SECTION COMMONS ─────────────────────────────── */
.sec { padding: 5.5rem 6%; }
.sec-center { text-align: center; }
.sec-header { margin-bottom: 3.5rem; }
.sec-header .h2 { max-width: 660px; }
.sec-header.center .h2 { margin: 0 auto 1.2rem; }
.sec-header .body-l { max-width: 540px; }
.sec-header.center .body-l { margin: 0 auto; }

/* ─── PRODUCT GRID ─────────────────────────────── */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.prod-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--cream-d); transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-card-img { aspect-ratio: 4/3; overflow: hidden; }
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.prod-card:hover .prod-card-img img { transform: scale(1.07); }
.prod-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.prod-card-cat { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.prod-card-title { font-family: var(--f-serif); font-size: 1.2rem; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.3; }
.prod-card-desc { font-size: 0.8rem; color: var(--mid); line-height: 1.6; }

/* ─── CATEGORY HERO CARD ─────────────────────────────── */
.cat-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  cursor: pointer; display: block;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,25,24,0.88) 0%, rgba(30,25,24,0.05) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 1.75rem; transition: background 0.4s;
}
.cat-card:hover .cat-card-overlay { background: linear-gradient(to top, rgba(30,25,24,0.92) 0%, rgba(30,25,24,0.15) 55%); }
.cat-card-tag { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.4rem; }
.cat-card-title { font-family: var(--f-serif); font-size: 1.5rem; font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 0.5rem; }
.cat-card-arrow { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red-l); opacity: 0; transform: translateX(-6px); transition: all 0.3s; }
.cat-card:hover .cat-card-arrow { opacity: 1; transform: translateX(0); }

/* ─── INFO BOX ─────────────────────────────── */
.info-box { background: var(--red-xs); border: 1px solid var(--red-s); border-radius: var(--radius-md); padding: 1.5rem 2rem; display: flex; gap: 1rem; align-items: flex-start; }
.info-box-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-box-text { font-size: 0.88rem; color: var(--dark); line-height: 1.65; }
.info-box-text strong { color: var(--red-d); }

/* ─── FEATURE ROW ─────────────────────────────── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.feature-img { overflow: hidden; position: relative; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-body {
  padding: 5rem 6%; display: flex; flex-direction: column; justify-content: center;
}
.feature-body .tag-line { margin-bottom: 0.75rem; }
.feature-body .body-l { margin-bottom: 2rem; }

/* ─── HOURS GRID ─────────────────────────────── */
.hours-grid { border: 1px solid var(--cream-d); border-radius: var(--radius-lg); overflow: hidden; margin-top: 1.5rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1.5rem; border-bottom: 1px solid var(--cream-d); font-size: 0.88rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row.today { background: var(--red); color: #fff; }
.hours-time { font-size: 0.82rem; color: var(--green); }
.hours-row.today .hours-time { color: rgba(255,255,255,0.8); }

/* ─── ACCORDION (FAQ) ─────────────────────────────── */
.accordion { border: 1px solid var(--cream-d); border-radius: var(--radius-md); overflow: hidden; }
.accordion + .accordion { margin-top: 0.75rem; }
.acc-header { padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: var(--white); transition: background 0.2s; font-weight: 500; font-size: 0.95rem; }
.acc-header:hover { background: var(--red-xs); }
.acc-icon { font-size: 1.2rem; color: var(--red); transition: transform 0.3s; flex-shrink: 0; font-weight: 300; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.acc-body-inner { padding: 0 1.5rem 1.25rem; font-size: 0.88rem; color: var(--mid); line-height: 1.8; }
.accordion.open .acc-icon { transform: rotate(45deg); }
.accordion.open .acc-body { max-height: 400px; }

/* ─── FOOTER ─────────────────────────────── */
footer { background: var(--ink); color: rgba(255,255,255,0.45); padding: 4.5rem 6% 2rem; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.ft-logo { font-family: var(--f-serif); font-size: 1.7rem; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; margin-bottom: 0.75rem; }
.ft-tagline { font-family: var(--f-serif); font-style: italic; font-size: 0.9rem; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.ft-desc { font-size: 0.8rem; line-height: 1.8; max-width: 240px; margin-bottom: 1.25rem; }
.ft-badge { display: inline-block; font-size: 0.65rem; letter-spacing: 0.08em; padding: 0.3rem 0.9rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 3rem; color: rgba(255,255,255,0.3); }
.ft-h { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 1.25rem; }
.ft-l { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.ft-l a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.25s; }
.ft-l a:hover { color: var(--red-l); }
.ft-l li { font-size: 0.8rem; }
.ft-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.7rem; }
.ft-bottom a { color: rgba(255,255,255,0.3); transition: color 0.25s; }
.ft-bottom a:hover { color: var(--red-l); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links, .nav-cta, .nav-lang { display: none; }
  .hamburger { display: flex; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-img { min-height: 320px; }
}
@media (max-width: 768px) {
  .sec { padding: 4rem 5%; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .ft-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
}

/* ─── LOADER ─────────────────────────────── */
#loader { position: fixed; inset: 0; z-index: 9999; background: var(--red); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; transition: opacity 0.7s var(--ease), visibility 0.7s; }
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-word { font-family: var(--f-serif); font-size: clamp(2.5rem,6vw,5rem); color: #fff; letter-spacing: 0.4em; font-weight: 300; opacity: 0; animation: ldUp 0.8s 0.3s var(--ease) forwards; }
.ld-line { width: 180px; height: 1px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; opacity: 0; animation: ldUp 0.5s 0.9s forwards; }
.ld-line::after { content:''; position: absolute; left:0;top:0;bottom:0; background: #fff; animation: ldFill 1s 0.9s var(--ease) forwards; }
@keyframes ldFill { from{width:0} to{width:100%} }
@keyframes ldUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* ─── UTILITIES ─────────────────────────────── */
.pill-tag { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 1rem; background: var(--red-xs); border: 1px solid var(--red-s); border-radius: 3rem; font-size: 0.72rem; color: var(--red-d); letter-spacing: 0.05em; }
.divider { height: 1px; background: var(--cream-d); margin: 0; }
.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--dark); }
.bg-red   { background: var(--red); }
.text-white { color: #fff; }
.text-red   { color: var(--red); }
.max-w-text { max-width: 640px; }
