:root {
  --ink: #10243a;
  --muted: #5b6f86;
  --paper: #f6faff;
  --porcelain: #ffffff;
  --delft: #0047ab;
  --delft-dark: #082f68;
  --clay: #0047ab;
  --sage: #8fb7e8;
  --glass: #d7e8ff;
  --line: rgba(0, 71, 171, 0.16);
  --shadow: 0 24px 70px rgba(0, 47, 104, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.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;
}

.section-pad {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 4rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(0, 47, 104, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 71, 171, 0.28);
  background: #f3f8ff;
  color: var(--delft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--delft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--porcelain);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 78px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.86)),
    repeating-linear-gradient(0deg, rgba(0, 71, 171, 0.1) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(90deg, rgba(0, 71, 171, 0.1) 0 1px, transparent 1px 86px);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 11vw, 9.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 680px;
  margin-top: 1.3rem;
  color: #1a3557;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--delft-dark);
}

.button.secondary {
  border-color: rgba(0, 71, 171, 0.26);
  background: rgba(255, 255, 255, 0.82);
}

.hero-media {
  position: relative;
  min-height: min(64vw, 680px);
  border: 1px solid rgba(0, 71, 171, 0.18);
  background: #f6faff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tile-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(92px, 1fr);
  height: 100%;
}

.tile-mosaic span {
  border-right: 1px solid rgba(0, 71, 171, 0.18);
  border-bottom: 1px solid rgba(0, 71, 171, 0.18);
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 71, 171, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(215, 232, 255, 0.6));
}

.tile-mosaic span:nth-child(2n) {
  background:
    radial-gradient(circle at 48% 42%, rgba(0, 71, 171, 0.2), transparent 33%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(143, 183, 232, 0.22));
}

.tile-mosaic span:nth-child(5n) {
  background:
    linear-gradient(45deg, transparent 44%, rgba(0, 71, 171, 0.24) 45% 55%, transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(215, 232, 255, 0.55));
}

.media-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 71, 171, 0.16);
  backdrop-filter: blur(12px);
}

.media-caption span {
  color: var(--muted);
  text-align: right;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef6ff;
}

.trust-strip div {
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  border-right: 1px solid rgba(0, 71, 171, 0.16);
}

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

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--delft-dark);
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  background: var(--porcelain);
}

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

.rich-copy {
  display: grid;
  gap: 1rem;
  color: #1a3557;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.makers {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(238, 246, 255, 0.92)),
    repeating-linear-gradient(90deg, rgba(0, 71, 171, 0.08) 0 1px, transparent 1px 64px);
}

.makers-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(0, 71, 171, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(0, 47, 104, 0.07);
}

.section-head {
  max-width: 900px;
  margin-bottom: 2rem;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: none;
  align-items: end;
}

.section-head.split > p {
  color: var(--muted);
}

.collections {
  background: #f6faff;
}

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

.collection-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) 1fr;
  gap: 1.4rem;
  min-height: 360px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: 0 18px 40px rgba(0, 47, 104, 0.06);
}

.collection-card p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.collection-card a {
  display: inline-flex;
  margin-top: 1.3rem;
  color: var(--delft);
  font-weight: 700;
  text-decoration: none;
}

.placeholder-art {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(0, 71, 171, 0.16);
  background: #eef6ff;
}

.placeholder-art span {
  position: absolute;
  display: block;
  border: 2px solid rgba(0, 71, 171, 0.42);
}

.delft .placeholder-art span:nth-child(1) {
  inset: 18% 18% 18% 18%;
  border-radius: 50%;
}

.delft .placeholder-art span:nth-child(2) {
  inset: 32% 8% auto 8%;
  height: 40%;
  border-left: 0;
  border-right: 0;
}

.delft .placeholder-art span:nth-child(3) {
  inset: 8%;
}

.modern .placeholder-art {
  background: #f3f8ff;
}

.modern .placeholder-art span:nth-child(1) {
  inset: 0 auto 0 28%;
  width: 18%;
  background: rgba(0, 71, 171, 0.66);
}

.modern .placeholder-art span:nth-child(2) {
  inset: 16% 15% auto auto;
  width: 42%;
  height: 34%;
  background: rgba(143, 183, 232, 0.68);
}

.modern .placeholder-art span:nth-child(3) {
  inset: auto 12% 13% 18%;
  height: 34%;
  background: rgba(8, 47, 104, 0.55);
}

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

.offer-card {
  min-height: 280px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.offer-card.featured {
  background: #eef6ff;
  border-color: rgba(0, 71, 171, 0.28);
}

.offer-tag {
  display: inline-flex;
  margin-bottom: 4rem;
  color: var(--clay);
  font-weight: 800;
}

.offer-card p {
  margin-top: 1rem;
  color: var(--muted);
}

.gallery-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: #082f68;
  color: #ffffff;
}

.gallery-copy p:not(.eyebrow) {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0.85rem;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid span {
  display: block;
  aspect-ratio: 1 / 1.18;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.28) 46% 54%, transparent 55%),
    rgba(255, 255, 255, 0.1);
}

.gallery-grid figure:nth-child(2) span {
  aspect-ratio: 1 / 1.45;
  background:
    radial-gradient(circle at 50% 50%, rgba(143, 183, 232, 0.5), transparent 34%),
    rgba(255, 255, 255, 0.1);
}

.gallery-grid figure:nth-child(3) span {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 24px),
    rgba(255, 255, 255, 0.1);
}

.gallery-grid figcaption {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 1.2rem;
  border-top: 2px solid var(--delft);
  background: #f6faff;
}

.process-list span {
  display: block;
  margin-bottom: 4rem;
  color: var(--clay);
  font-weight: 800;
}

.process-list p {
  margin-top: 0.9rem;
  color: var(--muted);
}

.audience {
  background: #eef6ff;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.audience-list span {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(0, 71, 171, 0.16);
  border-radius: 999px;
  background: var(--porcelain);
  color: #1a3557;
  font-weight: 700;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background:
    repeating-linear-gradient(0deg, rgba(0, 71, 171, 0.09) 0 1px, transparent 1px 88px),
    var(--porcelain);
}

.inquiry-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 1rem;
  color: #1a3557;
  font-size: 1.1rem;
}

.contact-box {
  display: grid;
  gap: 0.2rem;
  max-width: 430px;
  margin-top: 2rem;
  padding: 1rem;
  border-left: 3px solid var(--clay);
  background: #eef6ff;
}

.contact-box span {
  color: var(--muted);
}

.contact-box a {
  color: var(--delft);
  font-weight: 800;
  text-decoration: none;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 0.35rem;
  color: #1a3557;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 71, 171, 0.22);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  background: #ffffff;
  color: var(--ink);
}

.inquiry-form textarea {
  resize: vertical;
}

.checkbox-line {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
  padding: 0.9rem;
  border: 1px solid rgba(0, 71, 171, 0.18);
  border-radius: var(--radius);
  background: #eef6ff;
  color: #1a3557;
  font-size: 0.95rem;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin: 0.2rem 0 0;
  padding: 0;
  border-radius: 3px;
  background: #ffffff;
  accent-color: var(--delft);
}

.checkbox-line span {
  font-weight: 600;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.is-success {
  color: var(--delft-dark);
  font-weight: 700;
}

.form-note.is-error {
  color: #8a1f1f;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
  background: var(--ink);
  color: var(--porcelain);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  text-decoration: none;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  text-align: left;
}

.footer-link-button:hover {
  color: #ffffff;
}

.cookie-consent {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 80;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.cookie-panel {
  width: min(100%, 920px);
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid rgba(0, 71, 171, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(0, 47, 104, 0.22);
  pointer-events: auto;
}

.cookie-copy h2 {
  color: var(--delft-dark);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.cookie-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 0.75rem;
  color: #1a3557;
}

.cookie-settings {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.cookie-choice {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0.85rem;
  border: 1px solid rgba(0, 71, 171, 0.16);
  border-radius: var(--radius);
  background: #f6faff;
  color: #1a3557;
}

.cookie-choice input {
  width: 18px;
  height: 18px;
  margin: 0.2rem 0 0;
  accent-color: var(--delft);
}

.cookie-choice strong {
  display: block;
  color: var(--delft-dark);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.legal-page {
  background: #f6faff;
}

.legal-nav {
  justify-content: flex-end;
}

.legal-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.9)),
    repeating-linear-gradient(0deg, rgba(0, 71, 171, 0.08) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(90deg, rgba(0, 71, 171, 0.08) 0 1px, transparent 1px 86px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 1.1rem;
  color: #1a3557;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  gap: 1rem;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.legal-card {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 47, 104, 0.06);
}

.legal-card h2 {
  margin-bottom: 0.9rem;
  color: var(--delft-dark);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.legal-card p + p,
.legal-card p + .legal-box,
.legal-box p + p {
  margin-top: 0.85rem;
}

.legal-card a {
  color: var(--delft);
  font-weight: 800;
}

.legal-note {
  padding: 0.85rem;
  border-left: 3px solid var(--delft);
  background: #eef6ff;
  color: #1a3557;
}

.legal-box {
  padding: 1rem;
  border: 1px solid rgba(0, 71, 171, 0.18);
  background: #f6faff;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #1a3557;
}

.legal-list li + li {
  margin-top: 0.45rem;
}

@media (max-width: 980px) {
  .hero,
  .intro-grid,
  .makers-card,
  .section-head.split,
  .gallery-band,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
  }

  .collection-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 79px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--porcelain);
    transform: translateY(-120%);
    transition: transform 0.2s ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

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

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

  .legal-page .site-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    border-bottom: 0;
    background: transparent;
    transform: none;
  }

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

  .hero {
    padding-top: 3rem;
  }

  h1 {
    font-size: clamp(3.35rem, 19vw, 5.4rem);
  }

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

  .tile-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(80px, 1fr);
  }

  .media-caption {
    display: grid;
  }

  .media-caption span {
    text-align: left;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 71, 171, 0.16);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .collection-card {
    grid-template-columns: 1fr;
  }

  .offer-tag,
  .process-list span {
    margin-bottom: 2rem;
  }

  .process-list,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .cookie-consent {
    inset: auto 0 0 0;
  }

  .cookie-panel {
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .section-pad {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
