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

:root {
  --gold: #C8A96E;
  --gold-light: #E2C98A;
  --gold-pale: #F7F0E2;
  --ivory: #FDFAF5;
  --charcoal: #1C1A17;
  --dark-brown: #2A231C;
  --mid-brown: #5E5044;
  --text: #35291F;
  --border: rgba(200,169,110,0.30);
  --white: #ffffff;
  --shadow: rgba(28,26,23,0.10);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ivory);
  color: var(--text);
  font-family: 'EB Garamond', Georgia, serif;
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--gold-light); }
main { flex: 1; }
img { max-width: 100%; display: block; }

.site-header {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 24px var(--shadow);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,250,244,0.62);
  padding: 0.45rem 0.9rem;
  border: 1px solid transparent;
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-color: var(--border);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,250,244,0.65);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.12);
  transition: color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); }

.hero {
  background: var(--charcoal);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 40%, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.15s forwards;
}

.hero-rule::before,
.hero-rule::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-rule::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-rule i {
  color: var(--gold);
  font-size: 0.6rem;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.42em;
  color: rgba(200,169,110,0.7);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.28s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  letter-spacing: 0.03em;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.38s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 1.08rem;
  font-style: italic;
  color: rgba(253,250,244,0.55);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.62s forwards;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.rule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.2rem 0 2rem;
}

.rule::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.rule i {
  color: var(--gold);
  font-size: 0.55rem;
}

.rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.about-text {
  font-size: 1.05rem;
  color: var(--mid-brown);
  line-height: 1.9;
  max-width: 800px;
}

.about-text + .about-text {
  margin-top: 1rem;
}

.strip-dark {
  background: var(--dark-brown);
  padding: 5rem 2rem;
}

.strip-dark .section-title { color: var(--ivory); }
.strip-dark .section-label { color: var(--gold-light); }
.strip-dark .about-text { color: rgba(253,250,244,0.65); max-width: 100%; }
.strip-dark .rule::after { background: rgba(200,169,110,0.2); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px var(--shadow);
}

.info-card-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-card-icon i {
  color: var(--gold);
  font-size: 0.9rem;
}

.info-card-title {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.96rem;
  color: var(--mid-brown);
  line-height: 1.75;
}

.info-card a {
  color: var(--mid-brown);
  word-break: break-word;
}

.info-card a:hover { color: var(--gold); }

.doc-hero {
  background: var(--charcoal);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.doc-hero .hero-rule,
.doc-hero .hero-eyebrow,
.doc-hero .hero-title {
  animation: none;
  opacity: 1;
}

.doc-hero .hero-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin-bottom: 0;
}

.doc-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.doc-intro {
  background: linear-gradient(135deg, var(--gold-pale), var(--white));
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  font-style: italic;
  color: var(--mid-brown);
  font-size: 1.02rem;
  line-height: 1.85;
}

.doc-entry {
  margin-bottom: 2.8rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--border);
}

.doc-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.doc-entry-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.1rem;
}

.doc-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  border: 1px solid var(--border);
  margin-top: 0.15rem;
}

.doc-entry-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.4;
  padding-top: 0.7rem;
}

.doc-entry p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.88;
  margin-bottom: 0.9rem;
}

.doc-entry p:last-child { margin-bottom: 0; }

.doc-entry strong { color: var(--dark-brown); font-weight: 500; }

.doc-entry ul {
  list-style: none;
  margin: 0.6rem 0 0.9rem 0;
}

.doc-entry ul li {
  padding: 0.3rem 0 0.3rem 1.8rem;
  position: relative;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.82;
}

.doc-entry ul li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.78rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.doc-entry ul li:last-child { margin-bottom: 0; }

.doc-sub-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-brown);
  margin: 1.2rem 0 0.5rem;
}

.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-about {
  color: rgba(253,250,244,0.45);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,250,244,0.5);
  font-size: 0.82rem;
  transition: all 0.25s;
  flex-shrink: 0;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a {
  color: rgba(253,250,244,0.5);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.22s;
}

.footer-nav-list a i {
  font-size: 0.7rem;
  color: var(--gold);
  width: 14px;
}

.footer-nav-list a:hover { color: var(--gold); }

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(253,250,244,0.5);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-contact-list li i {
  color: var(--gold);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 0.22rem;
  width: 16px;
}

.footer-contact-list a {
  color: rgba(253,250,244,0.5);
  word-break: break-word;
}

.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(200,169,110,0.15);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: rgba(253,250,244,0.3);
  font-size: 0.84rem;
  font-style: italic;
}

.footer-legal-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.footer-legal-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,250,244,0.35);
  transition: color 0.22s;
}

.footer-legal-links a:hover { color: var(--gold); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .header-inner { padding: 0 1.2rem; }

  .brand-logo { height: 44px; }

  .hero { padding: 4.5rem 1.2rem 3.5rem; }

  .section { padding: 3.5rem 1.2rem; }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .doc-body { padding: 2.5rem 1.2rem; }

  .doc-hero { padding: 3.5rem 1.2rem 2.5rem; }

  .strip-dark { padding: 3.5rem 1.2rem; }
}

@media (max-width: 480px) {
  .brand-logo { height: 38px; }

  .hero-title { font-size: 1.9rem; }

  .footer-legal-links { flex-direction: column; gap: 0.8rem; }

  .doc-intro { padding: 1.2rem 1.3rem; }

  .doc-entry-header { gap: 0.8rem; }
}
