:root {
  --canvas: #f4f2ec;
  --paper: #fffdf8;
  --mist: #dce9e8;
  --sand: #e8ddca;
  --soft-ink: #273a42;
  --ink: #17252a;
  --muted: #5e6a6e;
  --accent: #df6d46;
  --accent-dark: #ad4728;
  --line: rgba(23, 37, 42, 0.14);
  --radius: 24px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  padding: 18px 0;
}

.topbar-inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-mark rect {
  fill: var(--soft-ink);
  stroke: none;
}

.brand-mark path {
  fill: none;
  stroke: var(--paper);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

.main-nav .nav-phone {
  padding: 10px 15px;
  color: var(--paper);
  background: var(--soft-ink);
  border-radius: 12px;
}

.nav-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 11px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 2px;
}

.board-section {
  padding: 18px 0 76px;
}

.bento-board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 152px);
  gap: 14px;
}

.tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 37, 42, 0.05);
  border-radius: var(--radius);
}

.hero-tile {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
  display: flex;
  padding: 34px;
  background: var(--soft-ink);
  color: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 465px;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow,
.tile-label {
  display: block;
  margin-bottom: 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-tile .eyebrow {
  color: #bdd4d1;
}

.hero-tile h1 {
  max-width: 440px;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero-tile p {
  max-width: 450px;
  margin: 18px 0 24px;
  color: #d8e0df;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  margin-top: auto;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.round-action:focus-visible,
.dialog-close:focus-visible,
.nav-toggle:focus-visible,
.cookie-notice button:focus-visible {
  outline: 3px solid rgba(223, 109, 70, 0.4);
  outline-offset: 3px;
}

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

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

.text-link {
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
}

.hero-motif {
  position: absolute;
  right: -30px;
  bottom: -17px;
  width: 230px;
  height: 180px;
  opacity: 0.55;
}

.sun-disc {
  position: absolute;
  top: 12px;
  right: 50px;
  width: 66px;
  height: 66px;
  background: var(--accent);
  border-radius: 50%;
}

.shade-line {
  position: absolute;
  top: 0;
  width: 14px;
  height: 104px;
  background: #b9d2d0;
  border-radius: 10px;
  transform: rotate(24deg);
}

.line-one { right: 52px; }
.line-two { right: 86px; }
.line-three { right: 120px; }

.hero-motif svg {
  position: absolute;
  bottom: 0;
  width: 240px;
  fill: none;
  stroke: #dce9e8;
  stroke-width: 2;
}

.fact-tile,
.service-tile,
.cta-tile {
  padding: 22px;
}

.fact-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fact-tile strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.fact-tile span:last-child,
.fact-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.fact-visit {
  grid-column: 4;
  grid-row: 1;
  background: var(--sand);
}

.tile-icon {
  width: 28px;
  font-size: 26px;
  line-height: 1;
}

.fact-wind {
  grid-column: 5 / span 2;
  grid-row: 1;
  flex-direction: row;
  align-items: flex-end;
  gap: 18px;
  background: var(--mist);
}

.fact-wind div {
  max-width: 170px;
}

.fact-wind p {
  max-width: 150px;
}

.service-tile {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--paper);
}

.service-tile svg {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--soft-ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tile h2,
.cta-tile h2 {
  margin: 0 0 5px;
  font-size: 17px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.service-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.service-blinds {
  grid-column: 4 / span 2;
  grid-row: 2;
}

.service-access {
  grid-column: 6;
  grid-row: 2;
  padding: 17px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: #d8dfd5;
}

.service-access svg {
  width: 34px;
  height: 34px;
}

.service-access h2 {
  font-size: 15px;
}

.service-access p {
  display: none;
}

.service-awnings {
  grid-column: 1 / span 2;
  grid-row: 3;
  background: var(--mist);
}

.fact-guarantee {
  grid-column: 3;
  grid-row: 3;
  background: var(--paper);
}

.cta-tile {
  grid-column: 4 / span 3;
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: white;
  background: var(--accent);
}

.cta-tile .tile-label {
  margin-bottom: 7px;
  color: #ffe1d4;
}

.cta-tile h2 {
  max-width: 390px;
  margin: 0;
  font-size: 24px;
}

.round-action {
  display: grid;
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--accent);
  background: white;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.round-action svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.details-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
  gap: 70px;
  padding-bottom: 90px;
}

.details-heading h2 {
  max-width: 280px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.details-heading .eyebrow,
.policy-hero .eyebrow {
  color: var(--accent-dark);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 21px 46px 21px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 640px;
  margin: -5px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.contact-strip {
  padding: 57px 0;
  color: white;
  background: var(--soft-ink);
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-strip .eyebrow {
  margin-bottom: 8px;
  color: #bcd2d0;
}

.contact-strip h2 {
  margin: 0;
  font-size: clamp(29px, 4vw, 47px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.contact-actions {
  display: flex;
  gap: 10px;
}

.button-light {
  color: var(--ink);
  background: white;
}

.button-outline-light {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.site-footer {
  padding: 60px 0 25px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: 70px;
  padding-bottom: 48px;
}

.footer-grid p {
  max-width: 350px;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid h2 {
  margin: 6px 0 15px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid address,
.footer-grid > div > a:not(.brand) {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.social-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--accent-dark);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

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

.contact-dialog {
  width: min(calc(100% - 32px), 560px);
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 24px;
}

.contact-dialog::backdrop {
  background: rgba(17, 29, 33, 0.72);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.dialog-head .eyebrow {
  margin-bottom: 6px;
  color: var(--accent-dark);
}

.dialog-head h2 {
  margin: 0 0 20px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.dialog-close {
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--canvas);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-dialog form {
  display: grid;
  gap: 8px;
}

.contact-dialog label:not(.check-row) {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
}

.contact-dialog input,
.contact-dialog textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
}

.contact-dialog input:focus,
.contact-dialog textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(223, 109, 70, 0.14);
}

.contact-dialog textarea {
  resize: vertical;
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  margin: 8px 0;
  color: var(--muted);
  font-size: 11px;
}

.check-row input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
}

.button-wide {
  width: 100%;
}

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.cookie-notice {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 18px;
  display: none;
  width: min(calc(100% - 36px), 390px);
  padding: 16px;
  color: white;
  background: var(--soft-ink);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.cookie-notice.is-visible {
  display: block;
}

.cookie-notice p {
  margin: 0 0 12px;
  font-size: 12px;
}

.cookie-notice div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-notice a {
  color: #dbe7e5;
  font-size: 11px;
}

.cookie-notice button {
  padding: 7px 12px;
  color: var(--ink);
  background: white;
  border: 0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.policy-main {
  padding: 42px 0 90px;
}

.policy-hero {
  max-width: 780px;
  padding: 48px;
  background: var(--mist);
  border-radius: var(--radius);
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.policy-hero p {
  max-width: 620px;
  margin: 20px 0;
  color: var(--muted);
}

.policy-date {
  font-size: 12px;
  font-weight: 700;
}

.policy-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 730px);
  gap: 70px;
  margin-top: 55px;
  justify-content: center;
}

.policy-summary {
  align-self: start;
  padding: 24px;
  background: var(--sand);
  border-radius: 18px;
}

.policy-summary strong {
  font-size: 18px;
}

.policy-summary p {
  color: var(--muted);
  font-size: 13px;
}

.policy-summary a {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.policy-content section {
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 11px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.policy-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.policy-back {
  margin-top: 5px;
}

.compact-footer {
  padding-top: 26px;
}

@media (max-width: 900px) {
  .bento-board {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 150px);
  }

  .hero-tile {
    grid-column: 1 / span 3;
  }

  .fact-visit {
    grid-column: 4;
  }

  .fact-wind {
    grid-column: 4;
    grid-row: 2;
    flex-direction: column;
    align-items: flex-start;
  }

  .fact-wind p {
    display: none;
  }

  .service-blinds {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .service-access {
    grid-column: 3 / span 2;
    grid-row: 3;
    flex-direction: row;
    align-items: center;
  }

  .service-access p {
    display: block;
  }

  .service-awnings {
    grid-column: 1 / span 2;
    grid-row: 4;
  }

  .fact-guarantee {
    grid-column: 3 / span 2;
    grid-row: 4;
  }

  .cta-tile {
    grid-column: 1 / span 4;
    grid-row: 5;
  }

  .footer-grid {
    gap: 35px;
  }

  .policy-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 35px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .topbar {
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav:not(.privacy-nav) {
    position: absolute;
    z-index: 10;
    top: 67px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav:not(.privacy-nav) a {
    padding: 9px;
  }

  .privacy-nav a:not(.nav-phone) {
    display: none;
  }

  .board-section {
    padding: 8px 0 55px;
  }

  .bento-board {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 10px;
  }

  .hero-tile {
    grid-column: 1 / span 2;
    grid-row: auto;
    min-height: 430px;
    padding: 28px 24px;
  }

  .hero-tile h1 {
    font-size: clamp(37px, 12vw, 52px);
  }

  .hero-tile p {
    font-size: 14px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-motif {
    right: -70px;
    opacity: 0.34;
  }

  .fact-visit,
  .fact-wind,
  .service-blinds,
  .service-access,
  .service-awnings,
  .fact-guarantee,
  .cta-tile {
    grid-row: auto;
  }

  .fact-visit {
    grid-column: 1;
    min-height: 155px;
  }

  .fact-wind {
    grid-column: 2;
    min-height: 155px;
  }

  .service-blinds,
  .service-access,
  .service-awnings {
    grid-column: 1 / span 2;
    min-height: 145px;
  }

  .fact-guarantee {
    grid-column: 1;
    min-height: 150px;
  }

  .cta-tile {
    grid-column: 2;
    min-height: 150px;
    padding: 18px;
  }

  .cta-tile h2 {
    font-size: 18px;
  }

  .cta-tile .round-action {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 42px;
    height: 42px;
  }

  .details-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 65px;
  }

  .details-heading h2 {
    max-width: none;
  }

  .contact-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-main {
    padding-top: 15px;
  }

  .policy-hero {
    padding: 30px 24px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
  }

  .contact-dialog {
    padding: 22px 18px;
  }
}

@media (max-width: 430px) {
  .brand span {
    font-size: 14px;
  }

  .privacy-nav .nav-phone {
    padding: 9px 10px;
    font-size: 11px;
  }

  .hero-tile {
    min-height: 455px;
  }

  .fact-tile,
  .service-tile {
    padding: 17px;
  }

  .fact-tile strong {
    font-size: 20px;
  }

  .fact-wind strong {
    font-size: 17px;
  }

  .cta-tile .tile-label {
    font-size: 9px;
  }

  .cta-tile h2 {
    max-width: 130px;
    font-size: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}