:root {
  --bg: #f7f1e6;
  --bg-alt: #fbf6ee;
  --surface: #fffaf2;
  --text: #1f1b16;
  --muted: #5b5142;
  --brand: #188a6d;
  --brand-strong: #116c55;
  --line: #ddcdb7;
  --shadow-soft: 0 14px 30px rgba(74, 49, 20, 0.1);
  --shadow-strong: 0 24px 44px rgba(57, 40, 19, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Trebuchet MS", "Helvetica Neue", sans-serif;
  font-size: clamp(1.1rem, 1.12vw, 1.24rem);
  font-weight: 500;
  line-height: 1.72;
  color: var(--text);
  background:
    radial-gradient(900px 430px at -10% -20%, #ffe8ca 0%, rgba(255, 232, 202, 0) 63%),
    radial-gradient(920px 480px at 100% -20%, #fff0da 0%, rgba(255, 240, 218, 0) 65%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

a {
  color: var(--brand-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p,
li {
  font-size: 1.03em;
}

.container {
  width: min(1160px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(221, 205, 183, 0.8);
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(9px);
}

.topbar-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}

.brand-title,
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.brand-title {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  font-weight: 700;
}

.brand-sub {
  margin: 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--muted);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.phone-badge {
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid #efcda7;
  background: linear-gradient(135deg, #fff4e5 0%, #ffe8cc 100%);
  color: #5f4730;
  font-weight: 700;
  padding: 0.52rem 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 0.88rem 1.36rem;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #26a486 100%);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-strong) 0%, #167d63 100%);
}

.btn-soft {
  background: #fff4e6;
  color: #684c2f;
  border: 1px solid #efcca4;
}

.nav-wrap {
  border-top: 1px solid rgba(221, 205, 183, 0.8);
  border-bottom: 1px solid rgba(221, 205, 183, 0.8);
  background: rgba(255, 253, 248, 0.86);
}

.nav {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 0.86rem;
}

.nav a {
  color: #4f3f2f;
  font-size: 1.03rem;
  font-weight: 700;
  padding: 0.38rem 0.62rem;
  border-radius: 10px;
}

.nav a.active,
.nav a:hover {
  background: #ffe8cc;
  text-decoration: none;
}

.mobile-toggle {
  display: none;
}

main {
  padding-bottom: 1.2rem;
}

.section {
  padding: clamp(2.2rem, 3.6vw, 3.6rem) 0;
}

h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2.1rem, 2.9vw, 2.95rem);
  line-height: 1.18;
}

h2 {
  margin: 0 0 0.68rem;
  font-size: clamp(1.76rem, 2.35vw, 2.38rem);
  line-height: 1.2;
}

h3 {
  margin: 0 0 0.44rem;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.25;
}

.hero {
  padding-top: clamp(2.3rem, 5vw, 4.8rem);
}

.hero-box,
.text-block,
.card,
.halal-card,
.photo-card,
.price-card,
.notice-box {
  border: 1px solid #e8ceb0;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, var(--surface) 0%, #fff4e4 100%);
  box-shadow: var(--shadow-soft);
}

.hero-box {
  padding: clamp(1.5rem, 3.2vw, 2.9rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.hero-lead {
  margin: 0 0 0.9rem;
  font-size: clamp(1.2rem, 1.65vw, 1.45rem);
  font-weight: 600;
  color: #3c3125;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.74rem;
  margin-top: 1.16rem;
}

.text-block,
.halal-card,
.card,
.price-card,
.notice-box {
  padding: 1.28rem;
}

.halal-highlight,
.contact-box,
.pricing-grid,
.visual-grid {
  display: grid;
  gap: 1rem;
}

.halal-highlight {
  grid-template-columns: 1fr 1fr;
}

.contact-box {
  grid-template-columns: 1fr 1fr;
}

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

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

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

.context-image,
.photo-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e8ceb0;
}

.context-image {
  height: 230px;
  margin: 0.26rem 0 0.92rem;
}

.photo-card {
  overflow: hidden;
}

.photo-card img {
  display: block;
  height: 250px;
  border: 0;
  border-radius: 0;
}

.photo-card h3 {
  padding: 0.86rem 0.95rem 0.2rem;
  margin: 0;
}

.photo-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  padding: 0 0.95rem 1rem;
}

.list-check {
  margin: 0.62rem 0 0;
  padding-left: 1.24rem;
}

.list-check li {
  margin-bottom: 0.36rem;
}

.price {
  margin: 0.4rem 0 0.2rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2b3d32;
}

.small-note {
  color: var(--muted);
  font-size: 0.98rem;
}

.footer {
  margin-top: 1.8rem;
  border-top: 1px solid rgba(221, 205, 183, 0.9);
  background: #f9ecda;
}

.footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  border-radius: 999px;
  padding: 0.8rem 1.02rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #1b9c7b 0%, #148667 100%);
  box-shadow: 0 14px 30px rgba(18, 89, 69, 0.35);
}

.whatsapp-float:hover {
  text-decoration: none;
  background: linear-gradient(135deg, #16876b 0%, #0f6a53 100%);
}

@media (max-width: 1080px) {
  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .halal-highlight,
  .contact-box,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .topbar {
    position: static;
  }

  .topbar-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 0.74rem 0;
  }

  .top-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.56rem;
  }

  .phone-badge {
    white-space: normal;
    line-height: 1.3;
    flex: 1 1 100%;
  }

  .top-actions .btn {
    flex: 1 1 auto;
  }

  .mobile-toggle {
    display: inline-flex;
    border-radius: 10px;
    border: 1px solid #e8c7a1;
    background: #ffe9cf;
    color: #5a3c20;
    padding: 0.56rem 0.88rem;
    font-weight: 700;
    font-size: 0.98rem;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.24rem;
    padding: 0.45rem 0;
  }

  .nav a {
    width: 100%;
    padding: 0.64rem 0.72rem;
  }

  .nav.open {
    display: flex;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
    line-height: 1.6;
  }

  .container {
    width: min(1160px, calc(100% - 1.2rem));
  }

  .section {
    padding: 1.45rem 0;
  }

  h1 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.42rem;
    line-height: 1.25;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-box,
  .text-block,
  .card,
  .halal-card,
  .photo-card,
  .price-card,
  .notice-box {
    padding: 1rem;
  }

  .btn {
    width: 100%;
    font-size: 0.98rem;
    padding: 0.76rem 1rem;
  }

  .card-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .context-image,
  .photo-card img {
    height: 210px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.82rem 0;
  }

  .footer-links {
    justify-content: center;
  }

  .whatsapp-float {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    text-align: center;
    padding: 0.7rem 0.85rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .brand-title {
    font-size: 1.28rem;
  }

  .brand-sub {
    font-size: 0.88rem;
  }

  .phone-badge {
    font-size: 0.92rem;
  }

  .mobile-toggle {
    margin-left: auto;
  }
}
