:root {
  --bg: #f3f8fb;
  --bg-soft: #edf4f7;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --line: rgba(13, 54, 79, 0.12);
  --text: #173145;
  --muted: #567286;
  --primary: #0c7ca6;
  --primary-dark: #0a5c7b;
  --accent: #e6f6fb;
  --accent-strong: #d0eff8;
  --shadow: 0 22px 60px rgba(8, 39, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(78, 191, 229, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(180deg, #f9fcfd 0%, #edf5f8 48%, #f6fbfd 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.page-shell {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding-inline: 16px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  background: rgba(243, 248, 251, 0.7);
  border-bottom: 1px solid rgba(13, 54, 79, 0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong,
.footer-brand h2 {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-logo,
.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(8, 39, 54, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
}

.site-nav .nav-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #10a6d3);
  box-shadow: 0 14px 32px rgba(12, 124, 166, 0.24);
}

.site-nav .nav-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-section,
.page-hero {
  padding: 54px 0 34px;
}

.hero-grid,
.page-hero-grid,
.media-grid,
.story-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.hero-grid,
.page-hero-grid,
.media-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.story-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.hero-copy,
.hero-visual,
.page-hero-copy,
.pricing-hero-art,
.media-copy,
.video-card,
.story-copy,
.feature-list,
.stacked-photos,
.pricing-block,
.gallery-card,
.price-image-card {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(12, 124, 166, 0.1);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.media-copy h2,
.story-copy h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.section-heading h2,
.media-copy h2,
.story-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 18px 32px rgba(12, 124, 166, 0.26);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 54, 79, 0.12);
}

.btn-small {
  padding: 12px 18px;
  margin-top: 8px;
}

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

.mini-point,
.feature-card,
.pricing-block,
.notice-card,
.video-card,
.photo-panel,
.category-nav,
.price-image-card,
.gallery-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.mini-point {
  padding: 18px;
  border-radius: 22px;
}

.mini-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.mini-point span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.hero-frame img,
.stack-photo img,
.photo-panel img,
.gallery-card img,
.price-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-main {
  inset: 0 50px 80px 0;
}

.hero-frame-side {
  width: 38%;
  right: 0;
  bottom: 18px;
  aspect-ratio: 0.84;
}

.floating-card {
  position: absolute;
  left: 18px;
  bottom: 22px;
  width: min(320px, 76%);
  padding: 20px 22px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(12, 92, 123, 0.95), rgba(9, 54, 83, 0.92));
  box-shadow: 0 22px 40px rgba(8, 39, 54, 0.26);
}

.floating-card span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
  margin-bottom: 8px;
}

.floating-card strong {
  font-size: 1.1rem;
}

.section {
  padding: 46px 0;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(225, 241, 247, 0.58), rgba(239, 247, 250, 0.9));
}

.section-heading {
  margin-bottom: 24px;
}

.cards-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card {
  padding: 28px;
  border-radius: 28px;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3,
.pricing-block h3,
.footer-block h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.feature-card p,
.footer-brand p,
.footer-block p,
.pricing-help,
.media-copy p,
.story-copy p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 800;
  color: var(--primary-dark);
}

.video-card,
.photo-panel {
  overflow: hidden;
  border-radius: 34px;
}

.video-card video,
.photo-panel img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 30px;
  min-height: 280px;
}

.gallery-card-large {
  min-height: 520px;
}

.page-hero-about,
.page-hero-pricing {
  padding-top: 62px;
}

.stacked-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stack-photo {
  overflow: hidden;
  min-height: 220px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.stack-photo-tall {
  grid-row: span 2;
  min-height: 460px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.pricing-hero-art {
  max-width: 520px;
  justify-self: end;
}

.category-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px;
  border-radius: 24px;
}

.category-nav a {
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(12, 124, 166, 0.08);
  color: var(--primary-dark);
  font-weight: 800;
}

.pricing-section {
  scroll-margin-top: 110px;
}

.notice-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding: 18px 22px;
  border-radius: 24px;
}

.pricing-subgrid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  align-items: start;
}

.pricing-subgrid-single {
  grid-template-columns: 1fr;
}

.pricing-block {
  padding: 24px;
  border-radius: 30px;
}

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

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

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(230, 246, 251, 0.6);
  border: 1px solid rgba(12, 124, 166, 0.08);
}

.price-item span {
  font-weight: 700;
}

.price-item strong {
  color: var(--primary-dark);
  white-space: nowrap;
}

.pricing-help {
  margin-top: 16px;
}

.price-image-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.price-image-card {
  overflow: hidden;
  padding: 12px;
  border-radius: 28px;
  min-height: 0;
  background: rgba(255, 255, 255, 0.96);
}

.price-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.site-footer {
  padding: 54px 0 60px;
  background: linear-gradient(180deg, #0c2131 0%, #102a3e 100%);
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.9fr;
  gap: 30px;
}

.footer-block a,
.footer-block p {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 36ch;
}

.reveal {
  animation: fade-up 0.7s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .page-hero-grid,
  .media-grid,
  .story-grid,
  .cards-grid-three,
  .pricing-subgrid,
  .footer-grid,
  .gallery-grid,
  .price-image-gallery {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .mini-points,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-grid-compact {
    grid-template-columns: 1fr 1fr;
  }

  .stacked-photos {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-hero-art {
    justify-self: start;
    max-width: 320px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-section,
  .page-hero,
  .section,
  .site-footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .section-heading h2,
  .media-copy h2,
  .story-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .lead {
    font-size: 1rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .btn {
    width: 100%;
  }

  .mini-points,
  .price-grid,
  .stacked-photos {
    grid-template-columns: 1fr;
  }

  .price-grid-compact {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-frame-main {
    inset: 0 24px 72px 0;
  }

  .hero-frame-side {
    width: 44%;
  }

  .floating-card {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .gallery-card-large,
  .gallery-card,
  .price-image-card,
  .stack-photo,
  .stack-photo-tall {
    min-height: 260px;
  }

  .video-card video,
  .photo-panel img {
    aspect-ratio: 0.9;
  }
}

body.page-home,
body.page-pricing-clean {
  background:
    radial-gradient(circle at top left, rgba(19, 165, 208, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.78), transparent 32%),
    linear-gradient(180deg, #f4f8fb 0%, #eef4f7 48%, #f8fbfd 100%);
}

.clean-section {
  padding: 58px 0;
}

.clean-section-tight {
  padding-top: 20px;
}

.clean-section-contrast {
  background: linear-gradient(180deg, rgba(11, 39, 58, 0.04), rgba(16, 92, 127, 0.08));
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(12, 124, 166, 0.12);
  color: #0a5c7b;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading-clean {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading-clean h2,
.home-copy-block h2,
.page-hero-clean-copy h1 {
  margin: 18px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: #123349;
}

.section-heading-clean p,
.home-copy-block p,
.page-hero-clean-copy p,
.contact-card-clean p,
.site-footer-clean-brand span,
.clean-brand span,
.price-subgroup p {
  color: #5a7284;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.action-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0a5c7b, #0d89b5);
  box-shadow: 0 18px 34px rgba(12, 124, 166, 0.24);
}

.action-button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.home-hero {
  position: relative;
  min-height: 100vh;
  padding: 42px 0 72px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(7, 25, 39, 0.5), rgba(7, 25, 39, 0.76)),
    radial-gradient(circle at 15% 15%, rgba(22, 175, 214, 0.16), transparent 24%),
    url("assets/images/garments-line.jpeg") center center / cover no-repeat;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 16, 26, 0.2), rgba(4, 16, 26, 0.14)),
    linear-gradient(135deg, rgba(8, 35, 54, 0.3), rgba(8, 35, 54, 0));
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 114px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 28px 0;
}

.hero-logo-wrap {
  width: clamp(156px, 22vw, 220px);
  aspect-ratio: 1;
  padding: 0;
  filter: drop-shadow(0 18px 34px rgba(7, 18, 28, 0.28));
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.glass-panel {
  width: min(760px, 100%);
  padding: 24px 28px;
  border-radius: 30px;
  background: rgba(9, 29, 45, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 26px 60px rgba(7, 18, 28, 0.34);
  backdrop-filter: blur(18px);
}

.hero-brand-panel {
  width: min(760px, 100%);
}

.hero-brand-panel h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 8vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 34px rgba(5, 18, 29, 0.24);
}

.hero-brand-panel p {
  margin: 10px 0 0;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 12px 34px rgba(5, 18, 29, 0.24);
}

.hero-nav-panel {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: auto;
}

.hero-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0d6f95;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-nav-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(8, 26, 40, 0.22);
}

.hero-nav-link.is-active {
  background: #ffffff;
  color: #093a52;
}

.hero-nav-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.delivery-section {
  padding: 54px 0 20px;
  background:
    linear-gradient(180deg, rgba(222, 243, 249, 0.95), rgba(248, 252, 253, 0.98));
}

.delivery-panel {
  max-width: 860px;
  min-width: 0;
  text-align: center;
}

.delivery-panel h2 {
  margin: 18px auto 14px;
  max-width: 760px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: #123349;
  overflow-wrap: break-word;
}

.delivery-panel p {
  max-width: 720px;
  margin: 0 auto 14px;
  color: #4d6a7d;
  font-size: 1.08rem;
}

.delivery-price {
  font-weight: 700;
}

.delivery-price strong {
  color: #0a5c7b;
  font-weight: 800;
}

.delivery-panel .action-button {
  margin-top: 12px;
}

.home-split,
.page-hero-clean-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: center;
}

.home-copy-block {
  min-width: 0;
}

.page-hero-clean-copy {
  min-width: 0;
}

.page-hero-clean-copy h1,
.page-hero-clean-copy p {
  overflow-wrap: break-word;
}

.home-proof-list {
  margin: 24px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 16px;
}

.home-proof-list li {
  padding-left: 4px;
  color: #304a5c;
}

.home-proof-list strong {
  display: block;
  margin-bottom: 4px;
  color: #102c40;
}

.media-frame {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 24px 58px rgba(10, 34, 49, 0.16);
}

.media-frame-soft {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-soft img {
  aspect-ratio: 1.02;
}

.media-frame-wide img {
  aspect-ratio: 16 / 9;
}

.video-shell-clean {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 58px rgba(10, 34, 49, 0.16);
}

.video-shell-clean video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.category-preview-card,
.contact-card-clean,
.price-subgroup,
.pricing-note-clean,
.pricing-chip-nav,
.clean-topbar {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 58px rgba(10, 34, 49, 0.1);
}

.category-preview-card {
  display: block;
  padding: 24px;
  border-radius: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(10, 34, 49, 0.14);
}

.category-preview-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 124, 166, 0.08);
  color: #0b688b;
  font-weight: 800;
}

.category-preview-card strong,
.contact-card-clean h3,
.price-subgroup h3,
.clean-brand strong,
.site-footer-clean-brand strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
  color: #112f43;
}

.category-preview-card p {
  margin: 10px 0 0;
  color: #5a7284;
}

.section-actions-clean {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.contact-zone {
  padding-bottom: 72px;
}

.contact-card-clean {
  padding: 24px;
  border-radius: 28px;
}

.contact-card-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #0b688b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card-clean h3 {
  margin: 0 0 8px;
}

.contact-card-clean a {
  display: inline-flex;
  margin-top: 6px;
  color: #0a5c7b;
  font-weight: 800;
}

.social-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social-link-list-footer {
  margin-top: 16px;
}

.social-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  margin-top: 0;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 35, 50, 0.12);
}

.social-link-pill.is-instagram {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.18);
  color: #ba255f;
}

.social-link-pill.is-tiktok {
  background: rgba(18, 24, 34, 0.08);
  border-color: rgba(18, 24, 34, 0.14);
  color: #152332;
}

.social-link-pill.is-facebook {
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.16);
  color: #0f61cb;
}

.contact-card-clean .social-link-pill,
.footer-block .social-link-pill {
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 0;
}

.site-footer-clean {
  padding: 22px 0 34px;
}

.site-footer-clean-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 54, 79, 0.1);
}

.site-footer-clean-brand,
.clean-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-footer-clean-brand img,
.clean-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(8, 39, 54, 0.14));
}

.footer-link-clean {
  color: #0a5c7b;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18b55b, #0f9a49);
  color: #ffffff;
  box-shadow: 0 24px 48px rgba(15, 154, 73, 0.28);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 54px rgba(15, 154, 73, 0.34);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.clean-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0;
  backdrop-filter: blur(14px);
}

.clean-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.clean-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.clean-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: #557082;
  font-weight: 800;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.clean-nav a:hover,
.clean-nav a.is-current {
  background: rgba(12, 124, 166, 0.1);
  color: #103248;
}

.page-hero-clean {
  padding: 44px 0 28px;
}

.page-hero-clean-copy p {
  max-width: 60ch;
  font-size: 1.05rem;
}

.pricing-chip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
}

.pricing-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(12, 124, 166, 0.08);
  color: #0a5c7b;
  font-weight: 800;
}

.pricing-note-clean {
  padding: 20px 24px;
  border-radius: 28px;
}

.pricing-note-clean strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
  color: #103248;
}

.pricing-note-clean p {
  margin: 0;
  color: #5a7284;
}

.pricing-note-clean-inline {
  height: 100%;
}

.pricing-note-strong p strong {
  display: inline;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
  color: #103248;
}

.info-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.info-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(12, 124, 166, 0.08);
  border: 1px solid rgba(12, 124, 166, 0.14);
  color: #0a5c7b;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-link-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(10, 34, 49, 0.12);
}

.info-link-chip.is-phone {
  background: linear-gradient(135deg, #0a5c7b, #0d89b5);
  border-color: transparent;
  color: #ffffff;
}

.pricing-section-clean {
  scroll-margin-top: 110px;
}

.pricing-subgroup-grid {
  display: grid;
  gap: 16px;
}

.price-subgroup {
  padding: 22px;
  border-radius: 24px;
}

.price-subgroup h3 {
  margin: 0 0 18px;
}

.price-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.price-tile {
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(12, 124, 166, 0.12);
  box-shadow: 0 12px 26px rgba(11, 35, 50, 0.07);
}

.price-tile-name {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 14px 12px;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #173145;
  background: linear-gradient(180deg, #eef8fc 0%, #d8eef6 100%);
}

.price-tile-value {
  padding: 11px 12px;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 800;
  color: #15384b;
  background: #ffffff;
  border-top: 1px solid rgba(24, 60, 78, 0.08);
}

@media (max-width: 1100px) {
  .category-preview-grid,
  .contact-grid-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-split,
  .page-hero-clean-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .clean-section {
    padding: 42px 0;
  }

  .delivery-section {
    padding: 42px 0 10px;
  }

  .delivery-panel h2 {
    max-width: 12.5em;
    font-size: clamp(1.45rem, 5.6vw, 1.8rem);
    line-height: 1.16;
  }

  .delivery-panel p {
    max-width: 31ch;
    font-size: 1rem;
  }

  .section-heading-clean h2,
  .home-copy-block h2,
  .page-hero-clean-copy h1 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    line-height: 1.12;
  }

  .home-hero {
    min-height: auto;
    padding: 30px 0 54px;
    background-position: center top;
  }

  .home-hero-inner {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 48px;
  }

  .hero-nav-panel {
    flex-direction: row;
    gap: 8px;
  }

  .hero-nav-link {
    width: auto;
    justify-content: center;
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .hero-nav-link svg {
    width: 17px;
    height: 17px;
  }

  .hero-action-row,
  .section-actions-clean {
    flex-direction: column;
    align-items: stretch;
  }

  .info-link-row {
    flex-direction: column;
  }

  .hero-action-row .action-button,
  .section-actions-clean .action-button,
  .info-link-row .info-link-chip {
    width: 100%;
  }

  .category-preview-grid,
  .contact-grid-clean {
    grid-template-columns: 1fr;
  }

  .price-subgroup {
    padding: 18px;
  }

  .price-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .price-tile-name {
    min-height: 78px;
    padding: 12px 8px;
    font-size: 0.82rem;
  }

  .price-tile-value {
    padding: 9px 8px;
    font-size: 0.9rem;
  }

  .clean-topbar {
    position: static;
  }

  .clean-topbar-row,
  .site-footer-clean-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .clean-nav {
    width: 100%;
  }

  .video-shell-clean video,
  .media-frame-wide img,
  .media-frame-soft img {
    aspect-ratio: 1;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    padding: 0;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    gap: 0;
  }

  .floating-whatsapp svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin: 0;
    transform: translate(calc(-50% + 1px), -50%);
  }

  .floating-whatsapp span {
    display: none;
  }
}
