*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --cream: #FAF7F2;
  --dark: #1A1714;
  --burgundy: #7A2D2D;
  --warm-gray: #B5A99A;
  --light-taupe: #E8E0D6;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', Helvetica, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: var(--sans); font-weight: 300; line-height: 1.6; overflow-x: hidden; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px 48px;
  background: rgba(250,247,242,0.92); backdrop-filter: blur(12px);
  transition: box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled { box-shadow: 0 1px 0 var(--light-taupe); padding: 14px 48px; }
.nav-logo { height: 52px; transition: height 0.4s; cursor: pointer; }
.nav.scrolled .nav-logo { height: 40px; }
.nav-links {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  display: flex; gap: 32px;
}
.nav-links a {
  color: var(--dark); text-decoration: none; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; position: relative;
  transition: color 0.3s; font-weight: 400;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--burgundy); transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--burgundy); }
.menu-btn {
  position: absolute; left: 48px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 8px; display: none;
}
.menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--dark); margin: 5px 0; transition: transform 0.3s; }

/* MOBILE NAV */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--cream); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  color: var(--dark); text-decoration: none; font-family: var(--serif);
  font-size: 32px; font-weight: 300; letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--burgundy); }

@media(max-width:900px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
}

/* HERO */
.hero {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero > img, .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.6) 0%, rgba(26,23,20,0.1) 40%, transparent 60%);
}
.hero-text {
  position: relative; z-index: 2; text-align: center;
  padding: 0 20px 80px; color: white; will-change: transform, opacity;
}
.hero-h1 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 5vw, 64px);
  letter-spacing: 0.04em; line-height: 1.2; margin-bottom: 16px;
}
.hero-sub {
  font-size: 15px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85;
}
.scroll-indicator { margin-top: 32px; display: flex; justify-content: center; }
.scroll-line {
  width: 1px; height: 48px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: white; animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }

/* PAGE HERO (shorter, for inner pages) */
.page-hero {
  height: 60vh; min-height: 400px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.page-hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; will-change: transform;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(26,23,20,0.45);
}
.page-hero-text {
  position: relative; z-index: 2; text-align: center; color: white; padding: 0 20px;
}
.page-hero-text h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 5vw, 72px); letter-spacing: 0.04em;
}
.page-hero-text p {
  margin-top: 16px; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8;
}

/* SECTIONS */
section { padding: 120px 48px; }
@media(max-width:600px) { section { padding: 72px 20px; } }
.section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  text-align: center; margin-bottom: 20px; letter-spacing: 0.02em;
}
.section-sub {
  text-align: center; max-width: 640px; margin: 0 auto 64px;
  font-size: 15px; color: #6B6259; line-height: 1.8;
}

/* STATS */
.stats-section { background: var(--dark); color: var(--cream); padding: 80px 48px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: 1000px; margin: 0 auto;
}
@media(max-width:768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 56px);
  font-weight: 300; color: var(--warm-gray); line-height: 1;
}
.stat-label {
  margin-top: 8px; font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.7;
}

/* TWO COL */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  max-width: 1100px; margin: 0 auto; align-items: center;
}
@media(max-width:768px) { .two-col { grid-template-columns: 1fr; } }
.two-col img { width: 100%; object-fit: cover; display: block; }
.two-col-text h2 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 4px; line-height: 1.25;
}
.two-col-text p { font-size: 15px; color: #5A5249; line-height: 1.85; margin-bottom: 16px; }
.tag {
  display: inline-block; margin-top: 12px; padding: 10px 24px;
  border: 1px solid var(--warm-gray); font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.4s, color 0.4s; cursor: default;
}
.tag:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }

/* FULL BLEED */
.full-bleed {
  width: 100%; height: 70vh; min-height: 400px;
  position: relative; overflow: hidden;
}
.full-bleed > img { position: absolute; inset: -10%; width: 120%; height: 120%; object-fit: cover; will-change: transform; }
.full-bleed-overlay {
  position: absolute; inset: 0; background: rgba(26,23,20,0.35);
  display: flex; align-items: center; justify-content: center;
}
.full-bleed-text { color: white; text-align: center; padding: 0 20px; }
.full-bleed-text h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(24px, 4vw, 48px); letter-spacing: 0.06em;
}

/* CYCLE */
.cycle-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: 1100px; margin: 0 auto;
}
@media(max-width:768px) { .cycle-grid { grid-template-columns: repeat(2, 1fr); } }
.cycle-item { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.cycle-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.cycle-item:hover img { transform: scale(1.08); }
.cycle-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(transparent, rgba(26,23,20,0.75));
  color: white; font-family: var(--serif); font-size: 18px;
  letter-spacing: 0.04em; display: flex; flex-direction: column;
}
.cycle-num {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.15em;
  opacity: 0.6; margin-bottom: 4px;
}

/* GALLERY */
.gallery-section { padding: 120px 0 120px 48px; }
.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; padding-right: 48px;
}
.gallery-arrows { display: flex; gap: 8px; }
.arrow-btn {
  width: 48px; height: 48px; border: 1px solid var(--dark); background: none;
  font-size: 18px; cursor: pointer; transition: all 0.3s; display: flex;
  align-items: center; justify-content: center;
}
.arrow-btn:hover { background: var(--dark); color: var(--cream); }
.arrow-btn.disabled { opacity: 0.25; pointer-events: none; }
.gallery-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 20px;
  scrollbar-width: none; scroll-snap-type: x mandatory;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-img {
  height: 420px; width: auto; object-fit: cover; display: block;
  scroll-snap-align: start;
}
@media(max-width:768px) { .gallery-img { height: 300px; } }

/* PRODUCTS GRID */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 1100px; margin: 0 auto;
}
@media(max-width:768px) { .products-grid { grid-template-columns: 1fr; } }
.product-card { text-align: center; cursor: pointer; }
.product-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 24px; display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.product-card:hover img { transform: scale(0.97); }
.product-card h3 {
  font-family: var(--serif); font-weight: 400; font-size: 24px; margin-bottom: 8px;
}
.product-card p { font-size: 13px; color: #7A7068; line-height: 1.7; }
.product-card .product-link {
  display: inline-block; margin-top: 12px; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--burgundy);
  text-decoration: none; border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.product-card:hover .product-link { border-color: var(--burgundy); }

/* PRODUCT DETAIL LIST */
.product-detail {
  max-width: 1100px; margin: 0 auto;
}
.product-detail-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 64px 0; border-bottom: 1px solid var(--light-taupe);
  align-items: center;
}
.product-detail-row:last-child { border-bottom: none; }
.product-detail-row.reverse { direction: rtl; }
.product-detail-row.reverse > * { direction: ltr; }
@media(max-width:768px) { .product-detail-row, .product-detail-row.reverse { grid-template-columns: 1fr; direction: ltr; } }
.product-detail-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.product-detail-info h3 {
  font-family: var(--serif); font-weight: 400; font-size: 28px; margin-bottom: 8px;
}
.product-detail-info .product-type {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 16px;
}
.product-detail-info p { font-size: 14px; color: #5A5249; line-height: 1.85; margin-bottom: 12px; }
.product-detail-info ul {
  list-style: none; padding: 0; margin-top: 16px;
}
.product-detail-info ul li {
  font-size: 13px; color: #6B6259; padding: 6px 0;
  border-bottom: 1px solid var(--light-taupe);
}

/* VALUES */
.values-section { background: var(--light-taupe); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  max-width: 900px; margin: 0 auto;
}
@media(max-width:768px) { .values-grid { grid-template-columns: 1fr; } }
.value { text-align: center; }
.value h4 {
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  margin-bottom: 4px; color: var(--burgundy);
}
.value p { font-size: 13px; color: #5A5249; line-height: 1.8; }

/* CONTACT */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1000px; margin: 0 auto;
}
@media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 {
  font-family: var(--serif); font-weight: 400; font-size: 28px; margin-bottom: 24px;
}
.contact-info p { font-size: 14px; color: #5A5249; line-height: 1.85; margin-bottom: 20px; }
.contact-detail { margin-bottom: 28px; }
.contact-detail-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 6px;
}
.contact-detail p { margin-bottom: 4px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #6B6259; margin-bottom: 6px; display: block;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 0; border: none; border-bottom: 1px solid var(--warm-gray);
  background: transparent; font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--dark); outline: none; transition: border-color 0.3s; resize: none;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--burgundy);
}
.contact-form textarea { min-height: 100px; }
.submit-btn {
  align-self: flex-start; padding: 14px 48px; background: var(--dark);
  color: var(--cream); border: none; font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  transition: background 0.3s;
}
.submit-btn:hover { background: var(--burgundy); }

/* TIMELINE */
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: var(--light-taupe); transform: translateX(-50%);
}
@media(max-width:768px) { .timeline::before { left: 20px; } }
.timeline-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 40px 0; position: relative;
}
@media(max-width:768px) { .timeline-item { grid-template-columns: 1fr; padding-left: 48px; } }
.timeline-item::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 10px; height: 10px; background: var(--burgundy); border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media(max-width:768px) { .timeline-item::before { left: 20px; } }
.timeline-year {
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  color: var(--warm-gray); text-align: right; padding-right: 48px;
}
@media(max-width:768px) { .timeline-year { text-align: left; padding-right: 0; font-size: 32px; } }
.timeline-content h4 {
  font-family: var(--serif); font-weight: 400; font-size: 20px; margin-bottom: 8px;
}
.timeline-content p { font-size: 14px; color: #5A5249; line-height: 1.8; }

/* FOOTER */
footer {
  background: var(--dark); color: var(--cream); padding: 72px 48px;
  text-align: center;
}
footer img { height: 48px; margin-bottom: 28px; filter: invert(1); cursor: pointer; }
footer p { font-size: 13px; opacity: 0.5; letter-spacing: 0.08em; }
.footer-links {
  margin: 24px 0; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.footer-links a {
  color: var(--warm-gray); text-decoration: none; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.footer-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: white; transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.footer-links a:hover { color: white; }
.footer-links a:hover::after { width: 100%; }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.footer-bottom a {
  color: rgba(255,255,255,0.3); text-decoration: none; font-size: 12px;
  letter-spacing: 0.06em; transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--warm-gray); }

/* CTA BANNER */
.cta-banner {
  background: var(--burgundy); color: white; padding: 80px 48px; text-align: center;
}
.cta-banner h2 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px; letter-spacing: 0.02em;
}
.cta-banner p {
  font-size: 15px; opacity: 0.8; max-width: 500px; margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-btn {
  display: inline-block; padding: 14px 48px; border: 1px solid white;
  color: white; text-decoration: none; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.4s, color 0.4s;
}
.cta-btn:hover { background: white; color: var(--burgundy); }
