:root {
  --ink: #14120f;
  --ink-soft: #2b2620;
  --panel: #ffffff;
  --panel-2: #f6f2ea;
  --line: rgba(20, 18, 15, 0.1);
  --line-strong: rgba(20, 18, 15, 0.16);
  --text: #1c1915;
  --text-muted: #5a5349;
  --text-faint: #8a8275;
  --bg-page: #fbf9f5;
  --bg-warm: #f3eee6;
  --gold: #b8862d;
  --gold-deep: #8c6b2f;
  --gold-bright: #d4a84b;
  --shadow: 0 22px 60px rgba(20, 18, 15, 0.12);
  --shadow-header: 0 1px 0 rgba(20, 18, 15, 0.06), 0 8px 32px rgba(20, 18, 15, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body.layout-main-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-page);
  background-image: radial-gradient(1000px 520px at 12% -8%, rgba(212, 168, 75, 0.09), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(184, 134, 45, 0.06), transparent 45%);
  position: relative;
  overflow-x: hidden;
}

.layout-sheen {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.65), transparent 42%, transparent 58%, rgba(255, 252, 245, 0.5));
  z-index: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  left: 10px;
}

.shell {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(20, 18, 15, 0.08));
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 3px 0;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
}

.site-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

.site-nav-link:hover {
  color: var(--text);
}

.site-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transition: width 0.2s ease;
  border-radius: 999px;
}

.site-nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  white-space: nowrap;
}

#page-main {
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.75rem 1.35rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 0.76rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: #1a1208;
  box-shadow: 0 10px 28px rgba(184, 134, 45, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(184, 134, 45, 0.35);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(184, 134, 45, 0.45);
  background: #fffdf8;
  color: var(--ink-soft);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(to bottom, #ffffff, var(--bg-warm));
  padding: 3.5rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 36ch;
  font-size: 0.95rem;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact-row {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.5;
}

.footer-contact-row:hover {
  color: var(--gold-deep);
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: var(--gold-deep);
  border-bottom-color: rgba(184, 134, 45, 0.4);
}

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-legal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.55;
}

.footer-legal a {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 107, 47, 0.35);
}

.footer-legal a:hover {
  color: var(--text);
  border-bottom-color: rgba(20, 18, 15, 0.3);
}

.is-hidden {
  display: none !important;
}
