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

:root {
  --gold: #c8a96a;
  --gold-light: #dfc08a;
  --gold-dark: #a07840;
  --bg: #333333;
  --bg-2: #333333;
  --bg-3: #333333;
  --bg-4: #333333;
  --text: #f0ece4;
  --text-muted: #9a9188;
  --text-dim: #5a5550;
  --border: rgba(200, 169, 106, 0.15);
  --border-strong: rgba(200, 169, 106, 0.35);
  --radius: 2px;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body {
  font-family: "Jost", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  max-width: 100%;
}
body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
  outline: none;
}

/* ── CONTAINER ── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SECTION SPACING ── */
.section {
  padding: 100px 0;
}
.section-sm {
  padding: 60px 0;
}

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: 60px;
}
.section-header.center {
  text-align: center;
}
.section-header .label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--text);
}
.section-header p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
}
.section-header.center p {
  margin: 16px auto 0;
}

/* ── DIVIDER ── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.center .divider {
  margin: 20px auto;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: #0e0e0e;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.header.scrolled {
  height: 60px;
  background: rgba(8, 8, 8, 0.98);
}
.header.scrolled .logo-img {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
}
.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  min-width: 0;
}
.header .logo {
  position: relative;
  z-index: 1001;
}
.logo-img {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}
.logo-word {
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}
.logo-word span {
  color: var(--text-muted);
  font-weight: 300;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  flex: 0 0 auto;
}
.nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav a:hover,
.nav a.active {
  color: var(--text);
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  background: var(--gold);
  color: #0e0e0e !important;
  font-size: 11px !important;
  letter-spacing: 0.15em;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--gold-light);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all var(--transition);
}

/* ── PAGE HERO (non-home pages) ── */
.page-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-hero .label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--text);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb .sep {
  color: var(--text-dim);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding: 80px 0 60px;
}
.footer-brand .logo {
  margin-bottom: 20px;
  align-items: center;
}
.footer-brand .logo-img {
  width: 76px;
  height: 76px;
  flex-basis: 76px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 260px;
}
.footer-col h4 {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--text);
}
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
  overflow-wrap: anywhere;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg-3);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 16px 24px;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE NAV ── */
@media (max-width: 1100px) {
  .logo {
    gap: 10px;
    font-size: 20px;
  }
  .logo-img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
  .logo-word {
    font-size: 18px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 18px;
    min-height: 100svh;
    padding: calc(var(--header-h) + 52px) 32px 48px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
    z-index: 999;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
  }
  .nav-cta {
    padding: 14px 32px !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .section-header {
    margin-bottom: 42px;
  }
  .page-hero {
    padding-top: calc(var(--header-h) + 56px);
    padding-bottom: 56px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 0 40px;
  }
  .footer-brand .logo {
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-brand .logo-img {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
  .footer-brand .logo-word {
    white-space: normal;
  }
  .footer-brand p {
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 88%;
  }
  .logo {
    gap: 8px;
  }
  .logo-img,
  .header.scrolled .logo-img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .logo-word {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .page-hero h1 {
    font-size: 38px;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .toast {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}
