*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --forest:  #1a3028;
  --pine:    #244536;
  --jade:    #3a6b52;
  --jade-lt: #5a9a78;
  --gold:    #c8973a;
  --gold-lt: #e0b060;
  --ink:     #1a2820;
  --mid:     #4a6358;
  --muted:   #8aaa98;
  --line:    #d0dbd5;
  --paper:   #f3f5f2;
  --cream:   #faf9f6;
  --white:   #ffffff;
  --red:     #b83228;
}
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans', sans-serif; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 62px;
}
.nav-logo {
  font-family: 'Noto Serif', serif; font-size: 1.1rem;
  color: var(--forest); text-decoration: none; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-dot { color: var(--red); font-size: 1.6rem; line-height: 0; }
.nav-sub { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-left: 0.3rem; border-left: 1px solid var(--line); padding-left: 0.8rem; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.77rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--forest); }

/* HERO */
.hero {
  background: var(--forest); padding: 5rem 5vw 4.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; overflow: hidden;
}
.hero-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.6rem; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--gold); }
.hero h1 { font-family: 'Noto Serif', serif; font-size: clamp(2rem, 3.8vw, 3.1rem); font-weight: 400; line-height: 1.22; color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 0.93rem; line-height: 1.85; color: rgba(255,255,255,0.52); max-width: 460px; margin-bottom: 2rem; }
.btn { display: inline-block; padding: 0.78rem 1.8rem; background: var(--gold); color: var(--forest); text-decoration: none; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s; }
.btn:hover { background: var(--gold-lt); }
.btn-ghost { display: inline-block; padding: 0.78rem 1.8rem; background: transparent; color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.25); text-decoration: none; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: border-color 0.2s, color 0.2s; margin-left: 0.75rem; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual svg { width: 100%; max-width: 420px; }

/* STATS */
.stats-row { background: var(--gold); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { padding: 1.5rem 1.2rem; border-right: 1px solid rgba(26,48,40,0.12); text-align: center; }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: 'Noto Serif', serif; font-size: 1.8rem; color: var(--forest); line-height: 1; margin-bottom: 0.25rem; }
.stat-sup { font-size: 1rem; }
.stat-label { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(26,48,40,0.6); }

/* SECTIONS */
section { padding: 5rem 5vw; }
.section-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--jade); margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.5rem; }
.section-label::before { content: ''; width: 14px; height: 1px; background: var(--jade); display: inline-block; }
h2 { font-family: 'Noto Serif', serif; font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 400; color: var(--forest); margin-bottom: 0.8rem; line-height: 1.25; }
.section-sub { font-size: 0.9rem; line-height: 1.85; color: var(--mid); max-width: 580px; }

/* ABOUT / HISTORY */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; }
.about-body p { font-size: 0.9rem; line-height: 1.95; color: var(--mid); margin-bottom: 1.1rem; }
.about-body p strong { color: var(--forest); font-weight: 600; }
.about-body .founding-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: rgba(200,151,58,0.1); border: 1px solid rgba(200,151,58,0.25); padding: 0.2rem 0.6rem; margin-bottom: 1rem; }

/* TIMELINE */
.timeline { position: relative; padding-left: 1.5rem; margin-top: 0.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(to bottom, var(--gold), var(--jade), transparent); }
.tl-item { position: relative; margin-bottom: 1.6rem; }
.tl-item::before { content: ''; position: absolute; left: -1.85rem; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); border: 2px solid var(--cream); }
.tl-year { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.2rem; }
.tl-text { font-size: 0.85rem; line-height: 1.7; color: var(--mid); }
.tl-text strong { color: var(--forest); font-weight: 600; }

/* VISION MISSION */
.vision-mission { background: var(--forest); }
.vision-mission .section-label { color: var(--jade-lt); }
.vision-mission .section-label::before { background: var(--jade-lt); }
.vision-mission h2 { color: var(--white); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.06); margin-top: 2.5rem; }
.vm-card { background: var(--pine); padding: 2.2rem 2rem; }
.vm-card-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.vm-card-title { font-family: 'Noto Serif', serif; font-size: 1.15rem; font-style: italic; color: var(--white); margin-bottom: 1.2rem; line-height: 1.4; }
.vm-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.vm-list li { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); padding-left: 1.1rem; position: relative; }
.vm-list li::before { content: '—'; position: absolute; left: 0; color: var(--jade-lt); font-size: 0.7rem; }

/* PILLARS */
.pillars-strip { background: var(--white); padding: 3.5rem 5vw; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar { background: var(--white); padding: 1.6rem 1.4rem; }
.pillar-char { font-family: 'Noto Serif', serif; font-size: 1.8rem; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.pillar-en { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); margin-bottom: 0.3rem; }
.pillar-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }

/* FACILITIES */
.facilities { background: var(--paper); }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}
.facility-card {
  background: var(--white);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.facility-card--featured { grid-row: span 2; }
.facility-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.facility-card--featured .facility-img { aspect-ratio: auto; flex: 1; min-height: 16rem; }
.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.facility-caption { padding: 1.1rem 1.3rem 1.3rem; }
.facility-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 0.35rem;
}
.facility-desc { font-size: 0.82rem; line-height: 1.65; color: var(--mid); }

/* BRANDS */
.brands { background: var(--white); }
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.5rem; }
.brand-card { background: var(--white); padding: 1.4rem 1.3rem; transition: background 0.2s; position: relative; display: flex; flex-direction: column; gap: 0.75rem; min-height: 8rem; }
.brand-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--jade); transition: width 0.3s; }
.brand-card:hover { background: var(--paper); }
.brand-card:hover::after { width: 100%; }
.brand-logo { display: flex; align-items: center; justify-content: flex-start; min-height: 2.75rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--line); }
.brand-logo img { display: block; max-width: 100px; max-height: 40px; width: auto; height: auto; object-fit: contain; object-position: left center; }
.brand-note { font-size: 0.72rem; color: var(--muted); line-height: 1.45; letter-spacing: 0.01em; }
.brands-note-row { background: rgba(26,48,40,0.04); border: 1px solid var(--line); border-top: none; padding: 1.2rem 1.4rem; display: flex; align-items: center; gap: 1rem; }
.brands-note-row span { font-size: 0.82rem; color: var(--mid); line-height: 1.6; }
.brands-note-row strong { color: var(--forest); }

/* WHY BUY */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.5rem; }
.why-card { background: var(--white); padding: 1.8rem 1.6rem; position: relative; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--gold); transition: height 0.3s; }
.why-card:hover::before { height: 100%; }
.why-num { font-family: 'Noto Serif', serif; font-size: 2rem; color: rgba(26,48,40,0.07); line-height: 1; margin-bottom: 0.6rem; }
.why-title { font-size: 0.85rem; font-weight: 600; color: var(--forest); margin-bottom: 0.4rem; }
.why-desc { font-size: 0.83rem; line-height: 1.75; color: var(--mid); }

/* CONTACT */
.contact { background: var(--forest); }
.contact .section-label { color: var(--jade-lt); }
.contact .section-label::before { background: var(--jade-lt); }
.contact h2 { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2.5rem; align-items: start; }
.contact-sub { font-size: 0.9rem; line-height: 1.85; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.contact-item { margin-bottom: 1.3rem; }
.contact-lbl { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.25rem; }
.contact-val { font-size: 0.93rem; color: rgba(255,255,255,0.82); }
.contact-val a { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 3px; }
.contact-visual { display: flex; justify-content: center; padding-top: 0.5rem; }
.contact-visual svg { width: 100%; max-width: 320px; }

/* FOOTER */
footer { background: #0f1c14; padding: 2rem 5vw; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-logo { font-family: 'Noto Serif', serif; font-size: 1rem; color: var(--white); display: flex; align-items: center; gap: 0.35rem; margin-bottom: 0.3rem; }
.footer-dot { color: var(--red); }
.footer-col { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-col-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.4rem; }

/* MOBILE */
@media (max-width: 760px) {
  .hero, .about-grid, .contact-grid, .vm-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .facilities-grid { grid-template-columns: 1fr; }
  .facility-card--featured { grid-row: span 1; }
  .facility-card--featured .facility-img { min-height: 0; aspect-ratio: 4 / 3; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .nav-sub { display: none; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .stat-cell:nth-child(4), .stat-cell:nth-child(5) { border-top: 1px solid rgba(26,48,40,0.12); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-ghost { margin-left: 0; display: inline-block; margin-top: 0.75rem; }
}
