:root {
  --cream: #f8f4ee;
  --warm-white: #fdfaf6;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #9d7a45;
  --charcoal: #1a1714;
  --brown: #3d2b1f;
  --mid: #6b5744;
  --text-muted: #9a8778;
  --border: rgba(201, 169, 110, 0.25);
  --transition: 0.3s ease;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(253, 250, 246, 0.96);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}
.nav-logo em {
  font-style: italic;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 400;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-bag {
  background: none;
  border: 1px solid var(--border);
  padding: 9px 14px;
  cursor: pointer;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--transition);
}
.nav-bag:hover {
  border-color: var(--gold);
}
.nav-bag-count {
  font-size: 0.6rem;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--charcoal);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* PAGE HERO */
.page-hero {
  padding: 160px 48px 100px;
  background: linear-gradient(160deg, var(--warm-white) 55%, #f0e8da);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: 700px;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
}

/* ABOUT SECTION */
#about {
  padding: 100px 48px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 32px 32px 64px rgba(0, 0, 0, 0.1);
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold-light);
  z-index: -1;
}
.about-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 18px;
}
.about-link {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color var(--transition);
}
.about-link:hover {
  color: var(--gold);
}

/* VALUES */
.values-section {
  padding: 100px 48px;
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.value-card {
  background: var(--warm-white);
  padding: 48px 36px;
  border-bottom: 3px solid transparent;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 24px;
}
.value-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.value-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* CEO */
.ceo-section {
  padding: 100px 48px;
}
.ceo-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  background: var(--charcoal);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.ceo-inner::before {
  content: "❝";
  position: absolute;
  top: -10px;
  left: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 10rem;
  color: rgba(201, 169, 110, 0.1);
  line-height: 1;
}
.ceo-avatar {
  flex-shrink: 0;
}
.ceo-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.ceo-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ceo-name {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* TIMELINE */
.timeline-section {
  padding: 100px 48px;
  background: var(--cream);
}
.timeline {
  position: relative;
  margin-top: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 56px;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}
.timeline-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  width: 120px;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}
.timeline-content {
  flex: 1;
}
.timeline-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* FOOTER */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 72px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.footer-brand em {
  font-style: italic;
  color: var(--gold);
}
.footer-about {
  font-size: 0.78rem;
  color: rgba(253, 250, 246, 0.5);
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold-light);
  transition: all var(--transition);
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.75rem;
  color: rgba(253, 250, 246, 0.5);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--gold-light);
}
footer address {
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(253, 250, 246, 0.5);
  line-height: 1.9;
}
footer address a {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.68rem;
  color: rgba(253, 250, 246, 0.35);
  letter-spacing: 0.1em;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.65rem;
  color: rgba(253, 250, 246, 0.35);
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold-light);
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-icon {
  color: var(--gold);
}

@media (max-width: 900px) {
  nav {
    padding: 18px 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  .page-hero {
    padding: 120px 24px 60px;
  }
  #about {
    padding: 60px 24px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-accent {
    display: none;
  }
  .values-section {
    padding: 60px 24px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .ceo-section {
    padding: 60px 24px;
  }
  .ceo-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
  .timeline-section {
    padding: 60px 24px;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 48px;
  }
  .timeline-dot {
    left: 20px;
  }
  .timeline-year {
    width: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 48px 24px 24px;
  }
}
