:root {
  --sand: #f7f0e4;
  --shell: #fffaf1;
  --stone: #ded1bd;
  --copper: #ad613f;
  --copper-dark: #87442d;
  --reef: #0f766e;
  --navy: #0d1f2d;
  --ink: #17252d;
  --muted: #66736f;
  --line: rgba(23, 37, 45, 0.14);
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(13, 31, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.screen-reader-text,
.skip-link {
  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:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.8rem 1rem;
  background: var(--navy);
  color: var(--shell);
  border-radius: var(--radius);
}

.top-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
  color: var(--shell);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.top-strip span {
  padding: 0.75rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 185px;
  min-width: 150px;
  flex: 0 0 auto;
}

.brand-lockup img,
.brand-lockup .custom-logo {
  width: 100%;
  height: auto;
}

.nav-links,
.nav-menu,
.nav-actions,
.header-social,
.social-row {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-links,
.nav-menu {
  gap: 0.95rem;
}

.nav-actions,
.header-social,
.social-row {
  gap: 0.45rem;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link,
.nav-menu a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  position: relative;
}

.nav-link:after,
.nav-menu a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover:after,
.nav-menu a:hover:after {
  transform: scaleX(1);
}

.nav-item,
.nav-menu .menu-item-has-children {
  position: relative;
}

.subnav,
.nav-menu .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 0.9rem);
  min-width: 270px;
  padding: 0.55rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shell);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  list-style: none;
}

.nav-item:hover .subnav,
.nav-item:focus-within .subnav,
.nav-menu .menu-item-has-children:hover .sub-menu,
.nav-menu .menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.subnav a,
.nav-menu .sub-menu a {
  display: block;
  padding: 0.72rem 0.75rem;
  border-radius: 6px;
  font-size: 0.83rem;
}

.subnav a:hover,
.nav-menu .sub-menu a:hover {
  background: #f1e6d5;
  color: var(--copper-dark);
}

.subnav a:after,
.nav-menu .sub-menu a:after {
  display: none;
}

.whatsapp-pill,
.social-link,
.icon-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.whatsapp-pill {
  gap: 0.45rem;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.social-link,
.icon-button {
  width: 44px;
  padding: 0;
}

.social-link {
  border-color: transparent;
  background: transparent;
}

.social-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--navy);
  color: var(--shell);
  overflow: hidden;
}

.social-mark i {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
}

.social-mark-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.social-mark-instagram {
  background:
    radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fdf49700 19%),
    radial-gradient(circle at 15% 95%, #fd5949 0 28%, #fd594900 29%),
    radial-gradient(circle at 85% 15%, #285aeb 0 30%, #285aeb00 31%),
    linear-gradient(135deg, #833ab4, #fd1d1d 55%, #fcb045);
  color: #ffffff;
}

.social-mark-tiktok {
  background: #050505;
  color: #ffffff;
}

.whatsapp-pill:hover,
.social-link:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background: transparent;
  color: var(--ink);
}

.icon-button:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  background: var(--navy);
  color: var(--shell);
}

.icon-search,
.icon-bag,
.icon-menu {
  width: 19px;
  height: 19px;
  position: relative;
  display: block;
}

.icon-search:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 1px;
  top: 1px;
}

.icon-search:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  right: 1px;
  bottom: 3px;
  border-radius: 2px;
}

.icon-bag:before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 1px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-bag:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  left: 5px;
  top: 0;
}

.icon-menu:before,
.icon-menu:after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.icon-menu:before {
  top: 5px;
}

.icon-menu:after {
  bottom: 5px;
}

.cart-count {
  position: absolute;
  right: -5px;
  top: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--copper);
  color: var(--shell);
  font-size: 0.72rem;
  font-weight: 900;
}

.icon-button {
  position: relative;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 500px;
  height: calc(100vh - 160px);
  max-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  background: var(--shell);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(2.6rem, 5vw, 4.4rem) clamp(1.25rem, 5vw, 4.5rem) 3.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--copper-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--copper);
  flex: 0 0 auto;
}

.hero h1,
.section-heading h2,
.buy-panel h2,
.manifest h2,
.content-card h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  color: var(--navy);
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.4rem, 6.6vw, 4.85rem);
}

.hero-copy p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.focus-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.btn,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--navy);
  color: var(--shell);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  transform: translateY(-2px);
  background: var(--copper-dark);
  color: var(--shell);
}

.btn-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.btn-copper {
  background: var(--copper);
  color: var(--shell);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

.floating-buy {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(255, 250, 241, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-buy strong,
.floating-buy span {
  display: block;
}

.floating-buy span {
  color: var(--muted);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--navy);
  color: var(--shell);
}

.trust-row div {
  padding: 1.1rem 1rem;
  border-right: 1px solid rgba(255, 250, 241, 0.16);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 850;
}

.section {
  padding: clamp(3.25rem, 7vw, 5.5rem) 2rem;
}

.section-inner {
  max-width: 1480px;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.buy-panel h2,
.manifest h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.capsule-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--shell);
}

.capsule {
  min-height: 255px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  color: var(--shell);
  position: relative;
  overflow: hidden;
}

.capsule:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: url("../images/dubali-atelier-view.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
}

.capsule > * {
  position: relative;
}

.capsule h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.95rem;
  font-weight: 500;
  color: var(--shell);
}

.capsule p {
  margin: 0.4rem 0 0;
  color: rgba(255, 250, 241, 0.82);
}

.capsule-canggu { background: #1e7f7a; }
.capsule-marina { background: #0d263b; }
.capsule-sunset { background: #b75e34; }
.capsule-island { background: #2d493f; }
.capsule-midnight { background: #111111; }

.shop-shell {
  background: var(--shell);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-focus {
  background: var(--navy);
  color: var(--shell);
}

.product-focus .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.72fr);
  gap: 2rem;
  align-items: stretch;
}

.focus-gallery {
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  gap: 0.9rem;
  min-height: 650px;
}

.focus-main,
.focus-stack div {
  overflow: hidden;
  border-radius: var(--radius);
  background: #102a3e;
}

.focus-main img,
.focus-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.focus-main img {
  object-position: 14% 62%;
}

.focus-stack {
  display: grid;
  gap: 0.9rem;
}

.buy-panel {
  align-self: center;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  padding: 1.4rem;
  background: rgba(255, 250, 241, 0.06);
}

.buy-panel h2,
.product-focus .eyebrow {
  color: var(--shell);
}

.buy-panel p {
  color: rgba(255, 250, 241, 0.78);
}

.manifest {
  background: var(--shell);
}

.manifest-card,
.content-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f1e6d5;
}

.manifest-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) auto;
  gap: 2rem;
  align-items: center;
}

.content-layout {
  max-width: 980px;
}

.content-card {
  background: var(--shell);
}

.entry-content {
  color: var(--muted);
}

.footer {
  background: #0a151e;
  color: var(--shell);
  padding: 4rem 2rem 1.5rem;
}

.footer-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
  gap: 2rem;
}

.footer-logo {
  width: 220px;
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: rgba(255, 250, 241, 0.76);
}

.footer h3 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 0.55rem;
}

.footer .social-row a {
  display: inline-flex;
}

.footer .social-row {
  margin-top: 1rem;
  gap: 0.65rem;
}

.footer .whatsapp-pill {
  width: 44px;
  min-height: 44px;
  padding: 0;
  border-color: transparent;
  background: transparent;
}

.footer .whatsapp-pill span:not(.social-mark) {
  display: none;
}

.footer .social-link {
  width: 44px;
  min-height: 44px;
}

.footer .social-mark {
  width: 40px;
  height: 40px;
}

.footer .social-mark i {
  font-size: 1.35rem;
}

.footer-bottom {
  max-width: 1480px;
  margin: 3rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 250, 241, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 250, 241, 0.58);
  font-size: 0.85rem;
}

.woocommerce .woocommerce-breadcrumb {
  color: var(--muted);
  font-weight: 760;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--copper-dark);
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-weight: 760;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.2rem 0.85rem;
  background: var(--white);
  color: var(--ink);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin: 0;
}

.woocommerce ul.products:before,
.woocommerce ul.products:after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  float: none;
  margin: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(173, 97, 63, 0.55);
  box-shadow: 0 18px 40px rgba(13, 31, 45, 0.12);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 0;
  background: var(--stone);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 3rem;
  padding: 1rem 1rem 0.35rem;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.35;
}

.woocommerce ul.products li.product .price {
  display: block;
  padding: 0 1rem 0.85rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 700;
}

.woocommerce ul.products li.product .button {
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem;
}

.woocommerce span.onsale {
  min-height: 28px;
  min-width: auto;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: var(--shell);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: 2rem;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto;
  float: none;
}

.woocommerce div.product div.images img {
  border-radius: var(--radius);
  background: var(--stone);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.woocommerce .quantity .qty {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--copper);
  background: var(--shell);
  color: var(--ink);
  border-radius: var(--radius);
}

.woocommerce-message:before,
.woocommerce-info:before {
  color: var(--copper);
}

@media (max-width: 1240px) {
  .nav {
    padding: 0 1.2rem;
  }

  .brand-lockup {
    width: 160px;
    min-width: 132px;
  }

  .nav-links,
  .nav-menu {
    gap: 0.72rem;
  }

  .nav-link,
  .nav-menu a {
    font-size: 0.76rem;
  }

  .header-social .social-link {
    display: none;
  }
}

@media (max-width: 1160px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 77px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    background: var(--shell);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(13, 31, 45, 0.12);
  }

  body.menu-open .nav-links,
  body.menu-open .nav-menu {
    display: grid;
  }

  .nav-item,
  .nav-menu .menu-item {
    display: grid;
  }

  .subnav,
  .nav-menu .sub-menu {
    position: static;
    min-width: 0;
    margin: 0 1rem 1rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .nav-link,
  .nav-menu a {
    padding: 1rem;
    border-top: 1px solid var(--line);
  }

  .nav-link:after,
  .nav-menu a:after {
    display: none;
  }

  .hero,
  .product-focus .section-inner,
  .manifest-card,
  .woocommerce div.product {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .hero-media {
    min-height: 430px;
  }

  .capsule-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capsule:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .top-strip {
    grid-template-columns: 1fr;
  }

  .top-strip span:nth-child(n+2) {
    display: none;
  }

  .brand-lockup {
    width: 142px;
  }

  .nav-links,
  .nav-menu,
  .trust-row,
  .section-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-social .social-link,
  .whatsapp-pill span:not(.social-mark) {
    display: none;
  }

  .whatsapp-pill {
    width: 42px;
    padding: 0;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-media {
    min-height: 360px;
  }

  .floating-buy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    grid-template-columns: 1fr;
  }

  .capsule-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .capsule,
  .capsule:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.18);
  }

  .focus-gallery {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .focus-main {
    min-height: 420px;
  }

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

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

@media (max-width: 520px) {
  .nav {
    min-height: 72px;
    padding: 0 0.8rem;
    gap: 0.45rem;
  }

  .brand-lockup {
    width: 126px;
    min-width: 112px;
  }

  .icon-button,
  .social-link,
  .whatsapp-pill {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .social-mark {
    width: 30px;
    height: 30px;
  }

  .social-mark i {
    font-size: 1rem;
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 3.35rem);
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .focus-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .section {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .manifest-card,
  .content-card {
    padding: 1.1rem;
  }
}
