:root {
  --bg-deep: #0e1210;
  --bg-panel: #141b18;
  --bg-elevated: #1a2320;
  --text: #e8ebe8;
  --text-muted: #9caba4;
  --accent: #c4a962;
  --accent-soft: rgba(196, 169, 98, 0.16);
  --jade: #3d6b5b;
  --jade-dim: rgba(61, 107, 91, 0.35);
  --border: rgba(232, 235, 232, 0.1);
  --radius: 12px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  z-index: 10000;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 18, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.logo span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.5rem 0.85rem;
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.nav-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-list a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(196, 169, 98, 0.45);
  color: var(--accent) !important;
}

.nav-cta:hover {
  background: rgba(196, 169, 98, 0.28);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    right: 4vw;
    top: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 220px;
  }

  .nav-list.is-open {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 840px);
  display: flex;
  align-items: flex-end;
  padding: clamp(4rem, 12vw, 7rem) 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(14, 18, 16, 0.92) 0%, rgba(14, 18, 16, 0.45) 45%, rgba(14, 18, 16, 0.75) 100%),
    url("https://images.unsplash.com/photo-1594631252849-802bbe0c9e9e?w=1600&q=80") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 70% 20%, var(--jade-dim), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.hero-lead {
  max-width: 36rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
}

.btn-primary:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 480px;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
}

.hero-stats dt {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stats dd {
  margin: 0.15rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 540px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}

.section-split,
.section-trust,
.section-contact {
  background: var(--bg-panel);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.section-intro {
  margin: 0;
  color: var(--text-muted);
}

/* Sortiment cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.media-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.media-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .media-card-img img {
  transform: scale(1.04);
}

.media-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 1.1rem 1.25rem 0.35rem;
}

.media-card p {
  margin: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (max-width: 840px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  margin: 0 0 1rem;
}

.split-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--jade);
}

.text-link {
  font-weight: 600;
  font-size: 0.95rem;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

.showcase-item {
  margin: 0;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.showcase-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.showcase-item figcaption {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.showcase-item strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.showcase-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Trust */
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (max-width: 880px) {
  .trust-layout {
    grid-template-columns: 1fr;
  }
}

.trust-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.trust-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.trust-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.15rem);
  margin: 0 0 1.25rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 540px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-tile {
  padding: 1rem 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.trust-tile h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.trust-tile p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 840px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.1rem);
  margin: 0 0 1rem;
}

.address-block {
  font-style: normal;
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hours {
  margin: 0 0 0.75rem;
}

.muted {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.location-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.location-media img {
  width: 100%;
  object-fit: cover;
  min-height: 260px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-media img {
  width: 100%;
  object-fit: cover;
  min-height: 320px;
}

.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.1rem);
  margin: 0 0 0.5rem;
}

.contact-direct {
  margin: 1rem 0 1.5rem;
  line-height: 1.8;
}

.contact-direct a {
  color: var(--text);
  font-weight: 500;
}

.contact-direct a:hover {
  color: var(--accent);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-form label span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0;
  min-height: 1.25rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--bg-deep);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.footer-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
