/* maretan
   Same layout and palette as the original site, rebuilt as plain HTML/CSS. */

@font-face { font-family: "Barlow"; font-style: normal; font-weight: 200; font-display: swap; src: url("../fonts/barlow-200.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/barlow-500.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-600.woff2") format("woff2"); }
@font-face { font-family: "Nunito Sans"; font-style: normal; font-weight: 200 1000; font-display: swap; src: url("../fonts/nunito-sans-var.woff2") format("woff2"); }

:root {
  --teal: #3cbcdc;
  --teal-deep: #1c849e;
  --ink: #161616;
  --ink-soft: #454545;
  --muted: #737373;
  --panel: #f4f4f3;
  --line: #e4e4e1;
  --white: #fff;

  --font-display: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Nunito Sans", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 88px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
main { flex: 1; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--teal);
  margin: 0;
  letter-spacing: -.005em;
  text-wrap: balance;
}
h1 { font-size: clamp(32px, 4.2vw, 44px); line-height: 1.2; }
h2 { font-size: clamp(21px, 2vw, 24px); line-height: 1.35; }
p { margin: 0 0 .9em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: rgba(60, 188, 220, .25); }

:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(0, 0, 0, .25);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: var(--header-h);
}

.brand { display: block; flex: none; line-height: 0; }
.brand img { width: 150px; height: auto; }

.nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 26px;
  margin: 0; padding: 0;
  list-style: none;
}
.nav a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .01em;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--teal-deep); }
.nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--teal); }

.nav-toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  margin-right: -10px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle::before { top: 15px; }
.nav-toggle span { top: 21px; }
.nav-toggle::after { top: 27px; }
.nav-open .nav-toggle::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span { opacity: 0; }
.nav-open .nav-toggle::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  :root { --header-h: 72px; }
  .brand img { width: 128px; }
  .js .nav-toggle { display: block; }
  .js .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px -24px rgba(0, 0, 0, .35);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
  }
  .js .nav-open .nav {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .js .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px var(--gutter) 20px;
  }
  .js .nav li + li { border-top: 1px solid var(--panel); }
  .js .nav a { display: block; padding: 13px 0; font-size: 15.5px; }
  .js .nav a::after { display: none; }
  /* Without JS the menu simply wraps under the logo. */
  html:not(.js) .site-header .wrap { flex-wrap: wrap; height: auto; padding-block: 16px; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--panel);
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.6;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  padding-block: 22px;
}
.site-footer a { text-decoration: none; transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--teal-deep); }
.site-footer p,
.site-footer address { margin: 0; font-style: normal; }
@media (max-width: 640px) {
  .site-footer .wrap { flex-direction: column; text-align: center; }
}

/* ---------- Home ---------- */

.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  height: calc(100svh - var(--header-h));
  min-height: 420px;
  max-height: 1047px;
  overflow: hidden;
  background: #cfe3f3;
}
.hero img,
.band img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero img { object-position: 52% 70%; }

.band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 70vw, 820px);
  background: #d9d4cc;
}
.band > img {
  position: absolute;
  inset: 0;
  object-position: 50% 50%;
}
.band-veil {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: clamp(32px, 6vw, 96px);
  background: linear-gradient(90deg, rgba(244, 244, 243, .9), rgba(244, 244, 243, .72));
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.band-veil .eyebrow { color: var(--ink-soft); }
.band-veil a {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.35;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(var(--teal), var(--teal)) 0 100% / 0 2px no-repeat;
  transition: background-size .35s var(--ease), color .2s var(--ease);
}
.band-veil a:hover { background-size: 100% 2px; }
.band-veil a span { color: var(--teal-deep); transition: transform .3s var(--ease); display: inline-block; }
.band-veil a:hover span { transform: translateX(4px); }
@media (max-width: 720px) {
  .band { grid-template-columns: 1fr; min-height: 0; }
  .band > img { position: static; aspect-ratio: 3 / 2; height: auto; }
  .band-veil { background: var(--panel); }
}

/* ---------- Page intro ---------- */

.page-intro {
  padding-block: clamp(56px, 8vw, 104px) clamp(48px, 7vw, 88px);
  text-align: center;
}
.page-intro--panel .wrap > div {
  background: var(--panel);
  padding: clamp(36px, 5vw, 56px) 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--teal);
}

/* ---------- Feature rows (image / text) ---------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--panel);
}
.feature-media {
  position: relative;
  min-height: clamp(360px, 45vw, 580px);
  overflow: hidden;
  background: var(--line);
}
.feature-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.feature:hover .feature-media img { transform: scale(1.025); }
.feature-body {
  align-self: center;
  width: 100%;
  max-width: 560px;
  padding: clamp(40px, 6.5vw, 96px) clamp(24px, 6.5vw, 90px);
}
.feature-body h2 { margin-bottom: 26px; }
.feature-body p { color: var(--ink-soft); }
.features > .feature:nth-child(even) .feature-media { order: 2; }
.features > .feature:nth-child(even) .feature-body { justify-self: end; }

@media (max-width: 800px) {
  .feature { grid-template-columns: 1fr; }
  .feature-media { min-height: 0; aspect-ratio: 3 / 2; }
  .features > .feature:nth-child(even) .feature-media { order: 0; }
  .feature-body { max-width: none; }
}

.closing {
  padding-block: clamp(56px, 7vw, 96px);
  text-align: center;
}
.closing p {
  max-width: 720px;
  margin-inline: auto;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.7;
  color: var(--ink);
}

/* ---------- Brands ---------- */

.brands {
  padding-block: clamp(56px, 7vw, 88px) clamp(64px, 8vw, 104px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.brands h2 { margin-bottom: clamp(32px, 4vw, 48px); }
.brands ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px clamp(40px, 7vw, 96px);
  margin: 0; padding: 0;
  list-style: none;
}
.brands img {
  width: auto;
  max-height: 110px;
  max-width: min(280px, 70vw);
  filter: grayscale(1);
  opacity: .72;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}
.brands li:hover img { filter: none; opacity: 1; }
.brands .is-wordmark img { max-height: 30px; }
@media (hover: none) { .brands img { filter: none; opacity: 1; } }

/* ---------- About ---------- */

.about {
  padding-block: clamp(56px, 8vw, 112px);
}
.about .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
}
.about h1 { margin-bottom: 30px; }
.about-text p { color: var(--ink-soft); }
.about-text .lead {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.1em;
}
.about-text strong { font-weight: 600; color: var(--ink); }
.about figure { margin: 0; }
.about figure img { width: 100%; }
@media (max-width: 860px) {
  .about .wrap { grid-template-columns: 1fr; }
}

/* ---------- Catalogue ---------- */

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 13px 26px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .03em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.cta:hover { background: var(--teal-deep); }
.cta:active { transform: translateY(1px); }
.cta svg { width: 16px; height: 16px; flex: none; }

/* ---------- Contact ---------- */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.contact-body {
  justify-self: end;
  width: 100%;
  max-width: calc(var(--wrap) / 2 + var(--gutter));
  padding: clamp(48px, 7vw, 96px) clamp(32px, 6vw, 88px) clamp(56px, 7vw, 96px) var(--gutter);
}
.contact-body h1 { margin-bottom: 28px; }
.contact-details {
  display: grid;
  gap: 4px;
  margin: 0 0 36px;
  font-style: normal;
  color: var(--ink-soft);
}
.contact-details a {
  color: var(--teal-deep);
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
}
.contact-details a:hover { color: var(--ink); }
.contact-media {
  position: relative;
  min-height: 520px;
  background: #cfe3f3;
}
.contact-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}
@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; }
  .contact-body { max-width: none; justify-self: stretch; padding-inline: var(--gutter); }
  .contact-media { min-height: 0; aspect-ratio: 16 / 10; }
}

.form { display: grid; gap: 14px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9c9c4;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #a2a2a2; }
.field input:hover,
.field textarea:hover { border-color: #9a9a95; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(60, 188, 220, .18);
}
.form .cta {
  justify-self: start;
  margin-top: 6px;
  background: var(--ink);
}
.form .cta:hover { background: var(--teal-deep); }
.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.form-note[data-state="ok"] { color: var(--teal-deep); }

/* ---------- 404 ---------- */

.notfound {
  padding-block: clamp(80px, 14vw, 180px);
  text-align: center;
}
.notfound p { color: var(--ink-soft); margin-top: 16px; }
.notfound .cta { margin-top: 32px; }

/* ---------- Reveal on scroll ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

.features > .feature--reverse .feature-media { order: 2; }
.features > .feature--reverse .feature-body { justify-self: end; }
@media (max-width: 800px) {
  .features > .feature--reverse .feature-media { order: 0; }
}

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

@media (max-width: 720px) {
  .hero { height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .hero img { object-position: 82% 60%; }
}
