/* =================================================================
   V Catering — Design tokens
   Tweak the brand here; everything else derives from these.
   ================================================================= */
:root {
  /* Brand palette */
  --black: #030303;
  --black-bar: #020202;
  --bg: #050505;
  --white: #fff;
  --cream: #fbf7f0;

  /* Gold scale */
  --gold: #c89122;
  --gold-accent: #e4a62c;   /* nav active / underline */
  --gold-grad-from: #dca944;
  --gold-grad-to: #bd8425;
  --gold-deep: #bd8425;
  --gold-text: #b77d22;     /* prices, plan checks */
  --gold-foot: #d9a640;

  /* Green / WhatsApp */
  --green-grad-from: #18a84b;
  --green-grad-to: #0e8737;
  --whatsapp: #25d366;

  /* Text */
  --text: #101010;
  --text-soft: #222;
  --muted: #555;
  --line: #e0e0e0;

  /* Composed brand tokens */
  --grad-gold: linear-gradient(180deg, var(--gold-grad-from), var(--gold-grad-to));
  --grad-green: linear-gradient(180deg, var(--green-grad-from), var(--green-grad-to));
  --grad-band: linear-gradient(100deg, #fff8eb, var(--white), #f4fff6);
  --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .58) 31%, rgba(0, 0, 0, .13) 62%, rgba(0, 0, 0, .04) 100%);

  /* Shadows */
  --shadow-pill: 0 8px 18px rgba(0, 0, 0, .22);
  --shadow-btn: 0 8px 18px rgba(0, 0, 0, .12);
  --shadow-green: 0 12px 24px rgba(18, 140, 60, .22);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, .10);
  --shadow-card-hi: 0 18px 34px rgba(194, 138, 34, .24);
  --shadow-band: 0 9px 28px rgba(0, 0, 0, .07);
  --shadow-img: 0 3px 10px rgba(0, 0, 0, .14);
  --shadow-float: 0 8px 25px rgba(0, 0, 0, .28);

  /* Geometry */
  --radius: 12px;
  --radius-lg: 13px;
  --radius-sm: 7px;
  --pill: 999px;
  --circle: 50%;

  /* Type */
  --font: Inter, Arial, sans-serif;
  --fw-bold: 900;

  /* Layout */
  --wrap-max: 1400px;
  --wrap-pad: 48px;
}

/* =================================================================
   Base
   ================================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

/* Inline SVG icon sprite holder */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
}

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}

/* =================================================================
   Header / nav
   ================================================================= */
.topbar {
  height: 90px;
  background: var(--black-bar);
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.logo {
  display: block;
  width: 300px;
  max-width: 27vw;
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .02em;
}

.menu a {
  color: var(--white);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.menu a:first-child {
  color: var(--gold-accent);
}

.menu a:first-child::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold-accent);
  margin-top: 12px;
  border-radius: 5px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--grad-gold);
  padding: 14px 25px;
  border-radius: var(--pill);
  color: var(--white);
  text-decoration: none;
  font-weight: var(--fw-bold);
  font-size: 17px;
  white-space: nowrap;
  box-shadow: var(--shadow-pill);
}

.phone .ico,
.btn .ico {
  width: 20px;
  height: 20px;
  flex: none;
}

/* =================================================================
   Hero
   ================================================================= */
.hero {
  height: 390px;
  background-image: var(--hero-overlay), url('assets/hero.jpg');
  background-size: cover;
  background-position: center 48%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 570px;
  color: var(--white);
}

.hero h1 {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: var(--fw-bold);
  letter-spacing: -.04em;
}

.hero p {
  font-size: 16px;
  line-height: 1.58;
  margin: 0 0 24px;
}

/* =================================================================
   Buttons
   ================================================================= */
.actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  height: 47px;
  border-radius: var(--pill);
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: var(--fw-bold);
  font-size: 14px;
}

.btn.gold {
  background: var(--grad-gold);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn.outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(0, 0, 0, .12);
}

.btn.green {
  background: var(--grad-green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

/* =================================================================
   Benefits
   ================================================================= */
.benefits {
  background: var(--white);
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.benefit {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
  min-height: 78px;
}

.benefit:last-child {
  border-right: 0;
}

.icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 1.65;
}

.benefit h3 {
  font-size: 14px;
  margin: 0 0 5px;
  font-weight: var(--fw-bold);
}

.benefit p {
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  color: var(--text-soft);
}

/* =================================================================
   Sections / titles
   ================================================================= */
.content {
  background: var(--white);
  padding: 34px 0 0;
}

.section-title {
  font-size: 24px;
  line-height: 1;
  margin: 0 0 24px;
  font-weight: var(--fw-bold);
  text-align: center;
  letter-spacing: -.04em;
}

.section-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 4px;
}

.section-title.left {
  text-align: left;
}

.section-title.left::after {
  margin-left: 0;
}

/* =================================================================
   Plans
   ================================================================= */
.plans-section {
  padding: 10px 0 36px;
}

.plans-head {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.iva {
  position: absolute;
  right: 0;
  top: 7px;
  font-size: 13px;
  color: #333;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.plan {
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 28px 34px 24px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: .2s;
  position: relative;
}

.plan.featured {
  border: 2px solid var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hi);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: var(--white);
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--pill);
}

.plan .name {
  font-size: 15px;
  letter-spacing: .12em;
  color: var(--gold-text);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
}

.price {
  font-size: 40px;
  line-height: 1.05;
  margin: 7px 0 0;
  font-weight: var(--fw-bold);
  letter-spacing: -.05em;
}

.per {
  font-size: 12px;
  margin-bottom: 21px;
}

.plan ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.plan li {
  font-size: 14px;
  margin: 11px 0;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.plan li::before {
  content: "✓";
  color: var(--gold-text);
  font-weight: var(--fw-bold);
}

.plan .btn {
  height: 42px;
  font-size: 14px;
  padding: 0 18px;
  width: 100%;
}

/* =================================================================
   CTA band
   ================================================================= */
.cta-band {
  margin: 0 auto 28px;
  background: var(--grad-band);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 38px;
  padding: 27px 58px;
  box-shadow: var(--shadow-band);
}

.cta-left {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 28px;
  align-items: center;
}

.cup-badge {
  width: 84px;
  height: 84px;
  border-radius: var(--circle);
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.cup-badge svg {
  width: 54px;
  height: 54px;
  stroke-width: 1.35;
}

.cta-band h2 {
  font-size: 22px;
  letter-spacing: -.03em;
  margin: 0 0 8px;
  font-weight: var(--fw-bold);
}

.cta-band p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.cta-action {
  border-left: 1px solid #e2c894;
  text-align: center;
  padding-left: 52px;
}

.cta-action .btn {
  height: 54px;
  min-width: 410px;
  font-size: 17px;
}

.cta-note {
  font-size: 12px;
  margin-top: 9px;
  color: #333;
}

/* =================================================================
   Gallery
   ================================================================= */
.gallery-section {
  padding: 0 0 34px;
}

.gallery-wrap {
  position: relative;
}

.gallery-nav {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 10px;
}

.circle-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--circle);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  box-shadow: var(--shadow-img);
  transition: transform .2s;
}

.gallery img:hover {
  transform: translateY(-3px);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: var(--circle);
  background: #d8d8d8;
}

.dots span:nth-child(1),
.dots span:nth-child(2) {
  background: var(--gold-deep);
}

/* =================================================================
   Footer
   ================================================================= */
.foot {
  background: var(--bg);
  color: var(--white);
  padding: 31px 0 18px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1fr;
  gap: 46px;
}

.foot-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.foot-item .icon svg {
  width: 42px;
  height: 42px;
}

.foot h3 {
  font-size: 14px;
  color: var(--gold-foot);
  margin: 0 0 5px;
}

.foot p,
.foot a {
  font-size: 13px;
  line-height: 1.65;
  color: var(--white);
  margin: 0;
  text-decoration: none;
}

.copyright {
  text-align: center;
  color: #d7d7d7;
  font-size: 12px;
  margin-top: 22px;
}

/* =================================================================
   Floating WhatsApp button
   ================================================================= */
.float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: var(--circle);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--shadow-float);
  z-index: 20;
}

.float svg {
  width: 33px;
  height: 33px;
}

/* =================================================================
   Responsive — padding is driven by --wrap-pad
   ================================================================= */
@media (max-width: 1180px) {
  :root {
    --wrap-pad: 28px;
  }

  .logo {
    width: 250px;
    max-width: 24vw;
  }

  .menu {
    gap: 17px;
    font-size: 13px;
  }

  .phone {
    font-size: 14px;
    padding: 12px 18px;
  }

  .plans {
    gap: 18px;
  }

  .cta-action .btn {
    min-width: 280px;
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 940px) {
  .topbar {
    height: auto;
    padding: 13px 0;
  }

  .nav {
    flex-wrap: wrap;
  }

  .logo {
    width: 230px;
    max-width: 60vw;
    max-height: 68px;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow: auto;
    gap: 18px;
    padding-bottom: 5px;
  }

  .hero {
    height: 440px;
  }

  .benefit-grid,
  .plans,
  .cta-band,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
  }

  .iva {
    position: static;
    text-align: center;
    margin-top: -12px;
  }

  .plans-head {
    display: block;
  }

  .plan.featured {
    transform: none;
  }

  .cta-band {
    padding: 24px;
  }

  .cta-action {
    border-left: 0;
    border-top: 1px solid #e2c894;
    padding: 20px 0 0;
  }

  .cta-action .btn {
    min-width: 0;
    width: 100%;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img {
    height: 220px;
  }

  .gallery-nav {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --wrap-pad: 20px;
  }

  .logo {
    width: 210px;
    max-height: 66px;
  }

  .menu {
    display: none;
  }

  .phone {
    width: 100%;
    justify-content: center;
  }

  .hero {
    height: 500px;
    background-position: center;
  }

  .hero h1 {
    font-size: 27px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn {
    width: 100%;
    max-width: 330px;
  }

  .actions {
    align-items: flex-start;
  }

  .cta-left {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 14px;
  }

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

  .gallery img {
    height: 260px;
  }

  .float {
    width: 56px;
    height: 56px;
  }
}

/* =================================================================
   Authority / proof section
   ================================================================= */
.authority {
  background: linear-gradient(135deg, #070707 0%, #15110a 58%, #050505 100%);
  color: var(--white);
  padding: 42px 0 38px;
  border-top: 1px solid rgba(220,169,68,.24);
  border-bottom: 1px solid rgba(220,169,68,.18);
}

.authority-wrap {
  display: grid;
  gap: 26px;
}

.authority-intro {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  border: 1px solid rgba(228,166,44,.48);
  border-radius: var(--pill);
  color: var(--gold-accent);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.authority h2 {
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 14px;
  font-weight: var(--fw-bold);
  letter-spacing: -.04em;
}

.authority-intro p {
  max-width: 860px;
  margin: 0 auto 9px;
  color: #eee;
  font-size: 15px;
  line-height: 1.65;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(228,166,44,.28);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.stat-card strong {
  display: block;
  color: var(--gold-accent);
  font-size: 42px;
  line-height: 1;
  font-weight: var(--fw-bold);
  letter-spacing: -.05em;
  margin-bottom: 8px;
}

.stat-card span {
  display: block;
  font-size: 16px;
  font-weight: var(--fw-bold);
  margin-bottom: 10px;
}

.stat-card p {
  margin: 0;
  color: #e6e6e6;
  font-size: 13px;
  line-height: 1.55;
}

.authority-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(100deg, rgba(220,169,68,.18), rgba(255,255,255,.07));
  border: 1px solid rgba(228,166,44,.34);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}

.authority-quote p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
  max-width: 850px;
}

.authority-quote .btn {
  white-space: nowrap;
}

@media (max-width: 940px) {
  .authority {
    padding: 34px 0;
  }
  .stats-grid,
  .authority-quote {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    display: grid;
  }
  .authority-quote {
    display: grid;
    text-align: center;
    justify-items: center;
  }
  .authority h2 {
    font-size: 26px;
  }
}

@media (max-width: 620px) {
  .authority h2 {
    font-size: 24px;
  }
  .stat-card strong {
    font-size: 36px;
  }
  .authority-quote p {
    font-size: 16px;
  }
}
