:root {
  --ink: #182322;
  --ink-soft: #5e6a67;
  --paper: #f3f7f4;
  --paper-alt: #e7eee9;
  --white: #fbfdfb;
  --sand: #c5a88e;
  --stone: #8a9b97;
  --moss: #647d6d;
  --glacier: #dcebf0;
  --glacier-deep: #8eb1ba;
  --charcoal: #16201f;
  --line: rgba(24, 35, 34, 0.14);
  --line-dark: rgba(251, 253, 251, 0.18);
  --radius: 28px;
  --shadow: 0 30px 80px rgba(24, 35, 34, 0.08);
  --container: 1160px;
}
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

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

button,
input,
textarea { font: inherit; }

::selection { background: var(--moss); color: var(--white); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--charcoal);
  color: var(--white);
  padding: .75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-xl {
  padding: clamp(104px, 13vw, 158px) 0 clamp(52px, 8vw, 90px);
}

.section-border {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.muted { background: var(--paper-alt); }

.dark {
  background: var(--charcoal);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
  background: rgba(243, 247, 244, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
}

.brand img { flex: 0 0 auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--ink); }

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .24s ease;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(220, 235, 240, .76), transparent 36%),
    radial-gradient(circle at 76% 18%, rgba(100, 125, 109, .20), transparent 34%),
    radial-gradient(circle at 68% 82%, rgba(197, 168, 142, .18), transparent 38%),
    linear-gradient(180deg, var(--paper), #edf4f1 70%, var(--paper));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  width: 52vw;
  height: 52vw;
  right: -18vw;
  bottom: -18vw;
  border: 1px solid rgba(24, 35, 34, .12);
  border-radius: 50%;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .74fr);
  gap: clamp(2.4rem, 6vw, 6rem);
  align-items: center;
}

.hero-copy { padding-top: 34px; }

.eyebrow,
.micro {
  margin: 0 0 1rem;
  color: var(--moss);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
}

.dark .eyebrow,
.dark .micro { color: var(--glacier); }

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

h1 {
  max-width: 700px;
  font-size: clamp(3rem, 5.2vw, 5.7rem);
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 5rem);
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  letter-spacing: -.035em;
}

p { margin: 0; }

.hero-lede {
  max-width: 650px;
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }

.button-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--moss);
  border-color: var(--moss);
}

.button-secondary {
  color: var(--ink);
  background: rgba(251, 253, 251, .48);
}

.hero-card {
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(251, 253, 251, .76), rgba(251, 253, 251, .34)),
    url("assets/nordic-field.svg") center / cover;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2vw, 1.75rem);
  display: flex;
  align-items: end;
}

.hero-card-inner {
  width: 100%;
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: calc(var(--radius) - 10px);
  background: rgba(243, 247, 244, .84);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(251, 253, 251, .74);
}

.signal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.signal-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: .96rem;
}

.signal-list span,
.number {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  color: var(--ink);
  font-size: 1.35rem;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 247, 244, .72);
  backdrop-filter: blur(16px);
  white-space: nowrap;
}

.ticker span {
  flex: 0 0 auto;
  padding: 1rem clamp(1.2rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.align-start { align-items: start; }

.section-intro h2 { max-width: 650px; }

.copy-block {
  display: grid;
  gap: 1.2rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.copy-block strong { color: var(--ink); font-weight: 650; }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.feature-card,
.insight-card,
.partner-card,
.approach-card,
.contact-card,
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 253, 251, .56);
}

.feature-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.feature-card h3 { margin-top: auto; }

.feature-card p,
.insight-card p,
.proof-grid p,
.approach-card p,
.partner-card span,
.panel-copy p,
.section-heading-centre p,
.contact-copy p,
.site-footer p,
.form-note {
  color: var(--ink-soft);
}

.feature-card p { margin-top: 1rem; max-width: 540px; }

.feature-card a {
  margin-top: 1.5rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  color: var(--moss);
  font-weight: 700;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.panel-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.panel-copy p {
  max-width: 620px;
  margin-top: 1.5rem;
  font-size: clamp(1.03rem, 1.3vw, 1.22rem);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2rem;
}

.pill-grid span {
  padding: .62rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(251, 253, 251, .52);
  font-size: .84rem;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.insight-card {
  padding: 1.5rem;
  min-height: 240px;
}

.insight-card p { margin-top: 1rem; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-grid article {
  padding: 1.4rem;
  background: rgba(251, 253, 251, .46);
}

.proof-grid p { margin-top: .9rem; }

.section-heading-centre {
  text-align: center;
  max-width: 840px;
}

.section-heading-centre p:not(.eyebrow) {
  margin: 1.4rem auto 0;
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.approach-card {
  background: rgba(251, 253, 251, .06);
  border-color: var(--line-dark);
  padding: clamp(1.35rem, 2.5vw, 2rem);
  min-height: 340px;
}

.approach-card span {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 2rem;
}

.approach-card h3 { margin-top: 4rem; }

.approach-card p { margin-top: 1rem; color: rgba(251, 253, 251, .74); }

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.process div {
  padding: 1.25rem;
  border-right: 1px solid var(--line-dark);
}

.process div:last-child { border-right: 0; }

.process span {
  display: block;
  color: var(--sand);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}

.process p {
  margin-top: .7rem;
  color: rgba(251, 253, 251, .68);
  font-size: .9rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.partner-card {
  padding: 1.35rem;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(251, 253, 251, .52);
}

.partner-logo {
  width: min(100%, 250px);
  height: 74px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.5rem;
  opacity: .96;
}

.partner-card p {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.partner-card span { display: block; margin-top: auto; }

.quote-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-wrap {
  max-width: 980px;
  text-align: center;
}

blockquote {
  font-size: clamp(2.25rem, 4.4vw, 4.8rem);
}

.quote-wrap > p:last-child {
  margin-top: 2rem;
  color: var(--ink-soft);
}

.contact-section { background: var(--paper); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 1.5rem;
  max-width: 590px;
  font-size: clamp(1.04rem, 1.3vw, 1.2rem);
}

.contact-card {
  display: grid;
  gap: .85rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(251, 253, 251, .62);
  box-shadow: var(--shadow);
}

.contact-card label {
  color: var(--ink-soft);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(251, 253, 251, .82);
  border-radius: 16px;
  padding: .9rem 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--moss);
  background: var(--white);
}

.contact-card textarea { resize: vertical; }

.form-note { font-size: .84rem; }

.site-footer {
  padding: 54px 0 30px;
  background: var(--charcoal);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(160px, .7fr));
  gap: 2rem;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand { margin-bottom: 1rem; }

.site-footer h2 {
  margin: 0 0 1rem;
  font: 700 .74rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--sand);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  color: rgba(251, 253, 251, .74);
  margin-bottom: .55rem;
  font-size: .95rem;
}

.site-footer a:hover,
.site-footer a:focus-visible { color: var(--white); }

.site-footer p {
  max-width: 330px;
  color: rgba(251, 253, 251, .62);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 26px;
  color: rgba(251, 253, 251, .54);
  font-size: .86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

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

  .site-nav {
    position: fixed;
    inset: 74px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(243, 247, 244, .97);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform .24s ease, opacity .24s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child { border-bottom: 0; }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

  .hero-grid,
  .two-col,
  .split-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { min-height: 420px; }

  .insight-grid,
  .approach-grid,
  .partner-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process { grid-template-columns: 1fr; }
  .process div { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .process div:last-child { border-bottom: 0; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 68px; }
  .site-nav { top: 68px; }
  .section { padding: 68px 0; }
  .section-xl { padding: 96px 0 56px; }
  .hero { min-height: auto; display: block; }
  .hero-grid { gap: 2rem; }
  .hero-copy { padding-top: 18px; }
  h1 { font-size: clamp(2.55rem, 10.8vw, 3.85rem); letter-spacing: -.055em; }
  h2 { font-size: clamp(2.25rem, 10vw, 3.75rem); }
  h3 { font-size: clamp(1.45rem, 7vw, 1.9rem); }
  .hero-lede { margin-top: 1.25rem; font-size: 1.02rem; }
  .hero-card { min-height: 300px; border-radius: 22px; }
  .hero-card-inner { padding: 1.1rem; }
  .signal-list li { grid-template-columns: 34px 1fr; gap: .75rem; font-size: .9rem; }
  .ticker { position: static; margin-top: 2rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ticker span { padding: .8rem 1rem; }
  .ecosystem-grid,
  .insight-grid,
  .proof-grid,
  .approach-grid,
  .partner-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .button { width: 100%; }
  .panel-media img { min-height: 300px; }
  blockquote { font-size: clamp(2rem, 10vw, 3.25rem); }
}

@media (max-width: 980px) {
  .site-nav.legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-nav.legal-nav a {
    padding: 0;
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand { font-size: .72rem; gap: .55rem; }
  .brand img { width: 34px; height: 34px; }
  .button { min-height: 54px; }
  .feature-card, .insight-card, .approach-card, .partner-card, .contact-card, .proof-grid article { border-radius: 22px; }
}

/* ==========================================================
   ASKA website image integration template
   Developer note: these rules show the intended placement of
   the approved ASKA logo and the 10 Icelandic/Nordic image assets.
   ========================================================== */

.brand { min-width: 118px; }
.brand-logo {
  width: 126px;
  max-height: 54px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.footer-logo {
  width: 140px;
  max-height: 64px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .22));
}

/* HERO: Image 01, landscape on desktop, portrait on mobile */
.hero::before {
  background:
    linear-gradient(90deg, rgba(243, 247, 244, .94) 0%, rgba(243, 247, 244, .78) 42%, rgba(243, 247, 244, .36) 100%),
    url("assets/images/landscape/01_01_glacier_mist_landscape_1920x1080.webp") center / cover no-repeat;
}

/* HERO CENTREPIECE CARD: Image 08 */
.hero-card.image-card-ecosystem {
  background:
    linear-gradient(180deg, rgba(251, 253, 251, .64), rgba(251, 253, 251, .18)),
    url("assets/images/landscape/08_08_nordic_ecosystem_landscape_1920x1080.webp") center / cover no-repeat;
}

.dual-image-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
  margin-top: 1rem;
}

.dual-image-strip picture,
.full-bleed-image picture {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper-alt);
}

.dual-image-strip img,
.full-bleed-image img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.dual-image-strip picture:first-child img { min-height: 360px; }
.dual-image-strip picture:last-child img { min-height: 360px; }

.full-bleed-image {
  margin-top: clamp(2.4rem, 5vw, 4.5rem);
}

.full-bleed-image img {
  min-height: 340px;
}

/* SECTION IMAGE USAGE */
#nordic-beauty .panel-media img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

/* WHY ASKA: subtle basalt/glacier background tone plus image band above */
#why-aska {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243, 247, 244, .94), rgba(231, 238, 233, .70));
}

/* 360 APPROACH: Image 07 as dark, textured section background */
#approach.dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(22, 32, 31, .92), rgba(22, 32, 31, .88)),
    url("assets/images/landscape/07_07_black_sand_silica_landscape_1920x1080.webp") center / cover no-repeat;
}

/* PARTNERS: Image 10 as quiet minimal background */
#partners.muted {
  background:
    linear-gradient(180deg, rgba(231, 238, 233, .92), rgba(243, 247, 244, .88)),
    url("assets/images/landscape/10_10_northern_minimalism_landscape_1920x1080.webp") center / cover no-repeat;
}

/* QUOTE: Image 05 as a lagoon/mineral backdrop */
.quote-section {
  background:
    linear-gradient(180deg, rgba(243, 247, 244, .91), rgba(243, 247, 244, .86)),
    url("assets/images/landscape/05_05_lagoon_ripple_landscape_1920x1080.webp") center / cover no-repeat;
}

/* CONTACT: Image 06 as soft Arctic horizon background */
.contact-section {
  background:
    linear-gradient(90deg, rgba(243, 247, 244, .92), rgba(243, 247, 244, .74)),
    url("assets/images/landscape/06_06_arctic_light_horizon_landscape_1920x1080.webp") center / cover no-repeat;
}

@media (max-width: 980px) {
  .brand-logo { width: 116px; max-height: 50px; }
  .dual-image-strip { grid-template-columns: 1fr; }
  .dual-image-strip img,
  .full-bleed-image img { min-height: 280px; }
}

@media (max-width: 680px) {
  .brand-logo { width: 104px; max-height: 46px; }
  .footer-logo { width: 112px; max-height: 50px; }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(243, 247, 244, .95) 0%, rgba(243, 247, 244, .82) 48%, rgba(243, 247, 244, .52) 100%),
      url("assets/images/portrait/01_01_glacier_mist_portrait_1080x1920.webp") center / cover no-repeat;
  }

  .hero-card.image-card-ecosystem {
    background:
      linear-gradient(180deg, rgba(251, 253, 251, .72), rgba(251, 253, 251, .32)),
      url("assets/images/portrait/08_08_nordic_ecosystem_portrait_1080x1920.webp") center / cover no-repeat;
  }

  #approach.dark {
    background:
      linear-gradient(180deg, rgba(22, 32, 31, .93), rgba(22, 32, 31, .88)),
      url("assets/images/portrait/07_07_black_sand_silica_portrait_1080x1920.webp") center / cover no-repeat;
  }

  #partners.muted {
    background:
      linear-gradient(180deg, rgba(231, 238, 233, .94), rgba(243, 247, 244, .90)),
      url("assets/images/portrait/10_10_northern_minimalism_portrait_1080x1920.webp") center / cover no-repeat;
  }

  .quote-section {
    background:
      linear-gradient(180deg, rgba(243, 247, 244, .92), rgba(243, 247, 244, .88)),
      url("assets/images/portrait/05_05_lagoon_ripple_portrait_1080x1920.webp") center / cover no-repeat;
  }

  .contact-section {
    background:
      linear-gradient(180deg, rgba(243, 247, 244, .94), rgba(243, 247, 244, .84)),
      url("assets/images/portrait/06_06_arctic_light_horizon_portrait_1080x1920.webp") center / cover no-repeat;
  }

  #nordic-beauty .panel-media img,
  .dual-image-strip img,
  .full-bleed-image img {
    min-height: 360px;
  }
}

/* Higher-specificity logo sizing to override the legacy mobile icon rule. */
.brand img.brand-logo {
  width: 126px;
  height: auto;
  max-height: 54px;
}
.footer-brand img.footer-logo {
  width: 140px;
  height: auto;
  max-height: 64px;
}
@media (max-width: 980px) {
  .brand img.brand-logo { width: 116px; height: auto; max-height: 50px; }
}
@media (max-width: 680px) {
  .brand img.brand-logo { width: 106px; height: auto; max-height: 48px; }
  .footer-brand img.footer-logo { width: 120px; height: auto; max-height: 54px; }
}

/* ==========================================================
   LANDSCAPE-CENTREPIECE UPDATE
   Product imagery is used only in the Why Nordic Beauty section.
   Other visual centrepieces use Nordic/Icelandic landscape imagery.
   ========================================================== */

.hero::before {
  background:
    linear-gradient(90deg, rgba(243, 247, 244, .96) 0%, rgba(243, 247, 244, .88) 42%, rgba(243, 247, 244, .60) 100%),
    url("assets/images/landscape/01_01_glacier_mist_landscape_1920x1080.webp") center / cover no-repeat;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(251, 253, 251, .28), rgba(251, 253, 251, .56)),
    url("assets/images/landscape/08_08_nordic_ecosystem_landscape_1920x1080.webp") center / cover no-repeat;
  isolation: isolate;
}

.hero-visual::before,
.product-media::before,
.landscape-strip picture::before,
.landscape-feature-image::before,
.dark-image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(251, 253, 251, .03), rgba(24, 35, 34, .12));
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.hero-visual img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay-card {
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  background: rgba(243, 247, 244, .88);
}

#ecosystem,
#nordic-beauty,
#why-aska,
#partners,
.contact-section {
  position: relative;
  overflow: hidden;
}

#ecosystem::before,
#nordic-beauty::before,
#why-aska::before,
#partners::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  z-index: 0;
}

#ecosystem::before {
  background: url("assets/images/landscape/09_09_mineral_science_landscape_1920x1080.webp") center / cover no-repeat;
  opacity: .22;
}

#nordic-beauty::before {
  background: url("assets/images/landscape/03_03_moss_mineral_landscape_1920x1080.webp") center / cover no-repeat;
  opacity: .28;
}

#why-aska::before {
  background: url("assets/images/landscape/02_02_basalt_glacier_landscape_1920x1080.webp") center / cover no-repeat;
  opacity: .18;
}

#partners::before {
  background: url("assets/images/landscape/10_10_northern_minimalism_landscape_1920x1080.webp") center / cover no-repeat;
  opacity: .30;
}

.contact-section::before {
  background: url("assets/images/landscape/06_06_arctic_light_horizon_landscape_1920x1080.webp") center / cover no-repeat;
  opacity: .34;
}

#ecosystem > .container,
#nordic-beauty > .container,
#why-aska > .container,
#partners > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}

.product-media,
.landscape-strip picture,
.landscape-feature-image picture,
.dark-image-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.product-media {
  background:
    linear-gradient(180deg, rgba(251,253,251,.54), rgba(251,253,251,.28)),
    url("assets/images/landscape/04_04_volcanic_sand_landscape_1920x1080.webp") center / cover no-repeat;
}

.product-media img,
.landscape-strip img,
.landscape-feature-image img,
.dark-image-band img {
  position: relative;
  z-index: 0;
  width: 100%;
  object-fit: cover;
}

.product-media img {
  min-height: 560px;
  object-position: center;
}

.landscape-strip picture {
  background:
    linear-gradient(180deg, rgba(251,253,251,.40), rgba(251,253,251,.18)),
    url("assets/images/landscape/05_05_lagoon_ripple_landscape_1920x1080.webp") center / cover no-repeat;
}

.landscape-strip img {
  min-height: 380px;
}

.landscape-feature-image picture {
  background:
    linear-gradient(180deg, rgba(251,253,251,.50), rgba(251,253,251,.22)),
    url("assets/images/landscape/02_02_basalt_glacier_landscape_1920x1080.webp") center / cover no-repeat;
}

.landscape-feature-image img { min-height: 430px; }

.dark-image-band {
  margin-top: clamp(1.6rem, 4vw, 3rem);
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  box-shadow: 0 30px 80px rgba(0,0,0,.20);
  background:
    linear-gradient(180deg, rgba(22,32,31,.35), rgba(22,32,31,.68)),
    url("assets/images/landscape/07_07_black_sand_silica_landscape_1920x1080.webp") center / cover no-repeat;
}

.dark-image-band picture,
.dark-image-band img {
  display: block;
  width: 100%;
}

.dark-image-band img {
  min-height: 420px;
  object-fit: cover;
  opacity: .92;
}

@media (max-width: 980px) {
  .hero-visual { min-height: 480px; }
  .hero-visual picture,
  .hero-visual img { min-height: 480px; }
  .hero-overlay-card { max-width: 92%; }
}

@media (max-width: 680px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(243, 247, 244, .96) 0%, rgba(243, 247, 244, .88) 48%, rgba(243, 247, 244, .66) 100%),
      url("assets/images/portrait/01_01_glacier_mist_portrait_1080x1920.webp") center / cover no-repeat;
  }

  .hero-visual {
    min-height: 560px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(251,253,251,.42), rgba(251,253,251,.66)),
      url("assets/images/portrait/08_08_nordic_ecosystem_portrait_1080x1920.webp") center / cover no-repeat;
  }

  .hero-visual picture,
  .hero-visual img { min-height: 560px; }

  .hero-visual img {
    object-fit: cover;
    object-position: center;
  }

  .hero-overlay-card {
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .85rem;
    max-width: none;
    padding: .95rem;
  }

  #ecosystem::before {
    background: url("assets/images/portrait/09_09_mineral_science_portrait_1080x1920.webp") center / cover no-repeat;
  }
  #nordic-beauty::before {
    background: url("assets/images/portrait/03_03_moss_mineral_portrait_1080x1920.webp") center / cover no-repeat;
  }
  #why-aska::before {
    background: url("assets/images/portrait/02_02_basalt_glacier_portrait_1080x1920.webp") center / cover no-repeat;
  }
  #partners::before {
    background: url("assets/images/portrait/10_10_northern_minimalism_portrait_1080x1920.webp") center / cover no-repeat;
  }
  .contact-section::before {
    background: url("assets/images/portrait/06_06_arctic_light_horizon_portrait_1080x1920.webp") center / cover no-repeat;
  }

  .product-media img,
  .landscape-strip img,
  .landscape-feature-image img,
  .dark-image-band img {
    min-height: 440px;
    object-position: center;
  }

  .dark-image-band { border-radius: 24px; }
}


/* Final update: brand partner logo placement and white footer logo */
.brand-logo-grid .partner-card {
  min-height: 210px;
  background: rgba(251, 253, 251, .68);
}
.brand-logo-grid .partner-logo {
  display: block;
  width: min(100%, 260px);
  max-height: 76px;
}
.site-footer .footer-logo {
  filter: none;
  opacity: .98;
}


/* Final visual correction: product image only in Why Nordic Beauty. */
.hero-visual img,
.landscape-strip img,
.landscape-feature-image img,
.dark-image-band img {
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

#nordic-beauty .product-media img {
  object-fit: cover;
  object-position: center;
}

.landscape-strip picture::before,
.landscape-feature-image picture::before,
.dark-image-band::before {
  background: linear-gradient(180deg, rgba(251, 253, 251, .06), rgba(24, 35, 34, .10));
}

.dark-image-band img {
  opacity: .74;
}

@media (max-width: 680px) {
  .landscape-strip img,
  .landscape-feature-image img,
  .dark-image-band img {
    min-height: 380px;
  }
}

/* ==========================================================
   CLEAR LANDSCAPE-CENTREPIECE TEMPLATE UPDATE
   Purpose: product imagery appears only in Why Nordic Beauty.
   All other visual feature slots are Nordic landscape centrepieces,
   not product imagery and not hidden behind heavy overlays.
   ========================================================== */

.hero::before {
  background:
    radial-gradient(circle at 12% 12%, rgba(220,235,240,.62), transparent 34%),
    linear-gradient(180deg, var(--paper), #edf4f1 76%, var(--paper));
}

.hero-visual.landscape-centrepiece,
.landscape-centrepiece picture,
.landscape-centrepiece-group picture,
.dark-image-band.landscape-centrepiece {
  border: 1px solid rgba(24, 35, 34, .14);
  border-radius: var(--radius);
  background: rgba(251, 253, 251, .34);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual.landscape-centrepiece {
  min-height: 530px;
  padding: 0;
}

.hero-visual.landscape-centrepiece picture,
.hero-visual.landscape-centrepiece img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 530px;
}

.hero-visual.landscape-centrepiece img,
.landscape-centrepiece img,
.landscape-centrepiece-group img,
.dark-image-band.landscape-centrepiece img {
  object-fit: cover;
  object-position: center;
  opacity: 1 !important;
  filter: none;
}

.hero-visual::before,
.landscape-strip picture::before,
.landscape-feature-image::before,
.dark-image-band::before {
  background: linear-gradient(180deg, rgba(251,253,251,.04), rgba(24,35,34,.05));
}

.hero-overlay-card {
  max-width: 88%;
  background: rgba(243, 247, 244, .88);
  border: 1px solid rgba(251, 253, 251, .82);
}

.landscape-centrepiece-group {
  margin-top: clamp(2.6rem, 5vw, 4.5rem);
}

.landscape-centrepiece-group picture:first-child img,
.landscape-centrepiece-group picture:last-child img {
  min-height: 420px;
}

.landscape-feature-image {
  margin-top: clamp(3rem, 5vw, 5rem);
}

.landscape-feature-image img {
  min-height: 500px;
}

.dark-image-band.landscape-centrepiece {
  margin-top: clamp(2.8rem, 5vw, 4.5rem);
  border-color: rgba(251, 253, 251, .18);
  background: rgba(251, 253, 251, .06);
}

.dark-image-band.landscape-centrepiece img {
  min-height: 470px;
}

/* Keep product imagery focused to this one section only */
#nordic-beauty .product-media {
  background: rgba(251, 253, 251, .44);
}

#nordic-beauty .product-media img {
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

/* Reduce landscape backgrounds behind content so the centrepiece images lead visually */
#ecosystem::before,
#why-aska::before,
#partners::before,
.contact-section::before {
  opacity: .10;
}

#nordic-beauty::before {
  opacity: .08;
}

#approach.dark {
  background: var(--charcoal);
}

@media (max-width: 980px) {
  .hero-visual.landscape-centrepiece,
  .hero-visual.landscape-centrepiece picture,
  .hero-visual.landscape-centrepiece img {
    min-height: 500px;
  }

  .landscape-centrepiece-group picture:first-child img,
  .landscape-centrepiece-group picture:last-child img,
  .landscape-feature-image img,
  .dark-image-band.landscape-centrepiece img {
    min-height: 390px;
  }
}

@media (max-width: 680px) {
  .hero-visual.landscape-centrepiece,
  .hero-visual.landscape-centrepiece picture,
  .hero-visual.landscape-centrepiece img {
    min-height: 560px;
  }

  .hero-overlay-card {
    max-width: none;
  }

  .landscape-centrepiece-group picture:first-child img,
  .landscape-centrepiece-group picture:last-child img,
  .landscape-feature-image img,
  .dark-image-band.landscape-centrepiece img {
    min-height: 420px;
  }

  #nordic-beauty .product-media img {
    min-height: 410px;
  }
}

/* ==========================================================
   FINAL CORRECTION — 27 May
   Abstract Canva images are backgrounds only.
   Real Nordic/Icelandic landscape photos are centrepiece images.
   Product photography appears only in the Why Nordic Beauty section.
   ========================================================== */

/* Abstract atmospheric backgrounds only */
.hero::before {
  background:
    linear-gradient(90deg, rgba(243,247,244,.97) 0%, rgba(243,247,244,.88) 46%, rgba(243,247,244,.64) 100%),
    url("assets/images/landscape/01_01_glacier_mist_landscape_1920x1080.webp") center / cover no-repeat;
}
#ecosystem::before {
  background: url("assets/images/landscape/09_09_mineral_science_landscape_1920x1080.webp") center / cover no-repeat;
  opacity: .12;
}
#nordic-beauty::before {
  background: url("assets/images/landscape/03_03_moss_mineral_landscape_1920x1080.webp") center / cover no-repeat;
  opacity: .10;
}
#why-aska::before {
  background: url("assets/images/landscape/02_02_basalt_glacier_landscape_1920x1080.webp") center / cover no-repeat;
  opacity: .10;
}
#partners::before {
  background: url("assets/images/landscape/10_10_northern_minimalism_landscape_1920x1080.webp") center / cover no-repeat;
  opacity: .12;
}
.contact-section::before {
  background: url("assets/images/landscape/06_06_arctic_light_horizon_landscape_1920x1080.webp") center / cover no-repeat;
  opacity: .14;
}

/* Real landscape photos as visible centrepieces */
.hero-visual.landscape-centrepiece,
.landscape-centrepiece picture,
.landscape-centrepiece-group picture,
.dark-image-band.landscape-centrepiece {
  background: var(--paper-alt);
  border: 1px solid rgba(24,35,34,.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-visual.landscape-centrepiece img,
.landscape-centrepiece img,
.landscape-centrepiece-group img,
.dark-image-band.landscape-centrepiece img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1 !important;
  filter: none !important;
}
.hero-visual.landscape-centrepiece,
.hero-visual.landscape-centrepiece picture,
.hero-visual.landscape-centrepiece img { min-height: 530px; }
.landscape-centrepiece-group picture:first-child img,
.landscape-centrepiece-group picture:last-child img { min-height: 420px; }
.landscape-feature-image img { min-height: 500px; }
.dark-image-band.landscape-centrepiece img { min-height: 470px; }

.hero-visual::before,
.landscape-strip picture::before,
.landscape-feature-image::before,
.dark-image-band::before {
  background: linear-gradient(180deg, rgba(251,253,251,.02), rgba(24,35,34,.05));
}

/* Product photo only appears here, and it must not crop the products out */
#nordic-beauty .product-media {
  background: rgba(251,253,251,.70) !important;
  padding: clamp(1rem, 2vw, 1.8rem);
}
#nordic-beauty .product-media img {
  width: 100%;
  min-height: 520px;
  max-height: 620px;
  object-fit: cover !important;
  object-position: center !important;
  background: rgba(251,253,251,.78);
}
#nordic-beauty .product-media::before {
  display: none;
}

/* Actual brand logo placement */
.brand-logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.brand-logo-grid .partner-card {
  min-height: 210px;
  background: rgba(251,253,251,.74);
}
.brand-logo-grid .partner-logo {
  display: block;
  width: min(100%, 250px);
  max-width: 120px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.25rem;
}

@media (max-width: 980px) {
  .brand-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual.landscape-centrepiece,
  .hero-visual.landscape-centrepiece picture,
  .hero-visual.landscape-centrepiece img { min-height: 500px; }
  .landscape-centrepiece-group picture:first-child img,
  .landscape-centrepiece-group picture:last-child img,
  .landscape-feature-image img,
  .dark-image-band.landscape-centrepiece img { min-height: 390px; }
}

@media (max-width: 680px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(243,247,244,.97) 0%, rgba(243,247,244,.90) 48%, rgba(243,247,244,.72) 100%),
      url("assets/images/portrait/01_01_glacier_mist_portrait_1080x1920.webp") center / cover no-repeat;
  }
  .brand-logo-grid { grid-template-columns: 1fr; }
  .hero-visual.landscape-centrepiece,
  .hero-visual.landscape-centrepiece picture,
  .hero-visual.landscape-centrepiece img { min-height: 560px; }
  .landscape-centrepiece-group picture:first-child img,
  .landscape-centrepiece-group picture:last-child img,
  .landscape-feature-image img,
  .dark-image-band.landscape-centrepiece img { min-height: 420px; }
  #nordic-beauty .product-media { padding: 1rem; }
  #nordic-beauty .product-media img {
    min-height: 300px;
    max-height: 460px;
  }
}
