* {
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .site-header {
    background: linear-gradient(135deg, #006b68, #10a39b);
  }

  .brand-icon,
  .header-wa {
    display: none;
  }

  .site-header::after {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
  }

  .hero {
    background: #006b68;
    min-height: 390px;
  }

  .hero-copy {
    min-height: 390px;
    padding-top: 66px;
    padding-bottom: 42px;
  }

  .mobile-rating {
    display: none;
  }

  .hero-image::after {
    background:
      linear-gradient(180deg, rgba(0, 107, 104, 0.72), rgba(16, 163, 155, 0.78)),
      radial-gradient(circle at 12% 78%, rgba(255, 255, 255, 0.22), transparent 34%);
  }

  .hero h1 {
    max-width: 326px;
    font-size: 28px;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 62px;
    z-index: 50;
    display: none;
    padding: 10px;
    color: #173d3b;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(0, 58, 56, 0.22);
  }

  .site-header.menu-open .main-nav {
    display: grid;
    gap: 2px;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    color: #fff;
    background: #10a39b;
  }

  .category-button {
    color: #006b68;
    background: #e6f7f5;
  }

  .category-button.active,
  .category-button:hover {
    color: #fff;
    background: #10a39b;
  }

  .product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
  }

  .product-photo {
    overflow: hidden;
    background: #f7fbfa;
    border-radius: 6px;
  }

  .product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
  }

  .product-info {
    display: grid;
    grid-template-rows: 48px 58px 40px;
    align-items: start;
  }

  .product-info h3 {
    min-height: 44px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .price-line {
    min-height: 58px;
    align-items: center;
  }

  .price-line del,
  .price-line strong {
    line-height: 1.12;
  }

  .price-line strong {
    color: #006b68;
  }

  .mini-link {
    align-self: end;
    display: grid;
    place-items: center;
  }

  .mobile-contact-bar a.wa {
    grid-template-columns: auto auto;
    gap: 7px;
    color: #fff;
    background: #25d366;
    font-size: 13px;
  }

  .mobile-contact-bar a.wa::before {
    content: "WA";
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: #25d366;
    background: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #273131;
  background: #fffaf6;
  font-family: Arial, Helvetica, sans-serif;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 246, 0.94);
  border-bottom: 1px solid rgba(39, 49, 49, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
}

.brand small {
  max-width: 220px;
  color: #687272;
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #516060;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--accent);
}

.header-wa,
.btn,
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.header-wa,
.btn.primary,
.mini-link {
  color: #fff;
  background: var(--accent);
}

.header-wa {
  padding: 10px 14px;
}

.btn {
  padding: 12px 18px;
}

.btn.soft {
  color: #273131;
  background: #e7efea;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  min-height: 660px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: #627070;
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-image {
  position: relative;
  min-height: 420px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(330px, calc(100% - 56px));
  padding: 18px;
  color: #fff;
  background: rgba(39, 49, 49, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

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

.floating-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(39, 49, 49, 0.08);
  border-bottom: 1px solid rgba(39, 49, 49, 0.08);
}

.steps article {
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  border-right: 1px solid rgba(39, 49, 49, 0.08);
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  color: var(--secondary);
  font-weight: 900;
}

.steps h2 {
  margin: 12px 0 10px;
}

.steps p,
.product-info p,
.detail-copy p,
.summary-card p,
.site-footer p,
.payment-panel > p,
.plain-page p {
  color: #647171;
  line-height: 1.6;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px clamp(18px, 4vw, 64px);
  background: #273131;
}

.category-button {
  min-height: 40px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.category-button.active,
.category-button:hover {
  background: var(--accent);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 18px;
  align-items: end;
  padding: 74px clamp(18px, 4vw, 64px) 24px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.search-input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #d7dfda;
  border-radius: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 64px) 82px;
}

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7efea;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(39, 49, 49, 0.07);
}

.product-card[hidden] {
  display: none;
}

.product-photo {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: #e7efea;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-photo span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  color: #fff;
  background: var(--secondary);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.product-info {
  padding: 18px;
}

.product-info p {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 58px;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.25;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 30px;
}

.price-line del {
  color: #8b9696;
  font-size: 14px;
}

.price-line strong {
  font-size: 18px;
}

.mini-link {
  width: 100%;
  margin-top: 16px;
  padding: 10px 12px;
}

.product-detail,
.checkout-layout,
.payment-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  padding: clamp(24px, 4vw, 64px);
}

.detail-media,
.summary-card,
.checkout-card,
.payment-panel,
.plain-page {
  background: #fff;
  border: 1px solid #e7efea;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(39, 49, 49, 0.07);
}

.detail-media {
  position: relative;
  overflow: hidden;
}

.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.detail-media span {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 9px 12px;
  color: #fff;
  background: var(--secondary);
  border-radius: 8px;
  font-weight: 900;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 12px 0 24px;
}

.detail-price strong {
  font-size: 32px;
}

.checkout-start {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: #415050;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d7dfda;
  border-radius: 8px;
  background: #fff;
}

input,
select {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 108px;
  padding: 12px;
  resize: vertical;
}

.checkout-card,
.payment-panel,
.plain-page {
  padding: clamp(24px, 4vw, 44px);
}

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

.order-form,
.proof-form {
  display: grid;
  gap: 16px;
}

.summary-card {
  align-self: start;
  overflow: hidden;
}

.summary-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.summary-card h2,
.summary-card p,
.summary-card dl {
  margin-left: 20px;
  margin-right: 20px;
}

.summary-card h2 {
  margin-top: 20px;
}

dl {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef3f0;
}

dt {
  color: #647171;
}

dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.payment-panel {
  display: grid;
  gap: 16px;
}

.payment-box,
.bank-box {
  padding: 18px;
  background: #f5faf6;
  border: 1px solid #dfeae4;
  border-radius: 8px;
}

.payment-box span,
.bank-box span {
  display: block;
  color: #647171;
}

.payment-box strong,
.bank-box strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.plain-page {
  width: min(760px, calc(100% - 36px));
  margin: 54px auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 42px clamp(18px, 4vw, 64px);
  background: #273131;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: center;
  font-weight: 800;
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero,
  .steps,
  .product-detail,
  .checkout-layout,
  .payment-page {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand small {
    max-width: none;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding-top: 42px;
    padding-bottom: 42px;
  }

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

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

  .detail-media img {
    min-height: 340px;
  }

  .site-footer {
    flex-direction: column;
  }
}

.mobile-menu,
.mobile-rating,
.mobile-moment,
.mobile-contact-bar,
.floating-wa {
  display: none;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
    background: #fff;
  }

  .site-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    min-height: 58px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #b01863, #d6377d);
    border-bottom: 0;
    box-shadow: 0 2px 12px rgba(89, 16, 54, 0.22);
  }

  .mobile-menu {
    display: grid;
    gap: 4px;
    width: 34px;
    height: 34px;
    padding: 8px;
    background: transparent;
    border: 0;
    border-radius: 8px;
  }

  .mobile-menu span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 999px;
  }

  .brand {
    justify-self: center;
    gap: 8px;
    color: #fff;
    text-align: center;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
    color: #b01863;
    background: #fff;
    border-radius: 999px;
    font-size: 16px;
  }

  .brand strong {
    font-size: 20px;
    line-height: 1;
  }

  .brand small {
    max-width: none;
    color: rgba(255, 255, 255, 0.84);
    font-size: 10px;
    line-height: 1.2;
  }

  .header-wa {
    width: 38px;
    min-height: 38px;
    padding: 0;
    color: transparent;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    overflow: hidden;
  }

  .header-wa::before {
    content: "WA";
    color: #fff;
    font-size: 11px;
    font-weight: 900;
  }

  .hero {
    position: relative;
    display: block;
    min-height: 470px;
    overflow: hidden;
    background: #c92273;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 108px 24px 62px;
    color: #fff;
    text-align: center;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(176, 24, 99, 0.68), rgba(218, 55, 125, 0.72)),
      radial-gradient(circle at 12% 78%, rgba(255, 255, 255, 0.28), transparent 34%);
  }

  .hero-image img {
    height: 100%;
    object-position: center;
    opacity: 0.92;
  }

  .hero .eyebrow,
  .hero-actions,
  .floating-card {
    display: none;
  }

  .hero h1 {
    max-width: 330px;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 29px;
    line-height: 1.16;
    text-shadow: 0 3px 12px rgba(71, 13, 44, 0.48);
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 310px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.55;
  }

  .mobile-rating {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 10px;
    display: grid;
    place-items: center;
    width: 78px;
    min-height: 92px;
    padding: 8px 6px;
    color: #222;
    text-align: center;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 22px rgba(65, 14, 42, 0.2);
  }

  .mobile-rating::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 39px solid transparent;
    border-right: 39px solid transparent;
    border-top: 16px solid #fff;
  }

  .mobile-rating strong {
    color: #4285f4;
    font-size: 30px;
    line-height: 1;
  }

  .mobile-rating span,
  .mobile-rating small {
    display: block;
    color: #444;
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-moment {
    display: block;
    padding: 20px 22px 12px;
    color: #111;
    text-align: center;
    background: #fff;
  }

  .mobile-moment h2 {
    max-width: 320px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.18;
  }

  .steps {
    display: none;
  }

  .category-strip {
    padding: 14px 12px;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    background: #fff;
    border-bottom: 1px solid #f0e5ea;
  }

  .category-button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 8px 12px;
    color: #b01863;
    background: #fff0f6;
    border-radius: 999px;
    font-size: 12px;
  }

  .category-button.active,
  .category-button:hover {
    color: #fff;
    background: #d6377d;
  }

  .section-title {
    display: block;
    padding: 24px 18px 14px;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
      url("https://images.unsplash.com/photo-1525310072745-f49212b5ac6d?auto=format&fit=crop&w=900&q=70");
    background-size: cover;
    background-position: center;
  }

  .section-title .eyebrow {
    display: none;
  }

  .section-title h2 {
    max-width: 330px;
    margin: 0 auto;
    color: #111;
    font-size: 27px;
    line-height: 1.15;
  }

  .search-input {
    margin-top: 14px;
    min-height: 42px;
    border-color: #f0d8e3;
    border-radius: 999px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
    padding: 16px 18px 70px;
    background: #fff;
  }

  .product-card {
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .product-photo {
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 0;
  }

  .product-photo img {
    object-fit: contain;
    filter: drop-shadow(0 12px 16px rgba(70, 35, 51, 0.16));
  }

  .product-photo span {
    left: 6px;
    top: 6px;
    padding: 7px 9px;
    background: #2ed47a;
    border-radius: 6px;
    font-size: 10px;
  }

  .product-info {
    padding: 10px 0 0;
  }

  .product-info p {
    display: none;
  }

  .product-info h3 {
    min-height: 48px;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.28;
  }

  .price-line {
    min-height: 24px;
    gap: 8px;
  }

  .price-line del {
    color: #b3688b;
    font-size: 15px;
    font-weight: 700;
  }

  .price-line strong {
    color: #b01863;
    font-size: 18px;
  }

  .mini-link {
    min-height: 38px;
    margin-top: 14px;
    padding: 9px 10px;
    background: #d90808;
    border-radius: 8px;
    box-shadow: 0 7px 14px rgba(217, 8, 8, 0.24);
    font-size: 13px;
  }

  .board-title {
    display: block;
    padding-top: 26px;
    padding-bottom: 22px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.68)),
      url("https://images.unsplash.com/photo-1508610048659-a06b669e3321?auto=format&fit=crop&w=900&q=70");
    background-size: cover;
    background-position: center;
  }

  .board-title h2 {
    text-align: left;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    min-height: 58px;
    background: #fff;
    border-top: 1px solid #d9e5df;
    box-shadow: 0 -8px 20px rgba(42, 42, 42, 0.08);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    padding: 7px 8px;
    color: #8b9a8f;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    border-right: 1px solid #d9e5df;
  }

  .mobile-contact-bar a.wa {
    color: #fff;
    background: #23c45e;
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: linear-gradient(135deg, #006b68, #10a39b);
  }

  .brand-icon,
  .header-wa {
    display: none;
  }

  .site-header::after {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
  }

  .hero {
    background: #006b68;
  }

  .hero-image::after {
    background:
      linear-gradient(180deg, rgba(0, 107, 104, 0.72), rgba(16, 163, 155, 0.78)),
      radial-gradient(circle at 12% 78%, rgba(255, 255, 255, 0.22), transparent 34%);
  }

  .hero h1 {
    max-width: 326px;
    font-size: 28px;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 62px;
    z-index: 50;
    display: none;
    padding: 10px;
    color: #173d3b;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(0, 58, 56, 0.22);
  }

  .site-header.menu-open .main-nav {
    display: grid;
    gap: 2px;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    color: #fff;
    background: #10a39b;
  }

  .category-button {
    color: #006b68;
    background: #e6f7f5;
  }

  .category-button.active,
  .category-button:hover {
    color: #fff;
    background: #10a39b;
  }

  .product-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .product-photo {
    overflow: hidden;
    background: #f7fbfa;
    border-radius: 6px;
  }

  .product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
  }

  .product-info {
    display: grid;
    grid-template-rows: auto auto auto;
  }

  .product-info h3 {
    min-height: 44px;
  }

  .price-line strong {
    color: #006b68;
  }

  .mobile-contact-bar a.wa {
    background: #10a39b;
  }
}

@media (max-width: 640px) {
  .mobile-contact-bar {
    grid-template-columns: 1fr 1fr 1.15fr;
    border-top: 0;
  }

  .mobile-contact-bar a {
    min-height: 58px;
    border-right: 1px solid rgba(255, 255, 255, 0.55);
  }

  .mobile-contact-bar a:nth-child(1) {
    color: #315d58;
    background: #eaf7f4;
  }

  .mobile-contact-bar a:nth-child(2) {
    color: #70485f;
    background: #fff0f6;
  }

  .mobile-contact-bar a.wa {
    color: #fff;
    background: #25d366;
    border-right: 0;
  }

  .mobile-contact-bar a.wa::before {
    content: "WA";
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #25d366;
    background: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .mobile-contact-bar {
    display: none;
  }

  .floating-wa {
    position: fixed;
    z-index: 60;
    right: 18px;
    bottom: 20px;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    background: #25d366;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
  }

  .floating-wa svg {
    width: 42px;
    height: 42px;
    color: #fff;
  }
}

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

  .hero-copy {
    min-height: 330px;
    justify-content: flex-start;
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  .floating-wa {
    width: 56px;
    height: 56px;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    border: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
  }

  .floating-wa svg {
    width: 35px;
    height: 35px;
    color: #fff;
  }
}

@media (min-width: 641px) {
  .hero {
    position: relative;
    display: block;
    min-height: 620px;
    overflow: hidden;
    background: #006b68;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 24px;
    color: #fff;
    text-align: center;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0, 107, 104, 0.68), rgba(16, 163, 155, 0.76)),
      radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.18), transparent 34%);
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.92;
  }

  .hero .eyebrow,
  .hero-actions,
  .floating-card {
    display: none;
  }

  .hero h1 {
    max-width: 860px;
    margin: 0 auto 24px;
    color: #fff;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.05;
    text-shadow: 0 4px 18px rgba(0, 42, 40, 0.35);
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.7;
  }

  .mobile-moment {
    display: block;
    padding: 34px 22px 22px;
    color: #111;
    text-align: center;
    background: #fff;
  }

  .mobile-moment h2 {
    margin: 0 auto;
    font-size: 36px;
    line-height: 1.15;
  }
}
