:root {
  --canvas: #f3f1eb;
  --paper: #fcfbf7;
  --mist: #dfe9e5;
  --sand: #e8dcc6;
  --sage: #cbd7c8;
  --ink: #202d2c;
  --muted-ink: #62706c;
  --accent: #df724f;
  --accent-dark: #a9452e;
  --line: rgba(32, 45, 44, 0.15);
  --radius: 24px;
  --font: "Plus Jakarta Sans", "Manrope", "Sora", Avenir, Montserrat, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
.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: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  width: min(1440px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 11px;
}
.brand-mark svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a, .back-link {
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.main-nav a:not(.nav-contact):hover, .back-link:hover { color: var(--accent-dark); }
.nav-contact {
  padding: 9px 15px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 12px;
}
.menu-toggle { display: none; }

main { width: min(1440px, calc(100% - 48px)); margin: 0 auto; }
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(160px, auto));
  gap: 14px;
  padding: 12px 0 68px;
}
.tile {
  position: relative;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--radius);
}
.tile h2, .tile p { margin-top: 0; }
.tile h2 { margin-bottom: 8px; font-size: clamp(1.15rem, 1.6vw, 1.65rem); line-height: 1.15; letter-spacing: -0.04em; }
.tile p { margin-bottom: 0; color: var(--muted-ink); font-size: 0.9rem; }
.tile-label, .tile-number {
  display: block;
  margin-bottom: 14px;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.tile-number { opacity: 0.62; }

.hero-tile {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
  min-height: 520px;
  padding: clamp(30px, 4vw, 58px);
  background: var(--mist);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.eyebrow > span { width: 19px; height: 7px; background: var(--accent); border-radius: 10px 2px 10px 2px; }
.hero-tile h1 {
  position: relative;
  z-index: 1;
  max-width: 710px;
  margin: 38px 0 20px;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}
.hero-tile > p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: #53615e;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}
.hero-actions { position: relative; z-index: 2; display: flex; align-items: center; gap: 22px; margin-top: auto; padding-top: 32px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}
.button-primary { color: white; background: var(--ink); }
.button-primary:hover { background: var(--accent-dark); }
.text-link { font-size: 0.87rem; font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.hero-shape {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: min(30vw, 340px);
  opacity: 0.12;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}
.hero-shape .anchor-line { stroke: var(--accent-dark); stroke-width: 7; }

.wind-tile {
  grid-column: 4 / span 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--sand);
}
.tile-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.46);
  border-radius: 50%;
}
.tile-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.7; }
.wind-tile strong { display: block; margin-bottom: 3px; font-size: 1.15rem; }

.fact-tile { grid-column: 6; grid-row: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.fact-dark { color: white; background: var(--ink); }
.fact-dark p { color: rgba(255,255,255,0.62); }
.fact-value { font-size: clamp(2rem, 3.2vw, 3.8rem); font-weight: 800; line-height: 0.9; letter-spacing: -0.07em; }
.fact-unit { margin: 8px 0 17px; color: #b8ccc7; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.service-anchor { grid-column: 4; grid-row: 2; background: var(--sage); }
.service-cargo { grid-column: 5 / span 2; grid-row: 2; padding-right: 35%; background: var(--paper); }
.cargo-symbol { position: absolute; right: 20px; bottom: 18px; width: 34%; fill: none; stroke: var(--accent); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.6; }
.method-tile { grid-column: 1 / span 2; grid-row: 3; background: var(--paper); }
.method-steps { display: flex; align-items: center; margin-top: 24px; color: var(--muted-ink); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.method-steps i { height: 1px; flex: 1; margin: 0 9px; background: var(--line); }
.fixing-tile { grid-column: 3 / span 2; grid-row: 3; background: var(--sand); }
.cta-tile {
  grid-column: 5 / span 2;
  grid-row: 3 / span 2;
  min-height: 350px;
  color: #341d18;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta-tile h2 { max-width: 420px; font-size: clamp(1.7rem, 2.8vw, 3rem); }
.cta-tile p { max-width: 300px; color: rgba(52,29,24,0.7); }
.cta-circle {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  align-self: flex-end;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}
.cta-circle:hover { transform: rotate(-8deg) scale(1.04); background: #111b1a; }
.cta-circle svg { width: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.local-tile { grid-column: 1; grid-row: 4; background: var(--ink); color: white; display: flex; flex-direction: column; justify-content: flex-end; }
.local-tile p { color: rgba(255,255,255,0.6); }
.pin { width: 22px; height: 22px; margin-bottom: auto; background: var(--accent); border: 6px solid rgba(255,255,255,0.17); border-radius: 50% 50% 50% 8%; transform: rotate(-45deg); }
.access-tile { grid-column: 2 / span 3; grid-row: 4; background: var(--mist); }
.access-tile p { max-width: 650px; }

.details {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(40px, 8vw, 120px);
  padding: 85px 4% 100px;
  border-top: 1px solid var(--line);
}
.details-heading h2 { margin: 18px 0 0; font-size: clamp(2rem, 4vw, 4.3rem); line-height: 1; letter-spacing: -0.055em; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
summary::-webkit-details-marker { display: none; }
summary span { font-size: 1.5rem; font-weight: 400; transition: transform 180ms ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 720px; margin: -5px 0 25px; color: var(--muted-ink); }

.contact-strip {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 38px 5%;
  color: white;
  background: var(--ink);
  border-radius: var(--radius);
}
.contact-strip h2 { max-width: 700px; margin: 9px 0 0; font-size: clamp(1.7rem, 3.2vw, 3.6rem); line-height: 1.05; letter-spacing: -0.05em; }
.contact-links { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; text-align: right; }
.contact-links a { color: #f29a7e; font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 800; text-decoration: none; }
.contact-links span { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

.site-footer {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0 38px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  color: var(--muted-ink);
  font-size: 0.82rem;
}
.footer-brand { color: var(--ink); }
.site-footer > div > p { max-width: 360px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-column strong { margin-bottom: 5px; color: var(--ink); }
.footer-column a { text-decoration: none; }
.footer-column a:hover { color: var(--accent-dark); }

.privacy-main { padding: 12px 0 90px; }
.privacy-hero {
  padding: clamp(42px, 8vw, 110px);
  background: var(--mist);
  border-radius: var(--radius);
}
.privacy-hero h1 { max-width: 900px; margin: 32px 0 16px; font-size: clamp(3rem, 7vw, 7rem); line-height: 0.95; letter-spacing: -0.065em; }
.privacy-hero p { margin: 0; color: var(--muted-ink); }
.privacy-layout { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: clamp(45px, 8vw, 120px); padding: 80px 5% 0; }
.privacy-summary { align-self: start; padding: 26px; background: var(--sand); border-radius: 20px; }
.privacy-summary strong { font-size: 1.25rem; }
.privacy-summary p { color: var(--muted-ink); }
.privacy-summary a { font-size: 0.8rem; font-weight: 800; }
.privacy-content section { padding: 0 0 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.privacy-content h2 { margin-top: 0; font-size: clamp(1.3rem, 2vw, 2rem); letter-spacing: -0.035em; }
.privacy-content p { color: var(--muted-ink); }
.compact-footer { border-top: 1px solid var(--line); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

@media (max-width: 1050px) {
  .bento { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: none; }
  .hero-tile { grid-column: 1 / span 3; grid-row: 1 / span 2; }
  .wind-tile { grid-column: 1 / span 2; grid-row: 3; }
  .fact-tile { grid-column: 4; grid-row: 1; }
  .service-anchor { grid-column: 4; grid-row: 2; }
  .service-cargo { grid-column: 3 / span 2; grid-row: 3; }
  .method-tile { grid-column: 1 / span 2; grid-row: 4; }
  .fixing-tile { grid-column: 3 / span 2; grid-row: 4; }
  .local-tile { grid-column: 1; grid-row: 5; }
  .access-tile { grid-column: 2 / span 2; grid-row: 5; }
  .cta-tile { grid-column: 4; grid-row: 5 / span 2; }
  .hero-tile h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); }
  .cta-tile { padding: 20px; }
  .cta-tile h2 { font-size: 1.7rem; }
}

@media (max-width: 760px) {
  :root { --radius: 20px; }
  .topbar, main, .site-footer { width: min(100% - 28px, 680px); }
  .topbar { min-height: 66px; position: relative; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .menu-toggle span:not(.sr-only) { width: 100%; height: 2px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    z-index: 20;
    top: 62px;
    right: 0;
    left: 0;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 35px rgba(32,45,44,0.12);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px; }
  .nav-contact { text-align: center; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding-bottom: 52px; }
  .tile { padding: 20px; }
  .hero-tile { grid-column: 1 / -1; grid-row: auto; min-height: 560px; padding: 30px 24px; }
  .hero-tile h1 { margin-top: 30px; font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-shape { width: 240px; right: -50px; bottom: 15px; }
  .wind-tile { grid-column: 1 / -1; grid-row: auto; min-height: 155px; }
  .fact-tile { grid-column: 1; grid-row: auto; min-height: 190px; }
  .service-anchor { grid-column: 2; grid-row: auto; min-height: 190px; }
  .service-cargo { grid-column: 1 / -1; grid-row: auto; min-height: 180px; }
  .method-tile { grid-column: 1 / -1; grid-row: auto; min-height: 230px; }
  .fixing-tile { grid-column: 1 / -1; grid-row: auto; min-height: 180px; }
  .local-tile { grid-column: 1; grid-row: auto; min-height: 190px; }
  .access-tile { grid-column: 2; grid-row: auto; min-height: 190px; }
  .access-tile .tile-label { margin-bottom: 24px; }
  .access-tile h2 { font-size: 1.1rem; }
  .access-tile p { font-size: 0.76rem; }
  .cta-tile { grid-column: 1 / -1; grid-row: auto; min-height: 380px; padding: 25px; }
  .cta-tile h2 { font-size: 2.25rem; }
  .details { grid-template-columns: 1fr; gap: 45px; padding: 65px 5px 75px; }
  .contact-strip { align-items: flex-start; flex-direction: column; padding: 34px 28px; }
  .contact-links { align-items: flex-start; text-align: left; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-top: 45px; }
  .site-footer > div:first-child { grid-column: 1 / -1; }
  .privacy-hero { padding: 46px 25px; }
  .privacy-hero h1 { font-size: clamp(2.8rem, 14vw, 5rem); }
  .privacy-layout { grid-template-columns: 1fr; padding: 45px 5px 0; }
}

@media (max-width: 430px) {
  .hero-tile { min-height: 610px; }
  .hero-tile h1 { font-size: 2.75rem; }
  .wind-tile { align-items: flex-start; }
  .service-cargo { padding-right: 34%; }
  .method-steps { font-size: 0.6rem; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > div:first-child { grid-column: auto; }
  .back-link { font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
