﻿:root {
  --cream: #f8fdff;
  --paper: rgba(255, 255, 255, 0.56);
  --ink: #14323d;
  --muted: #607982;
  --water: #62c9dc;
  --water-deep: #278ca3;
  --terracotta: #c89b63;
  --line: rgba(28, 94, 113, 0.16);
  --glass: rgba(255, 255, 255, 0.56);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --text-dark: #333333;
  --shadow-soft: 0 18px 54px rgba(28, 94, 113, 0.09);
  --shadow-strong: 0 28px 90px rgba(28, 94, 113, 0.18);
  --page-gutter: clamp(22px, 5vw, 72px);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Base reset and page shell */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 3%, rgba(98, 201, 220, 0.28), transparent 34rem),
    radial-gradient(circle at 86% 20%, rgba(255, 222, 162, 0.34), transparent 32rem),
    linear-gradient(180deg, #f8fdff 0%, #effafd 46%, #fff8ed 100%);
  color: var(--ink);
  font-family: var(--font-body);
}

a {
  color: inherit;
}

section {
  padding: 82px var(--page-gutter);
}

/* Typography */
h1,
h2 {
  margin: 0;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  max-width: 18ch;
  background-image: linear-gradient(180deg, #46c6f4 0%, #308fcf 50%, #313592 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: #308fcf;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-body);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  padding-bottom: 0.08em;
  
}

h2 {
  font-family: "Monsieur La Doulaise", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.9;
}

p,
.lead,
.contact-details,
.contact-item,
.supplier-copy p,
.service-strip span,
.concept p,
.seo-card p {
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 400;
}

p {
  line-height: 1.7;
}

.lead {
  width: 450px;
  max-width: 465px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.58;
}

.kicker,
.eyebrow {
  display: none !important;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

/* Header and navigation */
header,
.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: auto;
  margin: 0;
  padding: 8px clamp(18px, 4vw, 44px);
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(28, 94, 113, 0.08);
  backdrop-filter: blur(24px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  transform: translateX(-20px);
  color: inherit;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  display: block;
  width: 190px;
  max-width: 48vw;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(42, 135, 164, 0.16));
}

nav {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--muted);
  font-size: 14px;
  backdrop-filter: blur(16px) saturate(150%);
}

nav a {
  position: relative;
  overflow: hidden;
  padding: 7px 13px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--ink);
  text-decoration: none;
  transition:
    background 260ms ease,
    transform 260ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 55%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  opacity: 0;
  transition:
    opacity 360ms ease,
    left 1100ms ease;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(255, 255, 255, 0.34);
}

nav a:hover::after,
nav a:focus-visible::after {
  left: 115%;
  opacity: 1;
}

/* Shared buttons and clickable cards */
.button,
.service-strip a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 40px rgba(28, 94, 113, 0.11);
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  backdrop-filter: blur(18px) saturate(150%);
  transition:
    transform 420ms ease,
    box-shadow 420ms ease,
    background 420ms ease;
}

.button {
  padding: 14px 20px;
}

.button.primary {
  background: linear-gradient(135deg, rgba(98, 201, 220, 0.38), rgba(255, 255, 255, 0.24));
  color: #0b3f4f;
}

.button::after,
.service-strip a::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 55%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  opacity: 0;
  transition:
    opacity 360ms ease,
    left 1100ms ease;
}

.button:hover,
.button:focus-visible,
.service-strip a:hover,
.service-strip a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(28, 94, 113, 0.18);
}

.button:hover::after,
.button:focus-visible::after,
.service-strip a:hover::after,
.service-strip a:focus-visible::after {
  left: 115%;
  opacity: 1;
}

.button:active,
.service-strip a:active {
  transform: translateY(-1px) scale(0.99);
}

/* Hero section and JavaScript slideshow */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: start;
  min-height: 78svh;
  overflow: hidden;
  padding: 128px var(--page-gutter) 56px;
  border-radius: 0 !important;
  background: #eaf8fb;
}

.hero::before,
.hero::after {
  display: none !important;
}

.hero-slides {
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  background-position: center var(--parallax-y, 50%);
  background-size: cover;
  background-attachment: fixed;
  transition: opacity 1600ms ease-in-out;
  will-change: opacity, transform, background-position;
}

.hero-slide.is-active {
  opacity: 1;
  animation: heroSlideZoomOut 9000ms linear forwards;
}

.hero-slide.is-exiting {
  opacity: 0;
  transform: scale(1);
}

.hero-slide:not(.is-active) {
  animation: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
  min-height: auto;
}

.hero-content {
  max-width: 500px;
  margin-top: 0;
  margin-left: 0;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px) saturate(160%);
}

.hero-copy-panel {
  padding: clamp(12px, 1.6vw, 18px);
  background-image: linear-gradient(90deg, rgba(136, 136, 136, 0) 0%, rgba(255, 255, 255, 0) 100%);
  background-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  box-shadow: none;
}

.hero-copy-panel h1 {
  margin-bottom: 10px;
}

.hero-copy-panel .lead {
  margin-top: 0;
  margin-bottom: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions {
  justify-content: center;
  margin: 18px auto;
}

.hero-actions .button {
  padding: 16px 28px;
}

.mosaic {
  display: none;
}

/* Quick service links below hero */
.service-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: -64px;
  padding: 0 var(--page-gutter) 72px;
}

.service-strip a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 136px;
  padding: 22px;
}

/* Inspiration cards */
.concepts {
  padding-top: 38px;
  background: transparent;
  color: var(--ink);
}

.concepts .section-head {
  margin-bottom: 19px;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.concept {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  padding: 24px;
  border: 0;
  border-radius: 30px;
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(145%);
  transition:
    box-shadow 260ms ease,
    transform 260ms ease;
}

.concept::before {
  content: "";
  display: block;
  flex: 0 0 190px;
  height: 190px;
  min-height: 190px;
  margin: -24px -24px 24px;
  border-radius: 30px 30px 0 0;
  background: url("../assets/images.png") center var(--parallax-y, 50%) / cover no-repeat;
  transform: scale(1);
  transform-origin: center;
  transition:
    background-position 600ms ease,
    filter 600ms ease,
    transform 600ms ease;
  will-change: background-position, filter, transform;
}

.concept:hover,
.concept:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(28, 94, 113, 0.14);
}

.concept:hover::before,
.concept:focus-within::before {
  background-position: center calc(var(--parallax-y, 50%) - 3px);
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.concept:nth-child(2)::before {
  background-image: url("../assets/evening.png");
}

.concept:nth-child(3)::before {
  background-image: url("../assets/villa.png");
}

.concept:nth-child(4)::before {
  background-image: url("../assets/arktitektur.png");
}

.concept strong {
  display: none;
}

/* Supplier and quality section */
.quality,
.supplier-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 92px);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.supplier-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 76px);
  align-items: stretch;
}

.supplier-logos a {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 110px;
  overflow: hidden;
  padding: 22px;
  border: 0;
  border-radius: 28px;
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(145%);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.supplier-logos a::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23d8d8d8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10v10'/%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M5 11v8h8'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0;
  transform: translate(-4px, 4px) scale(0.88);
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.supplier-logos a:hover,
.supplier-logos a:focus-visible {
  transform: translateY(-4px) scale(1.035);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 70px rgba(28, 94, 113, 0.14);
}

.supplier-logos a:hover::after,
.supplier-logos a:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.supplier-logos img {
  width: min(260px, 100%);
  max-height: 76px;
  object-fit: contain;
}

.supplier-copy {
  border-left: 8px solid #1e84ad;
  padding-left: clamp(24px, 4vw, 36px);
}

.supplier-copy h2 {
  font-family: var(--font-body);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.supplier-copy p {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.7;
}

.supplier-order-button {
  margin-top: 20px;
}

/* SEO content cards */
.seo {
  background: transparent;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 32px;
}

.seo-card {
  width: 100%;
  height: 100%;
  padding: 24px;
  border: 0;
  border-radius: 24px;
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(145%);
}

/* Contact section and form */
.contact {
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  text-align: center;
  backdrop-filter: blur(18px) saturate(145%);
}

.contact p {
  max-width: 620px;
  margin-inline: auto;
}

.contact-details {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 18px 0 0;
  text-align: left;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.contact-item svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: #1e84ad;
  stroke-width: 1.8;
}

.contact-form {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: none;
  margin: 34px auto 0;
  padding: clamp(20px, 4vw, 34px);
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px) saturate(145%);
}

.contact-form label {
  position: relative;
  display: block;
  color: var(--ink);
  font-weight: 400;
  text-align: left;
}

.contact-form label span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 14px;
  color: rgba(51, 51, 51, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  padding-inline: 5px;
  background: #ffffff;
  transform: translateY(-50%) scale(0.92);
  transform-origin: left top;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    padding 180ms ease;
}

.contact-form textarea + span {
  top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(51, 51, 51, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--ink);
  font: inherit;
  outline: none;
  backdrop-filter: blur(12px) saturate(145%);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(51, 51, 51, 0.48);
  box-shadow: 0 0 0 4px rgba(98, 201, 220, 0.16);
}

.contact-form input:focus + span,
.contact-form input:not(:placeholder-shown) + span,
.contact-form textarea:focus + span,
.contact-form textarea:not(:placeholder-shown) + span {
  color: #333333;
  transform: translateY(-50%) scale(0.92);
}

.contact-form input:focus + span,
.contact-form textarea:focus + span {
  transform: translateY(-50%) scale(1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: center;
  margin-top: 6px;
  cursor: pointer;
}

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

/* Product inquiry modal */
.order-modal {
  width: min(920px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--ink);
}

.order-modal::backdrop {
  background: rgba(8, 24, 31, 0.48);
  backdrop-filter: blur(8px);
}

.order-modal__panel {
  position: relative;
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 253, 255, 0.82)),
    #ffffff;
  box-shadow: 0 34px 110px rgba(8, 24, 31, 0.24);
  backdrop-filter: blur(24px) saturate(150%);
}

.order-modal__intro {
  max-width: 720px;
}

.order-modal__intro h2 {
  color: var(--ink);
}

.order-modal__intro p {
  margin-bottom: 0;
}

.order-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
}

.order-modal__close:hover,
.order-modal__close:focus-visible {
  background: transparent;
}

.order-form {
  margin-top: 0;
}

.thanks-modal {
  width: min(560px, calc(100% - 32px));
}

.thanks-modal__panel {
  text-align: center;
}

/* Motion */
@keyframes heroSlideZoomOut {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

/* Responsive layout */
@media (max-width: 950px) {
  header,
  .topbar {
    justify-content: center;
    padding: 8px 16px;
  }

  .brand {
    transform: none;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 72svh;
    padding: 96px var(--page-gutter) 56px;
  }

  .hero-content {
    width: 40%;
    max-width: 40%;
    margin-left: 0px;
  }

  .lead {
    width: 100%;
    max-width: 100%;
  }

  .concept-grid,
  .quality,
  .supplier-showcase,
  .supplier-logos,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -38px;
  }

  .concept {
    min-height: 280px;
  }

  .supplier-copy {
    border-left-width: 5px;
  }
}

@media (max-width: 640px) {
  .service-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) and (orientation: portrait) {
  .hero-content {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero,
  .hero-slide,
  .concept::before {
    background-position: center center !important;
  }

  .hero-slide,
  .hero-slide.is-active {
    animation: none;
    transform: scale(1);
  }

  .concept,
  .concept::before {
    transition: none;
  }

  .concept:hover,
  .concept:focus-within,
  .concept:hover::before,
  .concept:focus-within::before {
    transform: none;
  }
}
