:root {
  --ink: #17202a;
  --muted: #667676;
  --paper: #fbf8f0;
  --panel: #ffffff;
  --line: #e4dccd;
  --forest: #1f5b73;
  --copper: #ffcc08;
  --blue: #2f69ad;
  --sun: #ffcc08;
  --sage: #7f927d;
  --sky: #e9f6fb;
  --sand: #ead8bb;
  --pool: #73b8c3;
  --shadow: 0 22px 52px rgba(48, 72, 78, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 3vw, 42px);
  min-height: 84px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 4px solid var(--sun);
  box-shadow: 0 14px 34px rgba(48, 72, 78, 0.12);
  backdrop-filter: blur(14px);
}

.brand,
.header-action,
.main-nav,
.button,
.contact-box a,
.contact-box span {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(168px, 15vw, 230px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(48, 72, 78, 0.12));
}

.main-nav {
  gap: 6px;
  margin-left: auto;
  color: #33454d;
  font-size: 15px;
  font-weight: 800;
}

.main-nav a:hover,
.header-action:hover {
  color: var(--blue);
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
}

.main-nav a:hover {
  background: rgba(255, 204, 8, 0.22);
}

.header-action {
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 204, 8, 0.75);
  border-radius: 8px;
  background: var(--sun);
  color: #050505;
  font-weight: 900;
}

.header-action:hover {
  color: #050505;
  background: #ffe15b;
}

.header-action svg,
.button svg,
.solution-card svg,
.contact-box svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: white;
  overflow: hidden;
  background: #dfeef4;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: #eaf7fb;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 237, 0.68) 38%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(21, 46, 56, 0.18)),
    url("./assets/photos/pool-lamellendach.jpg") center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(170px, 21vh, 230px) clamp(18px, 6vw, 76px) 140px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b18400;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.4vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-content p {
  max-width: 660px;
  color: #41535c;
  font-size: clamp(18px, 2vw, 22px);
}

.hero h1 {
  color: #17202a;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.34);
}

.hero-actions,
.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.button.primary {
  color: #071019;
  background: var(--sun);
}

.button.secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 105, 173, 0.24);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 6vw, 76px);
  right: clamp(18px, 6vw, 76px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(48, 72, 78, 0.14);
}

.hero-strip span {
  min-height: 78px;
  padding: 18px 22px;
  color: #4f6266;
}

.hero-strip span + span {
  border-left: 1px solid rgba(47, 105, 173, 0.14);
}

.hero-strip strong {
  display: block;
  color: var(--blue);
}

.section-pad {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 68px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  background: #fffdf8;
}

.intro p:last-child {
  color: var(--muted);
  font-size: 20px;
}

.holiday {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(180deg, #fffdf8, #eef8fa);
}

.holiday-copy {
  max-width: 620px;
}

.holiday-copy p:last-child {
  color: var(--muted);
  font-size: 20px;
}

.holiday-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 14px;
}

.holiday-gallery img {
  height: 100%;
  min-height: 210px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(24, 27, 26, 0.16);
}

.holiday-gallery .gallery-large {
  grid-row: span 2;
  min-height: 500px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.solutions {
  background: #eaf7fb;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.solution-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(24, 27, 26, 0.1);
}

.solution-card img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.solution-card div {
  padding: 22px;
}

.solution-card svg {
  margin-bottom: 18px;
  color: var(--blue);
}

.solution-card p,
.partner-list p,
.timeline p,
.request-copy p,
.form-note {
  color: var(--muted);
}

.inspiration {
  background: #fffdf8;
}

.image-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 38vw);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--pool) #eef8fa;
}

.image-rail figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 40px rgba(48, 72, 78, 0.12);
  scroll-snap-align: start;
}

.image-rail img {
  height: 100%;
  object-fit: cover;
}

.image-rail figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #17202a;
  background: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 900;
}

.partners {
  background:
    linear-gradient(90deg, rgba(31, 91, 115, 0.82), rgba(47, 105, 173, 0.64)),
    url("./assets/photos/outdoor-restaurant.webp") center / cover;
  color: white;
}

.partners .section-heading p,
.partners .eyebrow {
  color: var(--sun);
}

.partners .section-heading h2 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 34px;
}

.logo-cloud a {
  display: grid;
  min-height: 108px;
  place-items: center;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
}

.logo-cloud img {
  width: min(230px, 100%);
  max-height: 74px;
  object-fit: contain;
}

.logo-cloud img.wide-logo {
  width: min(270px, 100%);
  max-height: 82px;
}

.partner-list article {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.partner-list span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--sun);
  font-weight: 900;
  text-transform: uppercase;
}

.partner-list p {
  color: rgba(255, 255, 255, 0.7);
}

.process {
  background: #fffdf8;
}

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

.timeline article {
  padding-top: 22px;
  border-top: 2px solid var(--blue);
}

.timeline strong {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue);
}

.request {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(26px, 6vw, 74px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.97), rgba(233, 246, 251, 0.88)),
    url("./assets/photos/warema-markise.jpg") center / cover;
}

.request-copy {
  position: sticky;
  top: 96px;
}

.contact-box {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-box a,
.contact-box span {
  gap: 10px;
  color: var(--forest);
  font-weight: 750;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

label,
legend {
  color: #39403c;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  padding: 13px;
  resize: vertical;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-row > label {
  min-width: min(240px, 100%);
  flex: 1 1 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  font-weight: 700;
}

.choice-grid input {
  width: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--blue);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.privacy-check input {
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.privacy-check a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.submit-button {
  width: fit-content;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 5vw, 68px);
  color: white;
  background: #173747;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

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

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 140px clamp(18px, 5vw, 68px) 80px;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 72px);
}

.legal-main h2 {
  margin-top: 38px;
  font-size: clamp(24px, 3vw, 36px);
}

.legal-main p,
.legal-main li {
  color: #465a61;
}

.legal-main a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner {
  position: fixed;
  z-index: 40;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(47, 105, 173, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(48, 72, 78, 0.18);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: #52666d;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-actions a {
  color: var(--blue);
  font-weight: 800;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #eaf7fb;
}

.status-panel {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: white;
  background: #173747;
}

.status-panel img {
  width: min(340px, 80vw);
  margin-bottom: 32px;
}

.status-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .solution-grid,
  .holiday,
  .logo-cloud,
  .partner-list,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .request {
    grid-template-columns: 1fr;
  }

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

  .request-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    justify-content: space-between;
    gap: 10px;
    min-height: 76px;
    padding: 9px 12px;
  }

  .header-action {
    gap: 6px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 120px 18px 250px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 33px;
  }

  .hero-strip {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 58px;
    padding: 12px 14px;
  }

  .hero-strip span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .solution-grid,
  .logo-cloud,
  .partner-list,
  .timeline,
  .choice-grid {
    grid-template-columns: 1fr;
  }

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

  .holiday-gallery .gallery-large,
  .holiday-gallery img {
    min-height: 260px;
  }

  .image-rail {
    grid-auto-columns: minmax(250px, 82vw);
  }

  .image-rail figure {
    min-height: 340px;
  }

  .site-footer {
    display: grid;
  }

  .cookie-banner {
    display: grid;
  }

  .cookie-actions {
    justify-content: space-between;
  }
}
