:root {
  --navy: #0b1f3a;
  --navy-soft: #132d4f;
  --gold: #c8a96b;
  --gold-dark: #a78644;
  --green: #3f7d58;
  --ink: #17202a;
  --muted: #67707d;
  --line: #e7e3d8;
  --paper: #ffffff;
  --mist: #f5f5f5;
  --warm: #f4efe5;
  --shadow: 0 18px 55px rgba(11, 31, 58, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(200, 169, 107, 0.9);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.16);
}

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

.brand strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width 0.22s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.whatsapp-brand-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.header-action {
  padding: 0 18px;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.84rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  justify-self: end;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-open .nav-toggle {
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 41, 0.92), rgba(11, 31, 58, 0.62) 52%, rgba(11, 31, 58, 0.26)),
    linear-gradient(0deg, rgba(7, 22, 41, 0.45), transparent 44%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 154px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 800px;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.btn {
  padding: 13px 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(200, 169, 107, 0.28);
}

.btn-primary:hover {
  background: #d8ba7e;
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.btn-light {
  color: var(--navy);
  background: #fff;
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto -1px;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  font-weight: 800;
  text-align: center;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 4vw, 58px);
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.contact-copy p,
.cta-band p,
.about-panel p {
  color: var(--muted);
}

.feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 238px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(11, 31, 58, 0.06);
}

.feature-card svg,
.service-card svg,
.contact-methods svg {
  width: 24px;
  height: 24px;
}

.feature-card svg {
  margin-bottom: 22px;
  color: var(--green);
}

.feature-card p,
.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.categories-section,
.faq-section {
  background: var(--mist);
}

.split {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 112px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
}

.category-list {
  display: grid;
  gap: 18px;
}

.category-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(11, 31, 58, 0.08);
}

.category-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.category-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.services-section {
  background: var(--paper);
}

.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card svg {
  margin-bottom: 16px;
  color: var(--gold-dark);
}

.values-section {
  color: #fff;
  background:
    linear-gradient(rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.86)),
    url("assets/optimized/botanical-spice.webp") center / cover;
}

.about-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 44px;
  align-items: start;
}

.about-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.statement-grid {
  display: grid;
  gap: 18px;
}

.statement-grid article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.values-grid {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.values-grid span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
}

.cta-band {
  width: min(1180px, calc(100% - 36px));
  margin: -44px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.faq-list {
  width: min(900px, 100%);
  display: grid;
  gap: 12px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.06);
}

summary {
  padding: 20px 22px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  background: var(--warm);
}

.contact-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.contact-copy,
.quote-form {
  min-width: 0;
  padding: clamp(28px, 5vw, 50px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(11, 31, 58, 0.08);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-methods a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.contact-methods span {
  overflow-wrap: anywhere;
}

.contact-methods svg {
  color: var(--green);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.social-links svg {
  width: 19px;
  height: 19px;
  color: var(--green);
}

.social-links .whatsapp-brand-icon {
  width: 20px;
  height: 20px;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.form-status {
  padding: 13px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #22543d;
  background: #e3f6ec;
  border: 1px solid #b7e4ca;
}

.form-status.is-error {
  color: #7b2d26;
  background: #fde8e5;
  border: 1px solid #f3bbb4;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--mist);
  outline: 0;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.2);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  justify-items: center;
  padding: 44px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
  text-align: center;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-logo {
  width: 62px;
  height: 62px;
  flex-basis: 62px;
}

.site-footer p {
  max-width: 640px;
}

.footer-links {
  width: min(1060px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.footer-links a {
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-links img {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
}

.footer-links span {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp svg,
.floating-whatsapp img {
  width: 28px;
  height: 28px;
}

svg {
  stroke-width: 2.1;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .header-action {
    display: none;
  }

  .hero-strip,
  .feature-grid,
  .service-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .about-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }

  .service-grid {
    gap: 16px;
  }

  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 168px;
    font-size: 0.88rem;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    top: 72px;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 126px 0 120px;
  }

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

  .hero-strip,
  .feature-grid,
  .service-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 56px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .category-list article {
    grid-template-columns: 1fr;
  }

  .category-list img {
    aspect-ratio: 16 / 9;
  }

  .contact-copy,
  .quote-form {
    padding: 24px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
