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

:root {
  --brown-dark:  #3B1F0E;
  --brown-deep:  #5C2E0A;
  --brown-mid:   #7B4A1E;
  --brown-light: #C4843A;
  --gold:        #D4A853;
  --gold-light:  #F0CC7A;
  --cream:       #FAF5EE;
  --cream-dark:  #EDE3D2;
  --white:       #FFFFFF;
  --text-dark:   #1C1008;
  --text-mid:    #5C3A1E;
  --shadow:      rgba(59,31,14,0.18);
  --nav-h:       72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw; height: var(--nav-h);
  background: rgba(250,245,238,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,132,58,0.2);
  box-shadow: 0 2px 20px var(--shadow);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 46px; width: 46px; object-fit: contain; border-radius: 50%; }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--brown-dark); line-height: 1.1; }
.nav-brand span { display: block; font-size: 0.56rem; font-family: 'Jost', sans-serif; font-weight: 500; letter-spacing: 0.26em; color: var(--brown-light); text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-mid); text-decoration: none;
  position: relative; padding-bottom: 2px; transition: color 0.25s;
}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--brown-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); left: 0;
  background: var(--white); border: 1px solid var(--cream-dark);
  box-shadow: 0 10px 40px var(--shadow); min-width: 210px;
  padding: 6px 0; border-radius: 3px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 18px; font-size: 0.76rem; color: var(--text-mid); letter-spacing: 0.1em; }
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--brown-dark); }
.nav-dropdown-menu a::after { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--brown-dark); border-radius: 2px; transition: 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: 13px 32px;
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  color: var(--white); font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(212,168,83,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,83,0.5); }
.btn-outline {
  display: inline-block; padding: 12px 32px;
  border: 1.5px solid var(--brown-light); color: var(--brown-dark);
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; background: transparent;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--brown-dark); color: var(--white); }

/* ── SECTIONS ── */
.section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 700; color: var(--brown-dark); line-height: 1.15; margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--brown-light); }
.section-divider { width: 52px; height: 3px; background: linear-gradient(90deg,var(--gold),var(--brown-light)); border-radius: 2px; margin-bottom: 28px; }
.section-body { font-size: 0.97rem; line-height: 1.9; color: var(--text-mid); max-width: 760px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 340px; padding: calc(var(--nav-h) + 60px) 6vw 60px;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg,var(--brown-dark) 0%,var(--brown-deep) 55%,var(--brown-mid) 100%); }
.page-hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(45deg,var(--gold) 0,var(--gold) 1px,transparent 0,transparent 50%); background-size: 18px 18px; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-title { color: var(--white); font-size: clamp(2rem,5vw,4rem); }
.page-hero .section-divider { background: linear-gradient(90deg,var(--gold-light),rgba(255,255,255,0.3)); }
.page-hero-sub { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; max-width: 580px; margin-top: 8px; }

/* ── BREADCRUMB ── */
.breadcrumb { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--brown-dark); color: rgba(255,255,255,0.65); padding: 60px 6vw 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 44px; }
.footer-brand img { height: 52px; width: 52px; object-fit: contain; border-radius: 50%; margin-bottom: 14px; }
.footer-brand h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 4px; }
.footer-brand .tagline { font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); }
.footer-brand p { font-size: 0.82rem; line-height: 1.8; margin-top: 14px; }
.footer-col h5 { font-family: 'Playfair Display', serif; font-size: 0.88rem; color: var(--white); margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 26px; height: 2px; background: var(--gold); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-info p { font-size: 0.82rem; margin-bottom: 10px; line-height: 1.7; }
.footer-info strong { color: var(--gold-light); display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.35); }

/* ── ACCREDITATIONS BAR ── */
.accred-bar { background: var(--cream-dark); padding: 28px 6vw; display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.accred-bar p { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown-mid); white-space: nowrap; }
.accred-badges { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.accred-badge { background: var(--white); border: 1px solid var(--cream-dark); border-radius: 4px; padding: 8px 18px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; color: var(--brown-mid); text-transform: uppercase; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--cream); padding: 16px 6vw 24px;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 8px 28px var(--shadow); gap: 0; z-index: 999;
  }
  .nav-links.open li { border-bottom: 1px solid var(--cream-dark); }
  .nav-links.open a { display: block; padding: 13px 0; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 14px; display: block; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
