:root {
  --primary: #322f31;
  --primary-foreground: #f7f4eb;
  --background: #f7f4eb;
  --foreground: #474848;
  --card: #ffffff;
  --card-foreground: #474848;
  --secondary: #322f31;
  --secondary-foreground: #f7f4eb;
  --muted: #eae6db;
  --muted-foreground: #474848;
  --accent: #c9b98f;
  --accent-foreground: #322f31;
  --border: #eae6db;
  --input: #eae6db;
  --ring: #c9b98f;
  --radius: 1rem;
  --font-sans: 'Sen', sans-serif;
  --font-display: 'Sen', sans-serif;
  --font-serif: 'Figtree', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-serif);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-title {
  color: var(--primary-foreground);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.primary-menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.primary-menu li a,
.footer-menu li a {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
}

.site-content {
  padding: 5rem 0 3rem;
}

.hero-section {
  position: relative;
  padding: 8rem 0 6rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.hero-copy {
  max-width: 780px;
  margin-top: 1rem;
  color: rgba(247, 244, 235, 0.8);
  font-size: 0.95rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-precious,
.btn-outline-stark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  line-height: 1.1;
  transition: transform 0.2s ease-out, background-color 0.2s ease-out, color 0.2s ease-out;
}

.btn-precious {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 1px solid var(--primary);
}

.btn-precious:hover {
  background: var(--accent);
  color: var(--accent-foreground);
  transform: translateY(-1px);
}

.btn-outline-stark {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline-stark:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.section-copy,
.text-muted {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  max-width: 720px;
}

.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2.5rem;
}

.footer-widget-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-widget p,
.footer-widget a,
.footer-widget li {
  color: rgba(247, 244, 235, 0.75);
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 244, 235, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 1023px) {
  .primary-menu {
    flex-direction: column;
    gap: 0.75rem;
    display: none;
  }
  .primary-menu.is-open {
    display: flex;
  }
  .menu-toggle {
    display: inline-flex;
  }
}
