:root {
  --bg: #f8f3eb;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffdf9;
  --text: #1e1916;
  --muted: #6c6257;
  --line: rgba(61, 40, 18, 0.12);
  --brand: #8c5a2b;
  --brand-strong: #6f4218;
  --accent: #dbaa68;
  --accent-soft: #f3debf;
  --success: #1f7a4b;
  --shadow: 0 20px 60px rgba(75, 43, 17, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after {
  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(219, 170, 104, 0.26), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(140, 90, 43, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf5ec 0%, #f7f1ea 48%, #fffdfb 100%);
  line-height: 1.6;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.top-bar {
  background: #1f1914;
  color: #f9f4ee;
  font-size: 0.92rem;
}

.top-bar p {
  margin: 0;
  padding: 0.75rem 1rem;
  text-align: center;
}

.top-bar a {
  color: #f6c783;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(248, 243, 235, 0.75);
  border-bottom: 1px solid rgba(61, 40, 18, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), #b88146);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  position: relative;
  color: var(--muted);
  font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
  color: var(--text);
}

.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 18px 40px rgba(111, 66, 24, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(61, 40, 18, 0.12);
  color: var(--text);
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.75rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 5px;
}

section {
  padding: 5.5rem 0;
}

.hero-section {
  padding-top: 4rem;
}

.hero-grid,
.enquiry-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(140, 90, 43, 0.1);
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: "Outfit", sans-serif;
  line-height: 1.08;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-subtitle,
.section-intro p,
.about-copy p {
  max-width: 62ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-points {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.hero-points li {
  padding-left: 1.7rem;
  position: relative;
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 0.45rem;
  top: -0.05rem;
  color: var(--brand);
  font-size: 1.4rem;
}

.hero-visual {
  position: relative;
}

.showcase-card,
.mini-card,
.trust-card,
.contact-card,
.blog-card,
.product-card,
.image-panel,
.contact-quick-card,
.enquiry-form,
.owner-panel-content {
  background: var(--surface);
  border: 1px solid rgba(61, 40, 18, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.showcase-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 520px;
}

.showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(21, 14, 9, 0.88));
}

.showcase-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
}

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

.mini-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

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

.mini-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
}

.center {
  text-align: center;
}

.section-intro {
  margin-bottom: 2rem;
}

.trust-grid,
.contact-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card,
.contact-card,
.blog-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 700;
  color: var(--muted);
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}

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

.product-card {
  overflow: hidden;
  border-radius: 28px;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #f1dfc5, #c48b4f);
}

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

.product-body {
  padding: 1.35rem;
}

.product-category {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(140, 90, 43, 0.12);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-body p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(140, 90, 43, 0.11);
  color: var(--brand-strong);
}

.product-link.muted {
  background: rgba(61, 40, 18, 0.06);
  color: var(--muted);
}

.contact-quick-card,
.enquiry-form {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.contact-quick-card {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.contact-quick-card a {
  color: var(--brand-strong);
  font-weight: 700;
}

.field-group {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.field-group label {
  font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(61, 40, 18, 0.14);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 1rem 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: rgba(140, 90, 43, 0.58);
  box-shadow: 0 0 0 4px rgba(140, 90, 43, 0.12);
}

.form-status {
  min-height: 1.4rem;
  margin-top: 0.85rem;
  color: var(--success);
  font-weight: 700;
}

.about-visual .tall {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 540px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.stats-grid article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(140, 90, 43, 0.08);
}

.stats-grid strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.65rem;
}

.contact-card h3,
.blog-card h3 {
  margin-bottom: 0.35rem;
}

.contact-card p,
.blog-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card a {
  color: var(--brand-strong);
  font-weight: 700;
}

.qr-card img {
  width: 132px;
  height: 132px;
  margin-top: 0.5rem;
  border-radius: 16px;
}

.map-wrapper {
  margin-top: 1.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(61, 40, 18, 0.08);
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

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

.blog-card .blog-meta {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(140, 90, 43, 0.08);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--brand-strong);
  font-weight: 800;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: #1d1611;
  color: #efe3d6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h2,
.site-footer h3 {
  color: #fff8ef;
}

.site-footer a {
  display: block;
  margin-bottom: 0.6rem;
  color: #f4c98d;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  background: #1fb15f;
  color: #fff;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .hero-grid,
  .enquiry-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

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

  section {
    padding: 4.2rem 0;
  }

  .showcase-stack,
  .stats-grid,
  .trust-grid,
  .contact-grid,
  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .product-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .showcase-main,
  .about-visual .tall {
    min-height: 340px;
  }
}
