@font-face {
  font-family: 'CharterCustom';
  src: url('../fonts/Charter Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SnellRoundhandCustom';
  src: url('../fonts/Snell Roundhand Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f1e8;
  --bg-soft: #efede6;
  --cream: #fbf8f1;
  --sand: #d4c5a2;
  --gold: #8c7441;
  --gold-dark: #6f5a34;
  --brown: #4e3a2d;
  --brown-deep: #2e2118;
  --text: #5c4a3b;
  --line: rgba(111, 90, 52, 0.18);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 22, 12, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'CharterCustom', Georgia, serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  font-family: 'CharterCustom', Georgia, serif;
  font-weight: 700;
  font-synthesis: weight;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.54);
  background: transparent;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.76);
}

.btn--gold {
  background: rgba(140,116,65,0.96);
  border-color: rgba(140,116,65,0.96);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(56,40,24,0.12);
}

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

.section { padding: 92px 0; }

.section-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
  line-height: 1.05;
  color: var(--brown);
  font-weight: 700;
  text-align: center;
}

.section-subtitle {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(92,74,59,0.84);
  text-align: center;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  overflow: visible;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(17,14,11,0.58), rgba(17,14,11,0.2));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand img {
  width: 176px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.96;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  cursor: pointer;
  opacity: 0.96;
}

.nav-dropdown-toggle .caret {
  font-size: 0.65em;
  opacity: 0.85;
  line-height: 1;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px 0 10px;
  background: rgba(17, 14, 11, 0.97);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 210;
}

@media (min-width: 821px) {
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-dropdown-panel a {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
  text-decoration: none;
  opacity: 1;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.nav-dropdown-panel a:hover {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 820px) {
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    text-align: left;
    padding: 4px 0;
  }

  .nav-dropdown-panel {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    transition: max-height 0.28s ease, opacity 0.2s ease;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    max-height: 360px;
    padding: 4px 0 8px 14px;
  }

  .nav-dropdown-panel a {
    padding: 10px 0;
    white-space: normal;
  }
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  min-height: 42px;
  padding: 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  color: var(--white);
  background-color: #221c18;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero > * {
  position: relative;
}

.hero .nav-wrap {
  z-index: 200;
}

.hero .hero-content {
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  gap: 24px;
  align-items: end;
  min-height: calc(100svh - 86px);
  padding: 64px 0 72px;
  min-width: 0;
}

.hero-copy {
  max-width: 520px;
  padding: 8vh 0 0;
  min-width: 0;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.65rem, 5.45vw, 4.85rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-title .script {
  display: block;
  margin-top: 8px;
  margin-left: 5px;
  font-family: 'SnellRoundhandCustom', 'Brush Script MT', cursive;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1;
  font-weight: 400;
  color: #e7dcc3;
}

.hero-subtitle {
  margin: 20px 0 34px;
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  color: rgba(255,255,255,0.92);
  max-width: 360px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

footer {
  color: var(--white);
  background: radial-gradient(circle at 20% 30%, rgba(140,97,42,0.22), transparent 32%), linear-gradient(180deg, #2b1d14 0%, #1b120d 100%);
  padding: 58px 0 42px;
  min-height: 320px;
}

.footer-title {
  text-align: center;
  margin: 0 0 24px;
  font-size: 1.12rem;
  opacity: 0.92;
  font-style: italic;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.footer-links a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  opacity: 0.92;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: grid;
  place-items: center;
  font-size: 0.92rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(14,10,7,0.68);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 60;
}

.modal.active { display: flex; }

.modal-card {
  width: min(100%, 660px);
  max-height: 88vh;
  overflow: auto;
  background: linear-gradient(180deg, #fbf8f0 0%, #f6f1e7 100%);
  border: 1px solid rgba(111,90,52,0.18);
  box-shadow: 0 28px 70px rgba(26,19,11,0.32);
  position: relative;
  padding: 28px 28px 32px;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  font-size: 1.7rem;
  cursor: pointer;
}

.modal h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--brown);
}

.modal h4 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
  color: var(--brown);
}

.modal p,
.modal li {
  margin: 0 0 12px;
  font-size: 1.03rem;
  color: rgba(92,74,59,0.9);
}

.modal ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; align-items: center; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 20px 20px;
    background: rgba(17,14,11,0.96);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    overflow: visible;
  }

  .nav-links.active { display: flex; }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0 28px;
  }

  .hero-copy {
    padding-top: 4vh;
    padding-bottom: 2vh;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 48px 0; }
  .brand img { width: 140px; }

  .section-title {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.96rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-title .script {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
    margin-top: 4px;
  }

  .hero-subtitle {
    margin: 12px 0 20px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 16px;
  }

  .btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.75rem;
  }

  .modal-card { padding: 20px 18px 22px; }
  .modal h3 { font-size: 1.55rem; }

  footer {
    min-height: 0;
    padding: 40px 0 32px;
  }

  .footer-title {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .footer-links { gap: 14px 18px; }
}
