:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fffdf7;
  --text: #111111;
  --muted: #5a5a5a;
  --line: #e7e7e7;
  --accent: #f5c400;
  --accent-deep: #e0b000;
  --accent-soft: #fff3b3;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(245, 196, 0, 0.16), transparent 22%),
    linear-gradient(180deg, #fffef9 0%, #ffffff 28%, #ffffff 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  background: var(--accent);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 14px;
  letter-spacing: .5px;
  box-shadow: 0 10px 20px rgba(245, 196, 0, 0.35);
}
.brand-text { font-size: 1.08rem; }
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 700; color: var(--text); }
.nav-links a:hover { color: #000; }
.nav-cta {
  background: var(--text);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
}
.menu-toggle { display: none; background: none; border: 0; font-size: 1.8rem; color: var(--text); }

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 48px auto 28px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 42px;
  text-align: center;
  padding: 70px 24px;
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #7a6200;
  font-weight: 800;
  font-size: .80rem;
}
h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.06;
  margin: 0;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); max-width: 900px; margin-left: auto; margin-right: auto; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { margin: 0 0 8px; color: var(--text); }
.hero-text, .large-text { color: var(--muted); font-size: 1.08rem; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.hero-mini-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 22px; }
.hero-mini-points span {
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(245, 196, 0, 0.35);
}
.btn-secondary {
  background: var(--text);
  color: var(--bg);
  box-shadow: var(--shadow);
}
.btn-light {
  background: var(--bg);
  color: var(--text);
}

.hero-showcase {
  position: relative;
  background: linear-gradient(180deg, #fffef8 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  background: var(--accent);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}
.hero-showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}
.showcase-tile {
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}
.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.large-tile { grid-row: span 2; min-height: 540px; }
.hero-showcase-grid .showcase-tile:not(.large-tile) { min-height: 260px; }

.trust-strip, .section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.trust-strip div { padding: 10px 16px; }
.trust-strip strong { display: block; color: var(--text); }
.trust-strip span { color: var(--muted); }
.section { padding: 84px 0; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 38px; }
.section-heading p { color: var(--muted); }
.grid, .product-grid { display: grid; gap: 22px; }
.cards-grid { grid-template-columns: repeat(4, 1fr); }
.card, .product-card, .contact-card, .contact-form, .faq-list details {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}
.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: 14px;
  background: var(--accent-soft);
  border-radius: 16px;
}
.card p, .product-card p, .step p, .contact-card p, .faq-list p { color: var(--muted); margin-bottom: 0; }
.soft-section {
  background: linear-gradient(180deg, rgba(245,196,0,0.08) 0%, rgba(245,196,0,0.04) 100%);
  border: 1px solid #f1e4a0;
  border-radius: 42px;
  padding-left: 28px;
  padding-right: 28px;
}
.three-grid { grid-template-columns: repeat(3, 1fr); }
.featured-product { padding: 18px; overflow: visible; display: flex; flex-direction: column; }
.product-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
}
.product-copy { padding: 18px 8px 6px; }
.product-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a6200;
  font-size: .82rem;
  font-weight: 800;
}
.split-section { display: grid; grid-template-columns: .88fr 1.12fr; gap: 54px; align-items: center; }
.steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
}
.step span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  font-size: 1.2rem;
}
.promo-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--text);
  color: var(--bg);
  border-radius: 36px;
  padding: 48px;
}
.promo-banner h2, .promo-banner .eyebrow { color: var(--bg); }
.promo-banner .eyebrow { opacity: 0.9; }
.promo-banner p { color: rgba(255,255,255,.78); }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-list details { cursor: pointer; }
.faq-list summary { font-weight: 800; color: var(--text); }
.contact-section { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: stretch; max-width: 760px; }
.contact-list a { color: var(--text); font-weight: 800; }
.contact-form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 800; color: var(--text); }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fffefa;
}
textarea { min-height: 140px; resize: vertical; }
.footer { text-align: center; padding: 34px 16px 90px; color: var(--muted); }
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  background: var(--accent);
  color: var(--text);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

@media (max-width: 980px) {
  .services-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    background: var(--surface);
    padding: 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero, .split-section, .contact-section { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .three-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .hero-showcase-grid { grid-template-columns: 1fr; }
  .large-tile { grid-row: span 1; min-height: 360px; }
  .hero-showcase-grid .showcase-tile:not(.large-tile) { min-height: 240px; }
}
@media (max-width: 560px) {
  .services-showcase-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .promo-banner { flex-direction: column; align-items: flex-start; padding: 32px; }
  .hero { margin-top: 28px; }
  .navbar { width: min(100%, calc(100% - 24px)); }
  .trust-strip, .section { width: min(100%, calc(100% - 24px)); }
}

.hero .hero-text {
  margin-left: auto;
  margin-right: auto;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.thank-you-card {
  width: min(720px, 100%);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 56px 28px;
  box-shadow: var(--shadow);
}
.thank-you-card h1 {
  font-size: clamp(3rem, 7vw, 5rem);
}
.thank-you-card p {
  color: var(--muted);
}
.thank-you-card .hero-actions {
  justify-content: center;
}



.services-showcase-section {
  padding-top: 10px;
}
.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-showcase-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}
.service-showcase-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.service-showcase-body {
  padding: 20px 22px 24px;
}
.service-showcase-body h3 {
  margin-bottom: 10px;
}
.service-showcase-body p {
  margin: 0;
  color: var(--muted);
}


.service-link-card {
  color: inherit;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.service-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.09);
}
.service-card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 800;
  color: var(--text);
  border-bottom: 3px solid var(--accent);
}
.service-detail-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 48px auto 0;
  padding: 42px 0 20px;
}
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--text);
  border-bottom: 3px solid var(--accent);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.service-detail-copy p {
  color: var(--muted);
}
.service-detail-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}
.service-detail-image-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.service-detail-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
}
.price-section {
  padding-top: 42px;
}
.price-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 38px;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-box {
  margin: 24px 0 16px;
  padding: 24px;
  border-radius: 22px;
  background: var(--accent-soft);
  border: 1px solid #f1e4a0;
}
.price-box strong {
  display: block;
  font-size: 1.35rem;
  color: var(--text);
}
.price-box p,
.price-note {
  color: var(--muted);
}
@media (max-width: 980px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-image {
    height: 360px;
  }
}


.price-highlight-blurb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 6px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(245, 196, 0, 0.35);
}
.price-highlight-blurb span {
  font-size: 1.4rem;
}
.service-info-block {
  text-align: left;
  margin: 22px 0;
  padding: 22px;
  border-radius: 22px;
  background: #fffefa;
  border: 1px solid var(--line);
}
.service-info-block h3 {
  margin-bottom: 8px;
}
.service-info-block p {
  color: var(--muted);
}
.service-list {
  margin: 10px 0 0;
  padding-left: 22px;
  color: var(--muted);
}
.service-list li {
  margin-bottom: 8px;
}


/* Featured product text fix */
.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.featured-product {
  overflow: visible !important;
  min-height: auto;
  height: auto;
}
.featured-product .product-photo {
  height: 220px;
  flex-shrink: 0;
}
.featured-product .product-copy {
  padding: 18px 8px 10px;
  min-height: 150px;
}
.featured-product .product-copy h3,
.featured-product .product-copy p {
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  white-space: normal;
}
@media (max-width: 980px) {
  .three-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .three-grid {
    grid-template-columns: 1fr;
  }
}


/* Featured product images show full image without cropping */
.featured-product .product-photo {
  width: 100%;
  height: 260px;
  object-fit: contain !important;
  object-position: center;
  background: #ffffff;
  padding: 10px;
}
.featured-product {
  overflow: visible !important;
}
