:root {
  --color-background: #0d0d0c;
  --color-surface: #151513;
  --color-text: #f3f0ea;
  --color-muted: #a7a39b;
  --color-line: #2a2926;
  --color-accent: #b9a07a;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
  --container-width: 1400px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--color-background);
}

body {
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: var(--color-text);
  color: var(--color-background);
}

.section-label {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

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

.closing-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(243, 240, 234, 0.5);
  padding-bottom: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.3s ease;
}

.closing-link:hover {
  border-color: var(--color-text);
}

@media (max-width: 767px) {
  .section-label {
    font-size: 9px;
  }
}
