:root {
  --sand:   #EEE8DC;
  --sand2:  #E5DECF;
  --black: #1C1A18;
  --gold:  #C49A2A;
  --muted: #7A7268;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
  --max:   1160px;
  --nav:   220px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--sand);
  background-image: url("data:image/svg+xml,%3Csvg width='88' height='88' viewBox='0 0 88 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpolygon points='44,8 76,64 12,64' stroke='%23C49A2A' stroke-width='0.7' opacity='0.05'/%3E%3C/g%3E%3C/svg%3E");
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; }

nav {
  position: relative;
  height: var(--nav);
  display: flex;
  align-items: center;
  padding: 0 80px;
  background: var(--sand);
  border-bottom: 1px solid rgba(196,154,42,0.15);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
  padding-right: 56px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo img { height: 200px; width: auto; display: block; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  flex: 1;
  justify-content: flex-start;
  padding-left: 56px;
}
.nav-left a, .nav-right a, .nav-drop-btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.nav-left a:hover, .nav-right a:hover, .nav-drop-btn:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  padding: 0;
  transition: color 0.2s;
}
.nav-cta:hover { color: var(--gold); }
.nav-dropdown { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.drop-arrow {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.22s;
  margin-top: 1px;
}
.nav-dropdown:hover .drop-arrow { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--sand);
  border: 1px solid rgba(196,154,42,0.22);
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(28,26,24,0.1);
  z-index: 600;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 14px 22px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid rgba(196,154,42,0.12);
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--sand2); color: var(--gold); }

.btn-dark {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  background: var(--black);
  padding: 16px 32px;
  transition: background 0.25s;
}
.btn-dark:hover { background: var(--gold); }
.btn-ghost {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  padding: 16px 32px;
  border: 1px solid rgba(28,26,24,0.3);
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.stub-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 52px 120px;
}
.stub-main h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 20px;
}
.stub-main h1 em { color: var(--gold); font-style: italic; }
.stub-main p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 22px;
}
.stub-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.stub-note {
  font-size: 14px !important;
  color: var(--black);
  opacity: 0.55;
  margin-top: 40px !important;
}

footer { background: var(--black); padding: 72px 52px 44px; }
.f-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 52px;
}
.f-logo { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--sand); margin-bottom: 14px; }
.f-tag { font-family: var(--sans); font-size: 13px; font-weight: 300; line-height: 1.85; color: rgba(238,232,220,0.4); }
.f-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 12px; }
.f-col a { font-family: var(--sans); font-size: 13px; font-weight: 300; color: rgba(238,232,220,0.5); transition: color 0.2s; }
.f-col a:hover { color: var(--gold); }
.f-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(238,232,220,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-bottom p { font-family: var(--sans); font-size: 11px; font-weight: 300; color: rgba(238,232,220,0.24); }
.f-bottom a { color: rgba(238,232,220,0.45); transition: color 0.2s; }
.f-bottom a:hover { color: var(--gold); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
nav.nav--open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav--open .nav-burger span:nth-child(2) { opacity: 0; }
nav.nav--open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; }
.nav-drawer-list { list-style: none; margin: 0; padding: 0; }
.nav-drawer-list li { border-top: 1px solid rgba(196,154,42,0.15); }
.nav-drawer-list li:first-child { border-top: none; }
.nav-drawer-list a {
  display: block;
  padding: 16px 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
}
.nav-drawer-list a:hover,
.nav-drawer-list a:focus { color: var(--gold); }
.nav-drawer-cta { color: var(--gold) !important; }

@media (max-width: 980px) {
  :root { --nav: 72px; }
  nav {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    padding: 0 20px;
    height: var(--nav);
  }
  .nav-burger {
    display: flex;
    grid-column: 1;
    grid-row: 1;
  }
  .nav-left { display: none !important; }
  .nav-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }
  .nav-right {
    grid-column: 3;
    grid-row: 1;
    flex: 0;
    padding-left: 0;
    gap: 0;
    justify-content: flex-end;
  }
  .nav-right li:not(:last-child) { display: none !important; }
  .nav-logo img { height: 48px; }
  .nav-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 650;
    padding: 8px 24px 24px;
    background: var(--sand);
    border-bottom: 1px solid rgba(196,154,42,0.2);
    box-shadow: 0 16px 32px rgba(28,26,24,0.08);
    max-height: min(70vh, 480px);
    overflow-y: auto;
  }
  nav.nav--open .nav-drawer { display: block; }
  .stub-main { padding: 48px 24px 80px; }
  footer { padding: 56px 24px 36px; }
  .f-grid { grid-template-columns: 1fr; gap: 40px; }
  .f-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
