@font-face {
  font-family: "Tahu";
  src: url("assets/fonts/tahu.otf") format("opentype");
  font-display: swap;
}

:root {
  --sage: #809f92;
  --sage-light: #aebba7;
  --cream: #f3f0e8;
  --petrol: #3e5554;
  --petrol-soft: #4a6362;
  --ink: #2a3837;
  --line: rgba(62, 85, 84, 0.12);
  --shadow: 0 12px 40px rgba(62, 85, 84, 0.18);
  --maxw: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--petrol);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--sage);
  border-color: var(--ink);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 240, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav .brand {
  font-family: "Tahu", cursive;
  font-size: 38px;
  color: var(--petrol);
  border: 0;
  line-height: 1;
}

.nav .cta {
  background: var(--petrol);
  color: var(--cream);
  border: 0;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.nav .cta:hover {
  background: var(--sage);
  color: var(--cream);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(243, 240, 232, 0.94) 0%,
    rgba(243, 240, 232, 0.78) 38%,
    rgba(243, 240, 232, 0.12) 75%,
    rgba(62, 85, 84, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 120px 0 100px;
}

.hero .eyebrow {
  font-family: "Tahu", cursive;
  font-size: 44px;
  color: var(--sage);
  margin-bottom: 12px;
  line-height: 1;
}

.hero h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  color: var(--petrol);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero .hero-claim {
  font-family: "Georgia", serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  max-width: 560px;
}

.hero p {
  font-size: 18px;
  color: var(--petrol-soft);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--petrol);
  color: var(--cream);
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: 0;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--sage);
  color: var(--cream);
}

.btn-secondary {
  color: var(--petrol);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid var(--sage);
  padding-bottom: 2px;
}

/* === SECTION GENERIC === */
section {
  padding: 110px 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header .label {
  font-family: "Tahu", cursive;
  font-size: 34px;
  color: var(--sage);
  margin-bottom: 8px;
}

.section-header h2 {
  font-family: "Georgia", serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 500;
  color: var(--petrol);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-header p {
  margin-top: 18px;
  color: var(--petrol-soft);
  font-size: 18px;
}

/* === FEATURES (Killerargumente) === */
.features {
  background: #fff;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}

.feat {
  padding: 32px 28px;
  background: var(--cream);
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feat .icon {
  width: 52px;
  height: 52px;
  background: var(--sage);
  color: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feat h3 {
  font-family: "Georgia", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.feat p {
  font-size: 16px;
  color: var(--petrol-soft);
  line-height: 1.6;
}

/* === PERSONA / STORY === */
.story {
  background: var(--cream);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-media img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-text .label {
  font-family: "Tahu", cursive;
  font-size: 34px;
  color: var(--sage);
  margin-bottom: 8px;
}

.story-text h2 {
  font-family: "Georgia", serif;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 500;
  color: var(--petrol);
  line-height: 1.2;
  margin-bottom: 24px;
}

.story-text p {
  color: var(--petrol-soft);
  font-size: 17px;
  margin-bottom: 18px;
}

.story-text blockquote {
  border-left: 3px solid var(--sage);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--petrol);
  font-size: 18px;
}

/* === GALLERY === */
.gallery {
  background: #fff;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gal-grid figure {
  overflow: hidden;
  border-radius: 14px;
  background: var(--cream);
}

.gal-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-grid figure:hover img {
  transform: scale(1.04);
}

.gal-grid .g1 { grid-column: span 4; grid-row: span 2; }
.gal-grid .g2 { grid-column: span 2; }
.gal-grid .g3 { grid-column: span 2; }
.gal-grid .g4 { grid-column: span 3; }
.gal-grid .g5 { grid-column: span 3; }

/* === SPECS === */
.specs {
  background: var(--petrol);
  color: var(--cream);
}

.specs .section-header .label { color: var(--sage-light); }
.specs .section-header h2 { color: var(--cream); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 36px;
  max-width: 1000px;
  margin: 0 auto;
}

.spec dt {
  font-family: "Tahu", cursive;
  font-size: 28px;
  color: var(--sage-light);
  margin-bottom: 4px;
}

.spec dd {
  font-size: 17px;
  color: var(--cream);
  font-weight: 500;
}

.spec dd small {
  display: block;
  font-size: 14px;
  color: rgba(243, 240, 232, 0.65);
  font-weight: 400;
  margin-top: 2px;
}

/* === BRAND STATEMENT === */
.brand-statement {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.bs-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.bs-quote {
  font-family: "Georgia", serif;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.45;
  color: var(--petrol);
  font-style: italic;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}

.bs-attr {
  font-family: "Tahu", cursive;
  font-size: 28px;
  color: var(--sage);
  margin-bottom: 28px;
  line-height: 1;
}

.bs-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}

.bs-pill {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--petrol);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* === CTA BAND === */
.cta-band {
  background: var(--sage);
  padding: 80px 0;
  text-align: center;
}

.cta-band .label {
  font-family: "Tahu", cursive;
  font-size: 42px;
  color: var(--cream);
  margin-bottom: 8px;
}

.cta-band h2 {
  font-family: "Georgia", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.cta-band .btn-primary {
  background: var(--cream);
  color: var(--petrol);
}

.cta-band .btn-primary:hover {
  background: var(--petrol);
  color: var(--cream);
}

.cta-band .cta-note {
  margin-top: 18px;
  color: rgba(243, 240, 232, 0.85);
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* === FOOTER === */
footer {
  background: var(--ink);
  color: rgba(243, 240, 232, 0.75);
  padding: 60px 0 40px;
  font-size: 14px;
}

footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

footer .brand-foot {
  font-family: "Tahu", cursive;
  font-size: 44px;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1;
}

footer h4 {
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

footer p, footer li {
  line-height: 1.7;
  font-size: 14px;
}

footer ul {
  list-style: none;
}

footer a {
  color: rgba(243, 240, 232, 0.75);
  border-bottom: 0;
}

footer a:hover {
  color: var(--sage-light);
}

footer .legal {
  border-top: 1px solid rgba(243, 240, 232, 0.12);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(243, 240, 232, 0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  section { padding: 80px 0; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-media img { aspect-ratio: 4 / 3; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gal-grid .g1, .gal-grid .g2, .gal-grid .g3,
  .gal-grid .g4, .gal-grid .g5 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gal-grid .g1 { grid-column: span 2; grid-row: span 2; }
  footer .foot-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero { min-height: 78vh; }
  .hero-content { padding: 80px 0 60px; }
  .feat-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .nav .brand { font-size: 32px; }
  .nav .cta { padding: 9px 16px; font-size: 13px; }
}
