:root {
  --green-1000: #032820;
  --green-950: #043128;
  --green-900: #063c33;
  --green-800: #0b5546;
  --green-100: #dfeae4;
  --ivory: #faf7ef;
  --ivory-2: #f1eadb;
  --paper: #fffdf8;
  --gold: #c79a3b;
  --gold-soft: #e2c476;
  --ink: #12201b;
  --muted: #66716c;
  --line: rgba(6, 60, 51, 0.15);
  --white: #ffffff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 28px 75px rgba(3, 40, 32, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding-block: 120px; }

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-950);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.business-bar {
  position: relative;
  z-index: 110;
  background: var(--green-1000);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.business-bar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.business-bar a { color: var(--gold-soft); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 49, 40, 0.95);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.18rem; font-weight: 700; }
.brand img { width: 50px; height: 50px; border: 1px solid rgba(226, 196, 118, 0.7); border-radius: 50%; object-fit: cover; }

.site-nav { display: flex; align-items: center; gap: 26px; font-size: 0.88rem; font-weight: 600; }
.site-nav > a:not(.nav-cta) { color: rgba(255, 255, 255, 0.76); transition: color 180ms ease; }
.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible { color: var(--gold-soft); }

.nav-cta { padding: 11px 18px; border: 1px solid rgba(226, 196, 118, 0.78); border-radius: 999px; color: var(--gold-soft); transition: background 180ms ease, color 180ms ease; }
.nav-cta:hover,
.nav-cta:focus-visible { background: var(--gold-soft); color: var(--green-1000); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 4px auto; background: var(--white); transition: transform 180ms ease, opacity 180ms ease; }

.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; background: var(--green-950); color: var(--white); }
.hero-media,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(3,40,32,0.98) 0%, rgba(3,40,32,0.9) 34%, rgba(3,40,32,0.28) 66%, rgba(3,40,32,0.08) 100%), linear-gradient(0deg, rgba(3,40,32,0.72) 0%, transparent 38%); }
.hero-inner { position: relative; z-index: 2; padding-block: 110px 180px; }
.hero-copy { max-width: 650px; }

.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em; line-height: 1.45; text-transform: uppercase; }
.eyebrow-light { color: var(--gold-soft); }
h1, h2, h3, p { overflow-wrap: break-word; }

.hero h1,
.statement h2,
.section-heading h2,
.hospitality-copy h2,
.bulk-copy h2,
.process-heading h2,
.trial-card h2,
.contact-grid h2 { margin: 0; font-family: var(--serif); font-weight: 700; letter-spacing: -0.035em; line-height: 1.07; }

.hero h1 { max-width: 650px; font-size: clamp(3.7rem, 6.4vw, 6.5rem); }
.hero-lead { max-width: 590px; margin: 28px 0 34px; color: rgba(255,255,255,0.75); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-size: 0.91rem; font-weight: 700; transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease; }
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--green-1000); }
.button-gold:hover,
.button-gold:focus-visible { background: var(--gold-soft); }
.button-glass { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.07); color: var(--white); backdrop-filter: blur(10px); }
.button-glass:hover,
.button-glass:focus-visible { border-color: var(--gold-soft); color: var(--gold-soft); }
.button-ivory { background: var(--ivory); color: var(--green-1000); }
.button-ivory:hover,
.button-ivory:focus-visible { background: var(--gold-soft); }

.hero-rail { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.2); border-left: 1px solid rgba(255,255,255,0.13); background: rgba(3,40,32,0.74); backdrop-filter: blur(14px); }
.hero-rail div { min-height: 104px; display: flex; align-items: center; gap: 18px; padding: 24px 28px; border-right: 1px solid rgba(255,255,255,0.13); }
.hero-rail span { color: var(--gold-soft); font-size: 0.72rem; font-weight: 700; }
.hero-rail strong { font-family: var(--serif); font-size: 1.05rem; }

.statement { background: var(--paper); }
.statement-grid { display: grid; grid-template-columns: 0.38fr 1fr; gap: 90px; align-items: start; }
.statement-grid > .eyebrow { margin-top: 12px; }
.statement h2 { max-width: 950px; color: var(--green-1000); font-size: clamp(2.8rem, 5vw, 5rem); }
.statement-grid > div > p { max-width: 710px; margin: 28px 0 0; color: var(--muted); font-size: 1.05rem; }

.category-section { background: var(--ivory); }
.section-heading { display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: end; gap: 90px; margin-bottom: 54px; }
.section-heading h2,
.hospitality-copy h2,
.process-heading h2,
.contact-grid h2 { color: var(--green-1000); font-size: clamp(2.7rem, 4.5vw, 4.5rem); }
.section-heading > p { margin: 0 0 4px; color: var(--muted); }

.category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.category-card { position: relative; min-height: 370px; padding: 30px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,0.56); transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease; }
.category-card:hover { transform: translateY(-5px); background: var(--paper); box-shadow: 0 22px 55px rgba(3,40,32,0.1); }
.category-featured { background: var(--green-900); color: var(--white); }
.category-featured:hover { background: var(--green-800); }
.category-card > a { position: absolute; inset: 0; z-index: 2; }
.category-top { display: flex; align-items: center; justify-content: space-between; color: var(--gold); font-size: 0.76rem; font-weight: 700; }
.category-top span:last-child { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 1rem; transition: transform 180ms ease, background 180ms ease; }
.category-featured .category-top span:last-child { border-color: rgba(255,255,255,0.2); }
.category-card:hover .category-top span:last-child { transform: rotate(45deg); background: var(--gold); color: var(--green-1000); }
.category-body { margin-top: auto; }
.category-body h3 { margin: 0; color: var(--green-1000); font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.4rem); line-height: 1.1; }
.category-featured .category-body h3 { color: var(--white); }
.category-body > p { max-width: 520px; margin: 16px 0 24px; color: var(--muted); }
.category-featured .category-body > p { color: rgba(255,255,255,0.7); }
.category-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.category-tags span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 0.73rem; font-weight: 600; }
.category-featured .category-tags span { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.68); }

.hospitality-section { background: var(--paper); }
.hospitality-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr); align-items: center; gap: 94px; }
.hospitality-visual { position: relative; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.hospitality-visual img { width: 100%; min-height: 680px; object-fit: cover; }
.image-caption { position: absolute; right: 24px; bottom: 24px; left: 24px; padding: 18px 20px; border: 1px solid rgba(255,255,255,0.35); border-radius: 13px; background: rgba(3,40,32,0.8); color: var(--white); backdrop-filter: blur(14px); }
.image-caption span,
.image-caption strong { display: block; }
.image-caption span { color: var(--gold-soft); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.image-caption strong { margin-top: 3px; font-family: var(--serif); font-size: 1.15rem; }
.hospitality-copy > p:not(.eyebrow) { margin: 24px 0 30px; color: var(--muted); }

.product-matrix { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.product-matrix span { position: relative; padding: 14px 8px 14px 18px; border-bottom: 1px solid var(--line); color: var(--green-950); font-weight: 600; }
.product-matrix span::before { content: ""; position: absolute; top: 50%; left: 2px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); transform: translateY(-50%); }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; color: var(--green-900); font-weight: 700; }
.text-link span { color: var(--gold); transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.bulk-section { position: relative; overflow: hidden; background: var(--green-1000); color: var(--white); }
.bulk-section::before { content: ""; position: absolute; inset: 0; opacity: 0.1; background-image: linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(90deg, black, transparent 62%); }
.bulk-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr); align-items: center; gap: 84px; }
.bulk-copy h2 { font-size: clamp(2.8rem, 4.8vw, 4.8rem); }
.bulk-copy > p:not(.eyebrow) { margin: 24px 0 30px; color: rgba(255,255,255,0.7); }
.bulk-list { margin: 0 0 34px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.16); }
.bulk-list li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
.bulk-list span { color: var(--gold-soft); font-size: 0.72rem; }
.bulk-list strong { font-size: 0.94rem; }
.bulk-visual { position: relative; }
.bulk-visual img { width: 100%; min-height: 600px; border-radius: 28px; object-fit: cover; box-shadow: 0 30px 80px rgba(0,0,0,0.32); }
.bulk-badge { position: absolute; top: 24px; left: 24px; min-width: 160px; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.32); border-radius: 12px; background: rgba(3,40,32,0.82); backdrop-filter: blur(12px); }
.bulk-badge span,
.bulk-badge strong { display: block; }
.bulk-badge span { color: var(--gold-soft); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; }
.bulk-badge strong { margin-top: 3px; font-family: var(--serif); }

.process-section { background: var(--ivory-2); }
.process-heading { max-width: 800px; margin-bottom: 54px; }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-card { min-height: 300px; padding: 30px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.36); }
.process-card > span { color: var(--gold); font-size: 0.74rem; font-weight: 700; }
.process-card h3 { margin: auto 0 12px; color: var(--green-1000); font-family: var(--serif); font-size: 1.55rem; line-height: 1.25; }
.process-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.trial-section { padding: 0 0 120px; background: var(--ivory-2); }
.trial-card { position: relative; min-height: 260px; display: grid; grid-template-columns: 1.15fr 0.8fr auto; align-items: center; gap: 55px; overflow: hidden; padding: 50px 54px; border-radius: 26px; background: var(--green-900); color: var(--white); box-shadow: var(--shadow); }
.trial-card h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.trial-card > p { margin: 0; color: rgba(255,255,255,0.7); }
.trial-watermark { position: absolute; top: 50%; right: 23%; width: 260px; border-radius: 50%; opacity: 0.07; transform: translateY(-50%); }

.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(350px,0.85fr); align-items: end; gap: 110px; }
.contact-grid > div:first-child > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 0; color: var(--muted); }
.contact-panel { display: grid; gap: 20px; }
.contact-number { padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-number span,
.contact-number strong { display: block; }
.contact-number span { color: var(--muted); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.contact-number strong { margin-top: 4px; color: var(--green-1000); font-family: var(--serif); font-size: 1.8rem; }

.site-footer { padding: 56px 0 22px; background: var(--green-1000); color: var(--white); }
.footer-main,
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 66px; height: 66px; border: 1px solid rgba(226,196,118,0.6); border-radius: 50%; object-fit: cover; }
.footer-brand strong { font-family: var(--serif); font-size: 1.28rem; }
.footer-brand p { margin: 2px 0 0; color: rgba(255,255,255,0.54); font-size: 0.84rem; }
.footer-category-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 24px; color: rgba(255,255,255,0.63); font-size: 0.84rem; font-weight: 600; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); font-size: 0.76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--gold-soft); font-weight: 700; }

.floating-whatsapp { position: fixed; z-index: 80; right: 20px; bottom: 20px; min-height: 48px; display: inline-flex; align-items: center; gap: 10px; padding: 0 17px; border: 2px solid rgba(255,255,255,0.88); border-radius: 999px; background: #1ea85a; box-shadow: 0 15px 35px rgba(0,0,0,0.22); color: var(--white); font-size: 0.82rem; font-weight: 800; transition: transform 180ms ease; }
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible { transform: translateY(-3px); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 660ms ease, transform 660ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav > a:not(.nav-cta) { display: none; }
  .hospitality-grid,
  .bulk-grid { gap: 60px; }
  .statement-grid { gap: 50px; }
  .trial-card { grid-template-columns: 1fr 0.75fr; }
  .trial-card .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 900px) {
  .section-pad { padding-block: 90px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 114px 0 auto 0; max-height: 0; display: grid; gap: 0; overflow: hidden; background: var(--green-1000); opacity: 0; visibility: hidden; transition: max-height 280ms ease, opacity 220ms ease, visibility 220ms ease; }
  .site-nav.is-open { max-height: calc(100vh - 114px); padding: 16px 24px 26px; opacity: 1; visibility: visible; }
  .site-nav > a:not(.nav-cta) { display: block; }
  .site-nav > a { padding: 15px 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .site-nav .nav-cta { margin-top: 16px; border-bottom: 1px solid var(--gold-soft); text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .hero { min-height: 830px; align-items: flex-start; }
  .hero-media { object-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,40,32,0.96) 0%, rgba(3,40,32,0.76) 66%, rgba(3,40,32,0.25) 100%), linear-gradient(0deg, rgba(3,40,32,0.92), transparent 55%); }
  .hero-inner { padding-block: 100px 230px; }
  .hero-rail { grid-template-columns: repeat(2, 1fr); }
  .hero-rail div { min-height: 78px; }
  .statement-grid,
  .section-heading,
  .hospitality-grid,
  .bulk-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .statement-grid,
  .section-heading { gap: 24px; }
  .hospitality-grid,
  .bulk-grid,
  .contact-grid { gap: 58px; }
  .hospitality-visual img { min-height: 540px; }
  .bulk-copy { order: 2; }
  .bulk-visual { order: 1; }
  .bulk-visual img { min-height: 480px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 230px; }
  .trial-card { grid-template-columns: 1fr; gap: 24px; }
  .trial-card .button { grid-column: auto; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1240px); }
  .section-pad { padding-block: 72px; }
  .business-bar-inner { justify-content: center; text-align: center; }
  .business-bar-inner > span { display: none; }
  .header-inner { min-height: 74px; }
  .brand img { width: 46px; height: 46px; }
  .brand span { font-size: 1.03rem; }
  .site-nav { inset: 110px 0 auto 0; }
  .hero { min-height: 860px; }
  .hero-media { object-position: 69% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,40,32,0.96) 0%, rgba(3,40,32,0.75) 100%), linear-gradient(0deg, rgba(3,40,32,0.96) 0%, transparent 72%); }
  .hero-inner { padding-block: 74px 220px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 4.7rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions,
  .hero-actions .button { width: 100%; }
  .hero-rail { grid-template-columns: 1fr 1fr; }
  .hero-rail div { min-height: 74px; padding: 16px; gap: 10px; }
  .hero-rail strong { font-size: 0.85rem; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement h2,
  .section-heading h2,
  .hospitality-copy h2,
  .process-heading h2,
  .contact-grid h2 { font-size: clamp(2.5rem, 12vw, 3.7rem); }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 330px; padding: 24px; }
  .hospitality-visual { border-radius: 20px; }
  .hospitality-visual img { min-height: 470px; }
  .product-matrix { grid-template-columns: 1fr; }
  .bulk-visual img { min-height: 360px; border-radius: 20px; }
  .bulk-copy h2 { font-size: clamp(2.6rem, 12vw, 3.8rem); }
  .trial-section { padding-bottom: 72px; }
  .trial-card { padding: 38px 26px; border-radius: 20px; }
  .trial-card .button,
  .contact-panel .button { width: 100%; }
  .footer-main,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-category-list { justify-content: flex-start; }
  .footer-bottom { gap: 8px; }
  .floating-whatsapp { right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
