:root {
  --ink: #151719;
  --night: #111417;
  --night-soft: #1d2227;
  --paper: #fbfaf7;
  --cloth: #e7e0d6;
  --cloth-2: #f1eee8;
  --blue: #4f6a83;
  --blue-deep: #2f455c;
  --blue-soft: #e6eef4;
  --petrol: #365c66;
  --muted: #626b73;
  --line: rgba(21, 23, 25, 0.13);
  --shadow: 0 18px 44px rgba(17, 20, 23, 0.14);
  --radius: 8px;
  --max: 1180px;
  --font-main: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  z-index: 20;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: var(--max);
  min-height: 74px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: grid;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand strong {
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  font-weight: 760;
}

.brand span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 5px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 620;
}

.menu a {
  padding: 10px 11px;
  border-radius: 999px;
  color: #253040;
}

.menu a:hover,
.menu a[aria-current="page"] {
  color: var(--blue-deep);
  background: rgba(79, 106, 131, 0.14);
}

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

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 15, 18, 0.88), rgba(12, 15, 18, 0.54) 50%, rgba(12, 15, 18, 0.12));
  z-index: -1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 92px 22px 72px;
  color: white;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #b8cee0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 780;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: var(--font-main);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.35rem, 5.4vw, 5.15rem);
  font-weight: 780;
}

.hero p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn.primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.btn.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.btn.dark {
  background: var(--blue-deep);
  color: white;
}

.btn.light {
  background: white;
  color: var(--blue-deep);
  border-color: rgba(79, 106, 131, 0.24);
}

.btn.whatsapp {
  background: #25d366;
  color: #0c2b17;
  border-color: #25d366;
}

.contact-choice {
  position: relative;
  display: inline-grid;
  gap: 10px;
}

.contact-choice-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 5;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(17, 20, 23, 0.96);
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}

.contact-choice-menu[hidden] {
  display: none;
}

.contact-choice-menu .btn {
  width: 100%;
}

.section {
  padding: clamp(58px, 8vw, 104px) 22px;
}

.section.dark {
  color: white;
  background: var(--night);
}

.section.cloth {
  background: var(--cloth-2);
}

.wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.intro h1,
.page-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 3.15rem);
  font-weight: 760;
}

.section-head p,
.intro p,
.page-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.dark .section-head p,
.dark .page-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  font-weight: 760;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  color: var(--blue-deep);
  font-weight: 750;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.quick-card {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius);
  color: white;
  background: var(--night);
  display: grid;
  align-content: space-between;
}

.quick-card span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #b8cee0;
  font-weight: 760;
}

.quick-card h2 {
  margin: 18px 0 8px;
  font-size: 1.35rem;
  font-weight: 760;
}

.quick-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.service-icons div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.service-icons strong {
  display: block;
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.service-icons span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-panel {
  margin-top: 26px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  color: var(--blue-deep);
}

.season-banner,
.winter-panel {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-deep), var(--petrol));
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.season-banner h2,
.winter-panel h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 760;
}

.season-banner p:not(.kicker),
.winter-panel p:not(.kicker) {
  max-width: 820px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.season-banner .btn {
  white-space: nowrap;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-list li {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  font-weight: 720;
}

.mini-list.light li {
  color: var(--blue-deep);
  border-color: rgba(79, 106, 131, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.shipping-form-panel {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(79, 106, 131, 0.18);
  border-radius: var(--radius);
  background: #f7fafc;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.shipping-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  color: var(--blue-deep);
}

.shipping-copy p:not(.kicker) {
  margin: 14px 0 0;
  color: var(--muted);
}

.shipping-copy .mini-list {
  margin-top: 22px;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 760;
}

.request-form .full,
.request-form button {
  grid-column: 1 / -1;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(79, 106, 131, 0.24);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  font: inherit;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(79, 106, 131, 0.28);
  border-color: var(--blue);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cloth);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.quote-band {
  padding: clamp(38px, 6vw, 68px) 22px;
  color: white;
  background: var(--night-soft);
}

.quote-band p {
  width: min(100%, 920px);
  margin: 0 auto;
  font-family: var(--font-main);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  line-height: 1.2;
  text-align: center;
  font-weight: 720;
}

.page-hero {
  padding: clamp(70px, 10vw, 126px) 22px clamp(42px, 7vw, 84px);
  color: white;
  background: linear-gradient(90deg, rgba(17, 20, 23, 0.92), rgba(17, 20, 23, 0.68)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.intro {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.intro h1 {
  max-width: 920px;
}

.intro p {
  max-width: 820px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.36fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.3fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.page-copy {
  font-size: 1.02rem;
}

.page-copy p + p {
  margin-top: 18px;
}

.page-copy h2 + p {
  margin-top: 12px;
}

.page-copy p + h2 {
  margin-top: 34px;
}

.list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.side-panel {
  padding: 24px;
  border-radius: var(--radius);
  color: white;
  background: var(--night-soft);
  position: sticky;
  top: 96px;
}

.side-panel h2,
.side-panel h3 {
  margin-top: 0;
}

.side-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.side-panel .btn {
  width: 100%;
  margin-top: 10px;
}

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

.contact-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.contact-card h2,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  font-weight: 760;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

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

.story-note {
  max-width: 880px;
  margin: -8px 0 28px;
  padding: 18px 22px;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.story-note p {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.02rem;
}

.story-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(14, 20, 29, 0.08);
}

.story-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-gallery figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-section {
  background: #f4f7f9;
}

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

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.26rem;
  font-weight: 760;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 38px 22px;
  color: rgba(255, 255, 255, 0.74);
  background: #0d0f11;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: white;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: white;
  border-color: rgba(184, 206, 224, 0.72);
}

.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-social {
  margin-top: 18px;
}

.contact-social .social-link {
  color: var(--night);
  background: rgba(16, 23, 34, 0.04);
  border-color: var(--line);
}

.contact-social .social-link:hover {
  background: rgba(79, 106, 131, 0.14);
}

.social-section {
  background: var(--night);
  color: white;
}

.social-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.social-strip h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 760;
}

.social-actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.social-chip {
  min-height: 92px;
  padding: 16px 10px;
  display: grid;
  place-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
  font-weight: 720;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.social-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.social-chip img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.social-chip.whatsapp {
  border-color: rgba(37, 211, 102, 0.44);
  background: rgba(37, 211, 102, 0.12);
}

.social-chip.instagram {
  border-color: rgba(228, 64, 95, 0.46);
  background: rgba(228, 64, 95, 0.12);
}

.social-chip.facebook,
.social-chip.linkedin {
  border-color: rgba(24, 119, 242, 0.42);
  background: rgba(24, 119, 242, 0.12);
}

.social-chip.tiktok {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.privacy-notice {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: white;
  background: rgba(13, 15, 17, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.privacy-notice[hidden] {
  display: none;
}

.privacy-notice p {
  margin: 0;
  font-size: 0.92rem;
}

.privacy-notice div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.privacy-notice a {
  color: #b8cee0;
  font-weight: 760;
}

.privacy-notice button {
  min-height: 40px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.open .menu {
    display: grid;
  }

  .menu a {
    border-radius: var(--radius);
  }

  .section-head,
  .split,
  .page-grid,
  .policy-layout,
  .social-strip {
    grid-template-columns: 1fr;
  }

  .services,
  .contact-grid,
  .story-gallery,
  .feature-grid,
  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel,
  .season-banner,
  .winter-panel,
  .shipping-form-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.62), rgba(10, 14, 20, 0.92));
  }

  .hero-inner {
    padding-bottom: 44px;
  }

  .services,
  .contact-grid,
  .list,
  .story-gallery,
  .feature-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: auto;
  }

  .mini-list {
    grid-template-columns: 1fr;
  }

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

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

  .actions,
  .btn {
    width: 100%;
  }

  .contact-choice {
    width: 100%;
  }

  .contact-choice-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
  }

  .privacy-notice {
    display: grid;
  }

  .privacy-notice div {
    width: 100%;
    justify-content: space-between;
  }

  .image-frame img {
    min-height: 280px;
  }
}
