/* Mathi Caterings — Home page styles */
:root{
  --green:#0f3b2e;
  --green-dark:#0a2b21;
  --orange:#e8551f;
  --gold:#c8a24a;
  --cream:#fdf8ec;
  --cream-2:#f7efdd;
  --sage:#e6ecdc;
  --ink:#20241f;
  --muted:#5d6459;
  --radius:14px;
  --shadow:0 18px 40px -18px rgba(15,59,46,.35);
  --wrap:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Jost","Segoe UI",system-ui,sans-serif;
  color:var(--ink);
  background:var(--cream);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{margin:0;padding:0;list-style:none}
h1,h2,h3,h4{font-family:"Playfair Display",Georgia,serif;margin:0;line-height:1.15}
.script{font-family:"Yellowtail",cursive;color:var(--orange);font-weight:400}
.topbar .wrap {
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;

  padding-left: 55px !important;
  padding-right: 55px !important;
}
.eyebrow{
  font-size:.72rem;letter-spacing:.28em;text-transform:uppercase;
  color:var(--gold);font-weight:600;
}

/* ---------- buttons ---------- */
.header-cta{
   padding:.85rem 1.7rem !important;
   font-size:.82rem;
   font-weight:600;
   border-radius:8px;
   margin-left:20px;
}
.btn-green{background:var(--green);color:var(--cream);box-shadow:var(--shadow)}
.btn-green:hover{background:var(--orange);transform:translateY(-2px)}
.btn-ghost{background:#fff;color:var(--green);border-color:rgba(15,59,46,.25)}
.btn-ghost:hover{border-color:var(--orange);color:var(--orange);transform:translateY(-2px)}
.btn-gold{background:var(--cream-2);color:var(--green);border-color:var(--gold)}
.btn-gold:hover{background:var(--gold);color:#fff}
.btn .arrow{transition:transform .25s}
.btn:hover .arrow{transform:translateX(4px)}
.play{
  width:26px;height:26px;border-radius:50%;background:var(--orange);color:#fff;
  display:grid;place-items:center;font-size:.6rem;
}

/* =========================================================
   GLOBAL GRID SYSTEM
========================================================= */

:root {
  --green: #0f3b2e;
  --green-dark: #09291f;
  --orange: #e8551f;
  --gold: #c8a24a;
  --cream: #fdf8ec;
  --ink: #20241f;
  --muted: #5d6459;

  --container: 1280px;
  --page-padding: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

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


/* SAME GRID FOR COMPLETE WEBSITE */

.site-container,
.wrap {
  width: min(
    calc(100% - (var(--page-padding) * 2)),
    var(--container)
  );

  margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;

  background: rgba(253, 248, 236, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-top: 4px solid var(--green);
  border-bottom: 1px solid rgba(15, 59, 46, 0.10);
}


.header-inner {
  min-height: 88px;

  display: grid;

  grid-template-columns:
    170px
    minmax(0, 1fr)
    auto;

  align-items: center;

  column-gap: 36px;
}


/* LOGO */

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

  width: max-content;
}

.brand img {
  width: auto;
  height: 70px;
  object-fit: contain;
}


/* NAVIGATION */

.nav {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(18px, 1.7vw, 30px);

  white-space: nowrap;
}


.nav a {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 5px;

  padding: 32px 0 29px;

  font-size: 22px;
  line-height: 1;

  font-weight: 500;

  color: #26352f;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


.nav a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 22px;

  width: 0;
  height: 2px;

  background: var(--orange);

  transform: translateX(-50%);

  transition: width 0.25s ease;
}


.nav a:hover,
.nav a.active {
  color: var(--green);
}


.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}


.caret {
  position: relative;
  top: -1px;

  font-size: 18px;
}


/* HEADER CTA */

.header-cta {
  height: 52px;

  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  border-radius: 9px;

  background: var(--green);
  color: #fff;

  font-size: 18px;
  font-weight: 600;

  white-space: nowrap;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.header-cta:hover {
  background: var(--orange);

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px
    rgba(15, 59, 46, 0.18);
}


.cta-arrow {
  font-size: 17px;

  transition: transform 0.25s ease;
}


.header-cta:hover .cta-arrow {
  transform: translateX(4px);
}


/* =========================================================
   BURGER
========================================================= */

.burger {
  display: none;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(15, 59, 46, 0.14);

  border-radius: 8px;

  background: transparent;

  cursor: pointer;

  padding: 10px;
}


.burger span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  background: var(--green);

  border-radius: 10px;

  transition: 0.3s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  width: 100%;

  background: var(--cream);

  overflow: hidden;
}


/*
   SAME EXACT WIDTH AS HEADER
*/

.hero-grid {
  min-height: calc(100vh - 92px);
  min-height: 650px;

  display: grid;

  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(0, 1.12fr);

  align-items: stretch;
}


/* LEFT CONTENT */

.hero-copy {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    72px
    clamp(40px, 5vw, 80px)
    72px
    0;
}


.badge30 {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-bottom: 28px;

  color: var(--green);

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.25em;
  text-transform: uppercase;
}


.laurel {
  color: var(--gold);

  font-size: 22px;

  line-height: 1;
}


.hero h1 {
  max-width: 620px;

  margin: 0;

  font-family: "Playfair Display", Georgia, serif;

  font-size: clamp(52px, 4.25vw, 72px);

  font-weight: 600;

  line-height: 1.04;

  letter-spacing: -0.025em;

  color: var(--green);
}


.hero h1 .script {
  display: block;

  margin-top: 14px;

  font-family: "Yellowtail", cursive;

  font-size: 0.94em;

  font-weight: 400;

  line-height: 1.05;

  color: var(--orange);
}


.hero-copy > p {
  max-width: 480px;

  margin: 30px 0 32px;

  font-size: 17px;

  line-height: 1.85;

  color: var(--muted);
}


/* HERO BUTTONS */

.hero-actions {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 14px;
}


.btn-primary,
.btn-secondary {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 22px;

  border-radius: 8px;

  font-size: 15px;
  font-weight: 600;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}


.btn-primary {
  background: var(--green);

  color: #fff;
}


.btn-primary:hover {
  background: var(--orange);

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px
    rgba(15, 59, 46, 0.18);
}


.btn-secondary {
  color: var(--green);

  background: transparent;

  border: 1px solid
    rgba(15, 59, 46, 0.18);
}


.btn-secondary:hover {
  background: #fff;

  transform: translateY(-2px);
}


.play-icon {
  width: 30px;
  height: 30px;

  display: inline-grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--orange);

  color: #fff;

  font-size: 9px;
}


/* LOCATION */

.hero-loc {
  display: flex;
  align-items: center;

  gap: 7px;

  margin-top: 30px;

  color: var(--green);

  font-size: 14px;
  font-weight: 600;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-media {
  position: relative;

  min-height: 650px;

  overflow: hidden;
}


.hero-media img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


/*
Cream → Image soft blend
*/

.hero-media::before {
  content: "";

  position: absolute;

  z-index: 1;

  inset: 0 auto 0 0;

  width: 65px;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      var(--cream) 0%,
      rgba(253, 248, 236, 0.82) 25%,
      rgba(253, 248, 236, 0.35) 60%,
      transparent 100%
    );
}


/* =========================================================
   DESKTOP RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

  :root {
    --page-padding: 26px;
  }


  .header-inner {
    grid-template-columns:
      150px
      minmax(0, 1fr)
      auto;

    column-gap: 22px;
  }


  .brand img {
    height: 48px;
  }


  .nav {
    gap: 17px;
  }


  .nav a {
    font-size: 20px;
  }


  .header-cta {
    padding: 0 17px;

    font-size: 18px;
  }

}


/* =========================================================
   TABLET / MOBILE HEADER
========================================================= */

@media (max-width: 1024px) {

  .header-inner {
    min-height: 78px;

    grid-template-columns:
      auto
      1fr
      auto;
  }


  .brand img {
    height: 46px;
  }


  .header-cta {
    display: none;
  }


  .burger {
    display: block;

    justify-self: end;
  }


  /*
  IMPORTANT:
  desktop nav MUST hide here
  */

  .nav {
    display: none;

    position: absolute;

    top: 78px;
    left: 0;
    right: 0;

    width: 100%;

    padding: 14px 26px 22px;

    background: var(--cream);

    border-top:
      1px solid
      rgba(15, 59, 46, 0.08);

    box-shadow:
      0 18px 30px
      rgba(0, 0, 0, 0.08);
  }


  .nav.open {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0;
  }


  .nav a {
    width: 100%;

    padding: 15px 0;

    border-bottom:
      1px solid
      rgba(15, 59, 46, 0.08);
  }


  .nav a::after {
    display: none;
  }


  /* HERO */

  .hero-grid {
    grid-template-columns:
      minmax(0, 0.92fr)
      minmax(0, 1.08fr);

    min-height: 600px;
  }


  .hero-copy {
    padding-right: 40px;
  }


  .hero h1 {
    font-size: clamp(
      44px,
      5vw,
      58px
    );
  }


  .hero-media {
    min-height: 600px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  :root {
    --page-padding: 20px;
  }


  .hero-grid {
    display: flex;

    flex-direction: column;

    min-height: auto;
  }


  .hero-copy {
    order: 2;

    padding:
      44px
      0
      52px;
  }


  .hero-media {
  order: 1;

  width: 100% !important;
  max-width: none !important;

  height: 390px;
  min-height: 390px;

  position: relative;

  left: auto !important;
  margin-left: 0 !important;

  overflow: hidden;
}

.hero-media img {
  position: absolute;

  inset: 0;

  width: 100% !important;
  height: 100% !important;

  max-width: none !important;

  object-fit: cover !important;

  /* image எந்த side காட்டணும்னு இங்க control */
  object-position: center center !important;

  display: block;
}


  .hero-media::before {
    inset:
      auto
      0
      0
      0;

    width: 100%;
    height: 100px;

    background:
      linear-gradient(
        0deg,
        var(--cream) 0%,
        transparent 100%
      );
  }


  .hero h1 {
    font-size: clamp(
      42px,
      11vw,
      56px
    );
  }


  .hero-copy > p {
    font-size: 16px;

    line-height: 1.75;
  }


  .badge30 {
    font-size: 10px;

    letter-spacing: 0.18em;

    margin-bottom: 22px;
  }


  .hero-actions {
    align-items: stretch;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  :root {
    --page-padding: 18px;
  }


  .header-inner {
    min-height: 70px;
  }


  .brand img {
    height: 41px;
  }


  .nav {
    top: 70px;
  }


  .hero-media {
    min-height: 300px;
  }


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


  .hero-actions {
    flex-direction: column;
  }


  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

}

/* ---------- stats ---------- */
/* =========================================================
   PREMIUM STATS SECTION
========================================================= */

.stats-premium {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #092d23 0%,
      #0d3c2f 45%,
      #0b3429 100%
    );

  padding: 38px 0;

  isolation: isolate;
}


/* GOLD TOP ACCENT */

.stats-premium::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: min(94%, 1280px);
  height: 1px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(202, 161, 65, .55),
      #d2a841,
      rgba(202, 161, 65, .55),
      transparent
    );
}


/* SUBTLE BACKGROUND TEXTURE */

.stats-premium::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: .035;

  background-image:
    radial-gradient(
      circle at center,
      #ffffff 1px,
      transparent 1px
    );

  background-size: 22px 22px;

  z-index: -1;
}


/* SOFT LIGHTING */

.stats-glow {
  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(207, 164, 64, .12),
      transparent 68%
    );

  filter: blur(10px);

  pointer-events: none;

  z-index: -1;
}

.stats-glow-1 {
  left: -130px;
  top: -150px;
}

.stats-glow-2 {
  right: -120px;
  bottom: -180px;
}


/* GRID */

.stats-premium-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  align-items: stretch;
}


/* EACH STAT */

.premium-stat {
  position: relative;

  min-height: 155px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 19px;

  padding: 25px 30px;

  cursor: default;

  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    background .45s ease;
}


/* DIVIDER */

.premium-stat:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 18%;
  right: 0;

  width: 1px;
  height: 64%;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(218, 181, 91, .28),
      transparent
    );
}


/* HOVER */

.premium-stat:hover {
  transform: translateY(-5px);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.025),
      rgba(208,166,67,.055)
    );
}


/* =========================================
   ICON CIRCLE
========================================= */

.stat-icon {
  position: relative;

  width: 54px;
  height: 54px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #d2a841;

  font-size: 21px;

  border:
    1px solid
    rgba(210,168,65,.40);

  background:
    rgba(255,255,255,.025);

  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    background .4s ease,
    box-shadow .4s ease;
}


/* INNER GOLD RING */

.stat-icon::before {
  content: "";

  position: absolute;
  inset: 5px;

  border-radius: 50%;

  border:
    1px solid
    rgba(210,168,65,.12);
}


/* ICON HOVER */

.premium-stat:hover .stat-icon {
  transform:
    translateY(-3px)
    rotate(8deg)
    scale(1.06);

  background:
    rgba(210,168,65,.10);

  box-shadow:
    0 0 0 7px rgba(210,168,65,.035),
    0 10px 30px rgba(0,0,0,.15);
}


/* =========================================
   TEXT
========================================= */

.stat-content {
  display: flex;
  flex-direction: column;

  justify-content: center;

  min-width: 0;
}


/* NUMBER */

.stat-number {
  display: flex;
  align-items: flex-start;

  gap: 2px;

  margin-bottom: 6px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  color: #d7aa43;

  font-size: clamp(34px, 2.5vw, 46px);

  font-weight: 600;

  line-height: .95;

  letter-spacing: -.03em;
}


/* + */

.stat-number sup {
  position: relative;

  top: 2px;

  font-family: "Jost", sans-serif;

  font-size: 16px;

  font-weight: 500;

  line-height: 1;
}


/* A-Z */

.stat-az {
  letter-spacing: .03em;
}


/* DESCRIPTION */

.stat-content p {
  margin: 0;

  color:
    rgba(253,248,236,.78);

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  font-weight: 400;

  line-height: 1.45;

  letter-spacing: .01em;
}


.stat-content p strong {
  color: #fffaf0;

  font-weight: 600;
}


/* SMALL GOLD DETAIL */

.stat-content::after {
  content: "";

  width: 25px;
  height: 1px;

  margin-top: 10px;

  background:
    #cfa440;

  opacity: .55;

  transition:
    width .4s ease;
}


.premium-stat:hover
.stat-content::after {
  width: 48px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

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


  .premium-stat {
    min-height: 145px;
  }


  .premium-stat:nth-child(2)::after {
    display: none;
  }


  .premium-stat:nth-child(1),
  .premium-stat:nth-child(2) {
    border-bottom:
      1px solid
      rgba(210,168,65,.13);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .stats-premium {
    padding: 20px 0;
  }


  .stats-premium-grid {
    grid-template-columns: 1fr 1fr;
  }


  .premium-stat {
    min-height: 150px;

    flex-direction: column;

    text-align: center;

    gap: 11px;

    padding: 22px 12px;
  }


  .stat-icon {
    width: 43px;
    height: 43px;

    font-size: 17px;
  }


  .stat-number {
    justify-content: center;

    font-size: 32px;
  }


  .stat-content {
    align-items: center;
  }


  .stat-content p {
    font-size: 11px;
  }


  .stat-content::after {
    margin-left: auto;
    margin-right: auto;
  }


  .premium-stat:nth-child(odd)::after {
    display: block;

    top: 15%;

    height: 70%;
  }


  .premium-stat:nth-child(even)::after {
    display: none;
  }

}
.stat:last-child{border-right:0}
.stat .big{font-family:"Playfair Display",serif;font-size:1.9rem;color:var(--gold)}
.stat .lbl{font-size:.82rem;line-height:1.35;opacity:.95}
.stat .ico{font-size:1.5rem;color:var(--gold)}

/* =========================================================
   PREMIUM ABOUT SECTION
========================================================= */

.about-premium {
  position: relative;

  padding: 80px 0 90px;

  background:
    radial-gradient(
      circle at 50% 45%,
      #fffdf7 0%,
      #fdf8ec 55%,
      #f8efdc 100%
    );

  overflow: hidden;

  border-top: 5px solid #0f3b2e;
}


/* =========================================
   TOP DECORATIVE CURVE
========================================= */

.about-top-line {
  position: absolute;

  top: -9px;
  left: 5%;

  width: 90%;
  height: 18px;

  border-radius: 0 0 50% 50%;

  border-bottom: 2px solid
    rgba(15, 59, 46, .20);

  pointer-events: none;
}


/* =========================================
   MAIN GRID
========================================= */

.about-premium-inner {
  position: relative;
  z-index: 5;

  display: grid;

  grid-template-columns:
    minmax(420px, .95fr)
    minmax(450px, 1.05fr);

  gap: clamp(55px, 7vw, 110px);

  align-items: center;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.about-visual {
  position: relative;

  width: 100%;
  max-width: 570px;

  height: 440px;

  margin-inline: auto;

  perspective: 1200px;
}




/* =========================================
   ALL COLLAGE PHOTOS
========================================= */

.about-photo {
  position: absolute;

  overflow: hidden;

  background: #fff;

  border: 6px solid #fff;

  border-radius: 18px;

  box-shadow:
    0 22px 45px rgba(31, 46, 38, .13),
    0 5px 12px rgba(31, 46, 38, .08);

  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    box-shadow .5s ease;

  transform-style: preserve-3d;
}


.about-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .8s cubic-bezier(.2,.8,.2,1);
}


.about-photo:hover {
  z-index: 10;

  box-shadow:
    0 30px 60px rgba(20, 54, 42, .20);
}


.about-photo:hover img {
  transform: scale(1.055);
}


/* =========================================
   MAIN LARGE IMAGE
========================================= */

.about-photo-main {
  z-index: 2;

  width: 72%;
  height: 315px;

  left: 0;
  top: 55px;

  transform: rotate(-4deg);
}


.about-photo-main:hover {
  transform:
    rotate(-2deg)
    translateY(-7px);
}


/* =========================================
   TEAM IMAGE
========================================= */

.about-photo-team {
  z-index: 4;

  width: 42%;
  height: 190px;

  right: 12px;
  top: 85px;

  transform: rotate(3deg);
}


.about-photo-team:hover {
  transform:
    rotate(1deg)
    translateY(-7px);
}


/* =========================================
   FOOD IMAGE
========================================= */

.about-photo-food {
  z-index: 5;

  width: 43%;
  height: 190px;

  right: 75px;
  bottom: 0;

  transform: rotate(-1deg);
}


.about-photo-food:hover {
  transform:
    rotate(1deg)
    translateY(-7px);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.about-premium-content {
  position: relative;

  z-index: 4;

  max-width: 620px;
}


/* =========================================
   OUR STORY
========================================= */

.about-eyebrow {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-bottom: 13px;

  color: #c99732;

  font-family: "Jost", sans-serif;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .28em;

  text-transform: uppercase;
}


.story-icon {
  font-size: 20px;

  color: #d0a143;
}


/* =========================================
   HEADING
========================================= */

.about-premium-content h2 {
  max-width: 570px;

  margin: 0 0 22px;

  color: #103d30;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(38px, 3.4vw, 57px);

  font-weight: 600;

  line-height: .98;

  letter-spacing: -.025em;
}


.about-script {
  display: inline-block;

  margin-left: 7px;

  color: #e8551f;

  font-family:
    "Yellowtail",
    cursive;

  font-size: .95em;

  font-weight: 400;

  white-space: nowrap;
}


/* =========================================
   DESCRIPTION
========================================= */

.about-description {
  max-width: 535px;

  margin: 0 0 24px;

  color: #4f544f;

  font-family:
    "Jost",
    sans-serif;

  font-size: 18px;

  line-height: 1.7;
}


/* =========================================================
   FEATURES
========================================================= */

.about-features {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 13px 30px;

  max-width: 510px;

  margin-bottom: 26px;
}


.about-feature {
  display: flex;
  align-items: center;

  gap: 9px;

  color: #103d30;

  font-family:
    "Jost",
    sans-serif;

  font-size: 18px;

  font-weight: 500;
}


/* CHECK ICON */

.feature-check {
  width: 19px;
  height: 19px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #0f3b2e;

  color: #fff;

  font-size: 10px;

  box-shadow:
    0 3px 7px
    rgba(15, 59, 46, .18);
}


/* =========================================================
   BUTTON
========================================================= */

.about-button {
  position: relative;

  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 22px;

  padding: 0 19px;

  border-radius: 5px;

  border:
    1px solid
    rgba(209, 159, 62, .60);

  background:
    rgba(255, 250, 237, .75);

  color: #103d30;

  font-family:
    "Jost",
    sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .04em;

  text-transform: uppercase;

  box-shadow:
    0 6px 15px
    rgba(67, 50, 21, .05);

  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease,
    box-shadow .35s ease;
}


.about-button:hover {
  color: #fff;

  background: #0f3b2e;

  border-color: #0f3b2e;

  transform: translateY(-3px);

  box-shadow:
    0 12px 25px
    rgba(15, 59, 46, .16);
}


.about-button-arrow {
  font-size: 17px;

  transition:
    transform .35s ease;
}


.about-button:hover
.about-button-arrow {
  transform: translateX(5px);
}


/* =========================================================
   RIGHT SIDE TRADITIONAL LAMP
========================================================= */

.about-lamp {
  position: absolute;

  z-index: 10;

  /* RIGHT CORNER */
  left: 1450px;
  bottom: -15px;

  /* LAMP SIZE */
  width: 400px;
  height: auto;

  object-fit: contain;

  pointer-events: none;

  filter:
    drop-shadow(0 15px 18px rgba(73, 44, 9, 0.18));
}




/* =========================================================
   TOP BANANA LEAF
========================================================= */

.about-leaf-top {
  position: absolute;

  z-index: 20;

  /* section-ku veliya kondu varum */
  top: -1px;
  right: -1px;

  width: 220px;
  height: auto;

  object-fit: contain;

  transform: rotate(-12deg);

  pointer-events: none;
}


/* =========================================================
   CORNER MANDALA DECORATION
========================================================= */

.about-mandala {
  position: absolute;

  width: 220px;
  height: 220px;

  border:
    1px solid
    rgba(197, 153, 67, .12);

  border-radius: 50%;

  pointer-events: none;
}


.about-mandala::before,
.about-mandala::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  border:
    1px solid
    rgba(197, 153, 67, .09);
}


.about-mandala::before {
  inset: 28px;
}


.about-mandala::after {
  inset: 62px;
}


.about-mandala-left {
  left: -130px;
  top: -80px;
}


.about-mandala-right {
  right: -110px;
  top: 30px;
}


/* =========================================================
   BOTTOM FLOWER DECORATION
========================================================= */

.about-flower-decoration {
  position: absolute;

  right: 115px;
  bottom: 2px;

  display: flex;
  align-items: flex-end;

  gap: 8px;

  color: #ea7867;

  opacity: .5;

  pointer-events: none;
}


.about-flower-decoration span:nth-child(1) {
  font-size: 21px;
}


.about-flower-decoration span:nth-child(2) {
  font-size: 31px;
}


.about-flower-decoration span:nth-child(3) {
  font-size: 17px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .about-premium {
    padding: 70px 0 80px;
  }


  .about-premium-inner {
    grid-template-columns:
      minmax(350px, .9fr)
      minmax(400px, 1.1fr);

    gap: 45px;
  }


  .about-visual {
    height: 390px;
  }


  .about-photo-main {
    height: 280px;
  }


  .about-photo-team {
    height: 165px;
  }


  .about-photo-food {
    height: 165px;
  }


  .about-lamp {
    opacity: .45;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .about-premium {
    padding: 55px 0 65px;
  }


  .about-premium-inner {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .about-visual {
    max-width: 500px;

    height: 380px;
  }


  .about-premium-content {
    text-align: center;

    margin-inline: auto;
  }


  .about-eyebrow {
    justify-content: center;
  }


  .about-premium-content h2 {
    margin-inline: auto;

    font-size: clamp(36px, 10vw, 50px);
  }


  .about-description {
    margin-left: auto;
    margin-right: auto;
  }


  .about-features {
    max-width: 470px;

    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }


  @media (max-width: 760px) {

    .about-lamp {
        display: block !important;

        width: 150px !important;
        height: auto !important;

        left: auto !important;
        right: -10px !important;

        bottom: -5px !important;

        opacity: 1 !important;

        z-index: 10 !important;

        visibility: visible !important;
    }

}


  .about-leaf-top {
    width: 130px;

    opacity: .55;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

  .about-visual {
    height: 330px;
  }


  .about-photo-main {
    width: 77%;
    height: 235px;

    left: -5px;
  }


  .about-photo-team {
    width: 45%;
    height: 145px;

    right: 0;
    top: 80px;
  }


  .about-photo-food {
    width: 47%;
    height: 145px;

    right: 45px;
  }


  .gold-shape-one {
    width: 130px;
    height: 130px;
  }


  .gold-shape-two {
    width: 140px;
    height: 130px;
  }


  .about-features {
    grid-template-columns: 1fr;

    width: max-content;
    max-width: 100%;
  }


  .about-button {
    min-height: 48px;

    font-size: 11px;
  }

}


/* =========================================================
   PREMIUM SPECIALTIES INFINITE 3D SLIDER
========================================================= */

.spec {
  position: relative;

  padding: 75px 0 95px;

  background:
    radial-gradient(
      circle at 50% 30%,
      #eef3e7 0%,
      #e6ecdc 58%,
      #dfe8d5 100%
    );

  overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.spec-heading-wrap {
  width: min(
    calc(100% - 64px),
    1280px
  );

  margin: 0 auto 46px;

  text-align: center;
}


.spec .eyebrow {
  margin-bottom: 12px;

  color: #c99b36;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .28em;

  text-transform: uppercase;
}


.spec .heading {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 24px;
}


.spec .heading span {
  width: 100%;
  max-width: 220px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(15,59,46,.22)
    );
}


.spec .heading span:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(15,59,46,.22),
      transparent
    );
}


.spec h2 {
  flex-shrink: 0;

  color: #103d30;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(35px, 3.3vw, 52px);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -.025em;
}


/* =========================================================
   SLIDER
========================================================= */

.spec-slider {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding:
    25px 0 45px;

  perspective: 1400px;
}


/* =========================================
   MOVING TRACK
========================================= */

.spec-track {
  --gap: 22px;

  display: flex;
  align-items: stretch;

  gap: var(--gap);

  width: max-content;

  padding: 0;

  animation: specLoop 28s linear infinite;

  will-change: transform;
}


/* STOP SLIDER WHEN HOVER */
.spec-slider:hover .spec-track {
  animation-play-state: paused;
}

.spec-track:has(.spec-card:hover) {
  animation-play-state: paused;
}

.spec-set {
  display: flex;
  align-items: stretch;

  gap: var(--gap);

  flex-shrink: 0;
}

/* INFINITE MOTION */

@keyframes specLoop {

  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform:
      translate3d(
        calc(-50% - (var(--gap) / 2)),
        0,
        0
      );
  }

}

/* =========================================================
   CARD
========================================================= */

.spec-card {
  position: relative;

  flex:
    0 0
    clamp(230px, 15vw, 270px);

  min-height: 320px;

  overflow: hidden;

  border-radius: 17px;

  background: #fffaf0;

  box-shadow:
    0 18px 36px
    rgba(23,57,44,.10);

  transform:
    perspective(1000px)
    rotateX(0)
    rotateY(0)
    translateZ(0);

  transform-style: preserve-3d;

  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    box-shadow .5s ease,
    border-color .4s ease;

  cursor: pointer;

  isolation: isolate;
}


/* SUBTLE BORDER */

.spec-card::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 8;

  border-radius: inherit;

  border:
    1px solid
    rgba(198,154,66,.12);

  pointer-events: none;
}


/* =========================================
   LIGHT SWEEP
========================================= */

.spec-card::after {
  content: "";

  position: absolute;

  z-index: 7;

  top: -25%;
  left: -90%;

  width: 48%;
  height: 160%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.36),
      transparent
    );

  transform:
    rotate(16deg);

  pointer-events: none;

  transition:
    left .75s
    cubic-bezier(.2,.8,.2,1);
}


.spec-card:hover::after {
  left: 135%;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.spec-card-image {
  position: relative;

  width: 100%;
  height: 165px;

  overflow: hidden;

  transform:
    translateZ(24px);
}


.spec-card-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(7,42,31,.18)
    );

  pointer-events: none;

  opacity: 0;

  transition:
    opacity .45s ease;
}


.spec-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.001);

  transition:
    transform .8s
    cubic-bezier(.2,.8,.2,1),
    filter .5s ease;
}


/* =========================================================
   CARD BODY
========================================================= */

.spec-card-body {
  position: relative;

  z-index: 3;

  min-height: 155px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding: 18px 20px 22px;

  transform:
    translateZ(34px);

  backface-visibility: hidden;
}


.spec-card h3 {
  margin: 0 0 16px;

  color: #0f3b2e;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 21px;

  font-weight: 600;

  line-height: 1.2;

  text-align: center;

  transition:
    transform .45s
    cubic-bezier(.2,.8,.2,1),
    color .35s ease;
}


/* =========================================================
   ROUND ARROW
========================================================= */

.spec-card-arrow {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid
    rgba(200,162,74,.75);

  color: #0f3b2e;

  font-size: 10px;

  background:
    rgba(255,255,255,.55);

  transform:
    translateZ(45px);

  transition:
    transform .45s
    cubic-bezier(.2,.8,.2,1),
    background .35s ease,
    color .35s ease,
    box-shadow .35s ease;
}


/* =========================================================
   3D HOVER
========================================================= */

.spec-card:hover {
  z-index: 20;

  transform:
    perspective(1000px)
    translateY(-13px)
    rotateX(5deg)
    rotateY(-4deg)
    scale(1.055);

  box-shadow:
    0 30px 60px
    rgba(15,59,46,.20),
    0 8px 20px
    rgba(15,59,46,.10);
}


.spec-card:hover img {
  transform:
    scale(1.12)
    translateY(-3px);
}


.spec-card:hover
.spec-card-image::after {
  opacity: 1;
}


.spec-card:hover h3 {
  transform:
    translateY(-3px)
    translateZ(15px);
}


.spec-card:hover
.spec-card-arrow {
  color: #fff;

  background: #0f3b2e;

  transform:
    translateZ(65px)
    translateX(4px)
    rotate(-8deg)
    scale(1.08);

  box-shadow:
    0 9px 20px
    rgba(15,59,46,.18);
}


/* =========================================================
   EDGE FADES
========================================================= */

.spec-fade {
  position: absolute;

  z-index: 40;

  top: 0;
  bottom: 0;

  width: 100px;

  pointer-events: none;
}


.spec-fade-left {
  left: 0;

  background:
    linear-gradient(
      90deg,
      #e5ecdb,
      rgba(229,236,219,.78),
      transparent
    );
}


.spec-fade-right {
  right: 0;

  background:
    linear-gradient(
      270deg,
      #e5ecdb,
      rgba(229,236,219,.78),
      transparent
    );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  .spec {
    padding:
      65px 0 80px;
  }


  .spec-heading-wrap {
    margin-bottom: 32px;
  }


  .spec-track {
  --gap: 18px;

  gap: var(--gap);

  animation-duration: 29s;
}


  .spec-card {
    flex-basis: 235px;

    min-height: 300px;
  }


  .spec-card-image {
    height: 150px;
  }


  .spec-card-body {
    min-height: 150px;
  }


  .spec-card h3 {
    font-size: 19px;
  }


  .spec-fade {
    width: 55px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .spec {
    padding:
      52px 0 65px;
  }


  .spec-heading-wrap {
    width:
      calc(100% - 36px);

    margin-bottom: 25px;
  }


  .spec .heading {
    gap: 12px;
  }


  .spec .heading span {
    max-width: 55px;
  }


  .spec h2 {
    font-size:
      clamp(29px, 8vw, 38px);

    white-space: nowrap;
  }


  .spec-track {
  --gap: 14px;

  gap: var(--gap);

  padding: 0;

  animation-duration: 25s;
}


  .spec-card {
    flex-basis: 210px;

    min-height: 282px;

    border-radius: 14px;
  }


  .spec-card-image {
    height: 135px;
  }


  .spec-card-body {
    min-height: 147px;

    padding:
      16px 14px 18px;
  }


  .spec-card h3 {
    font-size: 18px;

    margin-bottom: 13px;
  }


  .spec-card-arrow {
    width: 29px;
    height: 29px;
  }


  /*
    Mobile-la hover illa;
    press/touch-ku over-zoom vendam.
  */

  .spec-card:hover {
    transform:
      translateY(-5px)
      scale(1.015);
  }


  .spec-fade {
    width: 28px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */



/* =========================================================
   GARLAND BANNER — SCREENSHOT MATCH
========================================================= */

.garland-banner {
  position: relative;

  width: 100%;
  height: 445px;

  overflow: hidden;

  border: 1px solid #d6ad57;

  background:
    radial-gradient(
      circle at 67% 45%,
      rgba(255, 255, 255, .55),
      transparent 30%
    ),
    linear-gradient(
      90deg,
      #fff8ea 0%,
      #fff3dd 48%,
      #f6e3c5 100%
    );
}


/* =========================================================
   CONTENT
========================================================= */

.garland-copy {
  position: absolute;

  z-index: 10;

  left: 10%;
  top: 50%;

  width: 310px;

  transform: translateY(-50%);
}


.garland-label {
  display: block;

  margin-bottom: 7px;

  color: #bc8b39;

  font-family: "Montserrat", sans-serif;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2px;
}


/* HEADING */

.garland-copy h2 {
  margin: 0;

  color: #103c31;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 25px;

  font-weight: 700;

  line-height: .98;

  letter-spacing: -.5px;
}


.garland-copy h2 em {
  display: inline-block;

  margin-left: 5px;

  color: #ef572a;

  font-family:
    "Yellowtail",
    cursive;

  font-size: 32px;

  font-weight: 400;

  line-height: .8;

  transform:
    translateY(4px)
    rotate(-4deg);
}


/* DESCRIPTION */

.garland-copy p {
  margin: 10px 0 9px;

  color: #263d36;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 8.5px;

  font-weight: 500;

  line-height: 1.35;
}


/* =========================================================
   BUTTON
========================================================= */

.garland-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  height: 28px;

  padding: 0 18px;

  border-radius: 4px;

  background: #0b4938;

  color: #fff8e8;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 8px;

  font-weight: 700;

  text-decoration: none;

  box-shadow:
    0 4px 10px
    rgba(14, 65, 49, .15);

  transition:
    transform .25s ease,
    background .25s ease;
}


.garland-button span {
  color: #d9ad4e;

  font-size: 12px;
}


.garland-button:hover {
  background: #0f5945;

  transform: translateY(-2px);
}


/* =========================================================
   GARLAND PRODUCTS
========================================================= */

.garland-products {
  position: absolute;

  z-index: 5;

  top: -5px;
  bottom: 0;

  left: 30%;
  right: 4%;

  display: flex;

  align-items: flex-start;
  justify-content: center;

  gap: 4px;
}


.garland-products img {
  width: auto;

  height: 195px;

  object-fit: contain;

  transform-origin: top center;

  filter:
    drop-shadow(
      0 6px 4px
      rgba(69, 46, 25, .12)
    );
}


/* Different natural heights */

.garland-products img:nth-child(1) {
  height: 185px;
}

.garland-products img:nth-child(2) {
  height: 190px;
}

.garland-products img:nth-child(3) {
  height: 198px;
}

.garland-products img:nth-child(4) {
  height: 190px;
}

.garland-products img:nth-child(5) {
  height: 196px;
}


/* =========================================================
   DECORATIONS
========================================================= */

.garland-lotus {
  position: absolute;

  z-index: 4;

  top: 5px;
  left: 5%;

  width: 65px;

  object-fit: contain;
}


.garland-left-leaves {
  position: absolute;

  z-index: 3;

  left: 0;
  top: 60px;

  width: 65px;
}


.garland-left-pattern {
  position: absolute;

  z-index: 2;

  left: -10px;
  bottom: -12px;

  width: 105px;

  opacity: .45;
}


.garland-right-leaves {
  position: absolute;

  z-index: 4;

  right: -3px;
  top: 273px;

  /* IMAGE SIZE */
  width: 180px;
  height: auto;

  /* animation pivot */
  transform-origin: right bottom;

  /* realistic depth */
  filter:
    drop-shadow(0 7px 8px rgba(55, 45, 20, 0.14));

  pointer-events: none;

  animation:
    rightFlowerSway 5s ease-in-out infinite;
}


/* Natural wind movement */
@keyframes rightFlowerSway {

  0% {
    transform:
      rotate(0deg)
      translateX(0)
      translateY(0);
  }

  25% {
    transform:
      rotate(-1.5deg)
      translateX(-2px)
      translateY(-1px);
  }

  50% {
    transform:
      rotate(1.8deg)
      translateX(2px)
      translateY(1px);
  }

  75% {
    transform:
      rotate(-0.8deg)
      translateX(-1px)
      translateY(0);
  }

  100% {
    transform:
      rotate(0deg)
      translateX(0)
      translateY(0);
  }
}


.garland-bottom-flowers {
  position: absolute;

  z-index: 6;

  right: 0;
  bottom: 0;

  width: 145px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .garland-copy {
    left: 6%;

    width: 280px;
  }


  .garland-products {
    left: 42%;
    right: 3%;
  }


  .garland-products img {
    max-width: 19%;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .garland-banner {
    height: 430px;
  }


  .garland-copy {
    top: 55px;
    left: 30px;

    width: calc(100% - 60px);

    transform: none;

    text-align: center;
  }


  .garland-copy h2 {
    font-size: 28px;
  }


  .garland-copy h2 em {
    font-size: 35px;
  }


  .garland-copy p {
    font-size: 10px;
  }


  .garland-products {
    top: auto;

    left: 15px;
    right: 15px;
    bottom: -10px;

    height: 210px;
  }


  .garland-products img {
    max-width: 19%;

    height: 190px !important;
  }


  .garland-lotus {
    left: 10px;
  }


  .garland-right-leaves {
    width: 70px;
  }

}

/* =========================================================
   OCCASIONS - PREMIUM 3D SCROLLING CARDS
========================================================= */

.occ {
  position: relative;
  padding: 90px 0 95px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 70% 40%,
      rgba(255,255,255,.85),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #fffaf0 0%,
      #fdf8ec 55%,
      #f8eedc 100%
    );
}


/* MAIN GRID */

.occ-in {
  display: grid;

  grid-template-columns:
    minmax(260px, .72fr)
    minmax(0, 2.28fr);

  gap: 50px;

  align-items: center;
}


/* LEFT CONTENT */

.occ .reveal {
  position: relative;
  z-index: 5;
}


.occ .eyebrow {
  margin-bottom: 18px;

  color: #c49332;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .30em;

  text-transform: uppercase;
}


.occ h2 {
  margin: 0;

  max-width: 330px;

  color: #0e4938;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(40px, 3.4vw, 51px);

  font-weight: 600;

  line-height: .98;

  letter-spacing: -.025em;
}


/* =========================================================
   SCROLL WINDOW
========================================================= */

.occ-in > div:last-child {
  min-width: 0;
  position: relative;

  perspective: 1400px;
}


.occ-rail {
  display: flex;

  gap: 22px;

  overflow-x: auto;
  overflow-y: visible;

  padding:
    38px
    8px
    45px;

scroll-behavior: auto;
scroll-snap-type: none;

  scrollbar-width: none;

  perspective: 1400px;
}


.occ-rail::-webkit-scrollbar {
  display: none;
}


/* =========================================================
   CARD
========================================================= */

.occ-item {
  position: relative;

  flex:
    0 0
    clamp(205px, 15vw, 245px);

  min-height: 225px;

  padding-bottom: 18px;

  border-radius: 18px;

  background:
    rgba(255,255,255,.38);

  text-align: center;

  scroll-snap-align: center;

  transform:
    perspective(1000px)
    rotateY(0deg)
    rotateX(0deg)
    translateY(0)
    scale(1);

  transform-style: preserve-3d;

  transition:
    transform .55s cubic-bezier(.2,.8,.2,1),
    box-shadow .55s ease,
    background .45s ease;

  cursor: pointer;

  isolation: isolate;
}


/* GOLD BORDER */

.occ-item::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 5;

  border-radius: inherit;

  border:
    1px solid
    rgba(198,156,65,0);

  pointer-events: none;

  transition:
    border-color .4s ease;
}


/* LIGHT SWEEP */

.occ-item::after {
  content: "";

  position: absolute;

  z-index: 4;

  top: -30%;
  left: -85%;

  width: 45%;
  height: 150%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.55),
      transparent
    );

  transform: rotate(15deg);

  pointer-events: none;

  transition:
    left .8s
    cubic-bezier(.2,.8,.2,1);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.occ-item img {
  width: 100%;
  height: 155px;

  object-fit: cover;

  border-radius: 16px;

  box-shadow:
    0 12px 25px
    rgba(28,56,43,.12);

  transform:
    translateZ(28px)
    scale(1.001);

  transition:
    transform .7s cubic-bezier(.2,.8,.2,1),
    filter .5s ease,
    box-shadow .5s ease;
}


/* TITLE */

.occ-item p {
  margin:
    16px
    8px
    0;

  color: #0d4938;

  font-family:
    "Jost",
    sans-serif;

  font-size: 16px;
  font-weight: 650;

  line-height: 1.3;

  transform:
    translateZ(35px);

  transition:
    color .35s ease,
    transform .45s ease;
}


/* =========================================================
   3D HOVER
========================================================= */

.occ-item:hover {
  z-index: 20;

  background:
    rgba(255,255,255,.72);

  transform:
    perspective(1000px)
    translateY(-15px)
    rotateX(4deg)
    rotateY(-4deg)
    scale(1.055);

  box-shadow:
    0 30px 55px
    rgba(27,55,43,.18),
    0 8px 20px
    rgba(27,55,43,.08);
}


.occ-item:hover::before {
  border-color:
    rgba(198,156,65,.50);
}


.occ-item:hover::after {
  left: 135%;
}


.occ-item:hover img {
  transform:
    translateZ(45px)
    scale(1.08);

  filter:
    saturate(1.08)
    contrast(1.03);

  box-shadow:
    0 20px 35px
    rgba(20,55,42,.20);
}


.occ-item:hover p {
  color: #e8551f;

  transform:
    translateZ(50px)
    translateY(-2px);
}


/* =========================================================
   AUTO SCROLL ACTIVE CARD FEEL
========================================================= */

.occ-item.occ-active {
  transform:
    perspective(1000px)
    translateY(-8px)
    scale(1.025);

  box-shadow:
    0 20px 38px
    rgba(30,60,47,.12);
}


/* =========================================================
   NAV BUTTONS
========================================================= */

.rail-nav {
  display: flex;

  justify-content: flex-end;

  gap: 12px;

  margin-top: 2px;
}


.rail-nav button {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid
    rgba(15,59,46,.18);

  background:
    rgba(255,255,255,.72);

  color: #0f3b2e;

  font-size: 20px;

  cursor: pointer;

  box-shadow:
    0 6px 16px
    rgba(20,50,38,.06);

  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease,
    box-shadow .3s ease;
}


.rail-nav button:hover {
  color: #fff;

  background: #0f3b2e;

  transform:
    translateY(-3px)
    scale(1.08);

  box-shadow:
    0 12px 25px
    rgba(15,59,46,.18);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .occ-in {
    grid-template-columns:
      250px
      minmax(0,1fr);

    gap: 30px;
  }

  .occ-item {
    flex-basis: 210px;
  }

}


@media (max-width: 760px) {

  .occ {
    padding:
      65px
      0
      70px;
  }


  .occ-in {
    display: block;
  }


  .occ .reveal {
    margin-bottom: 25px;

    text-align: center;
  }


  .occ h2 {
    margin-inline: auto;

    font-size:
      clamp(38px, 10vw, 48px);
  }


  .occ-rail {
    gap: 15px;

    padding:
      28px
      5px
      35px;
  }


  .occ-item {
    flex-basis: 200px;
  }


  .occ-item img {
    height: 140px;
  }


  .rail-nav {
    justify-content: center;
  }

}

/* =========================================================
   BUILD MENU - COMPACT PREMIUM BANNER
========================================================= */

.build {
  padding: 26px 0 60px;
  background: var(--cream);
}


/* MAIN CARD */

.build-box {
  position: relative;

   min-height: 220px;

  display: grid;

  grid-template-columns:
    250px
    300px
    minmax(0, 1fr);

  align-items: stretch;

  overflow: hidden;

  border-radius: 15px;

  background:
    linear-gradient(
      110deg,
      #0a4436 0%,
      #0c4a39 55%,
      #0a4033 100%
    );

  color: var(--cream);

  box-shadow:
    0 14px 30px
    rgba(11, 60, 47, .14);
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.build-box > img {
  width: 100%;
  height: 170px;

  min-height: 0;

  object-fit: cover;
  object-position: center;

  border-radius:
    15px
    0
    0
    15px;
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.build-copy {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    20px
    26px;

  border-right:
    1px solid
    rgba(224, 181, 79, .30);
}


.build-copy h2 {
  margin: 0;

  color: #fffaf0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(25px, 2vw, 32px);

  font-weight: 600;

  line-height: 1.02;
}


.build-copy h2 .script {
  display: inline-block;

  margin-left: 4px;

  color: #ef642c;

  font-family:
    "Yellowtail",
    cursive;

  font-size: 1.12em;

  font-weight: 400;
}


.build-copy p {
  max-width: 260px;

  margin:
    10px
    0
    0;

  color:
    rgba(255, 250, 240, .78);

  font-size: 15px;

  line-height: 1.45;
}


/* =========================================================
   RIGHT STEPS
========================================================= */

.steps {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  align-items: center;

  gap: 8px;

  padding:
    20px
    28px
    18px;

  border-left: 0;

  flex-wrap: unset;
}


/* EACH STEP */

.step {
  position: relative;

  min-width: 0;

  text-align: center;

  flex: unset;
}


/* connector dotted line */

.step:not(:nth-child(4))::after {
  content: "";

  position: absolute;

  top: 12px;
  left: calc(50% + 25px);

  width: calc(100% - 50px);
  height: 1px;

  border-top:
    1px dashed
    rgba(221, 179, 74, .60);
}


/* ICON */

.step .ico {
  position: relative;
  z-index: 3;

  width: 28px;
  height: 28px;

  margin:
    0
    auto
    5px;

  display: grid;
  place-items: center;

  color: #d4a63f;

  font-size: 18px;

  background: #0a4436;
}


/* TEXT */

.step p {
  margin: 0;

  color: #fffaf0;

  font-size: 11px;

  font-weight: 500;

  line-height: 1.2;
}


/* =========================================================
   BUTTON
========================================================= */

.steps .cta-row {
  grid-column: 1 / -1;

  margin-top: 8px;

  text-align: center;

  flex-basis: auto;
}


.steps .btn-gold {
  min-height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  padding:
    0
    22px;

  border-radius: 5px;

  border:
    1px solid
    rgba(207, 165, 66, .45);

  background:
    #f7daa0;

  color: #153f33;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .03em;

  text-transform: uppercase;

  box-shadow:
    0 5px 12px
    rgba(0, 0, 0, .12);

  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}


.steps .btn-gold:hover {
  background: #fff0c8;

  transform:
    translateY(-2px);

  box-shadow:
    0 9px 18px
    rgba(0,0,0,.16);
}


.steps .btn-gold .arrow {
  font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .build-box {
    grid-template-columns:
      220px
      270px
      1fr;
  }

  .steps {
    padding:
      18px
      18px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .build-box {
    grid-template-columns: 1fr;

    min-height: auto;
  }


  .build-box > img {
    width: 100%;
    height: 190px;

    border-radius:
      15px
      15px
      0
      0;
  }


  .build-copy {
    padding:
      24px
      22px;

    text-align: center;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(224,181,79,.22);
  }


  .build-copy p {
    margin-left: auto;
    margin-right: auto;
  }


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

    gap:
      20px
      12px;

    padding:
      25px
      20px;
  }


  .step::after {
    display: none;
  }

}

/* =========================================================
   PREMIUM 3D FOOTER
========================================================= */

.footer-premium {
  position: relative;

  overflow: hidden;

  padding:
    70px
    0
    0;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(31, 105, 77, .18),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(201, 157, 54, .09),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #062b21 0%,
      #073327 48%,
      #05271f 100%
    );

  color: #fdf8ec;

  perspective: 1400px;

  isolation: isolate;
}


/* TOP GOLD LINE */

.footer-premium::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(207,164,64,.35),
      #d4aa47,
      rgba(207,164,64,.35),
      transparent
    );
}


/* BACKGROUND DOT TEXTURE */

.footer-premium::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -2;

  pointer-events: none;

  opacity: .035;

  background-image:
    radial-gradient(
      circle,
      #ffffff 1px,
      transparent 1px
    );

  background-size:
    26px
    26px;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.footer-glow {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(35px);

  opacity: .35;
}


.footer-glow-one {
  left: -230px;
  top: -220px;

  background:
    rgba(40, 138, 100, .25);
}


.footer-glow-two {
  right: -250px;
  bottom: -260px;

  background:
    rgba(201, 157, 54, .16);
}


/* =========================================================
   GRID
========================================================= */

.footer-inner {
  position: relative;
  z-index: 5;
}


.foot-grid {
  display: grid;

  /*
    Unga HTML-la 4 columns thaan.
    So 5-column old CSS fix panniruken.
  */

  grid-template-columns:
    1.35fr
    1fr
    1fr
    1.25fr;

  gap:
    clamp(30px, 4vw, 70px);

  align-items: stretch;
}


/* =========================================================
   EACH FOOTER COLUMN - 3D
========================================================= */

.footer-card {
  position: relative;

  padding:
    22px
    20px;

  border-radius: 16px;

  border:
    1px solid
    rgba(255, 255, 255, 0);

  transform:
    perspective(900px)
    rotateX(0)
    rotateY(0)
    translateZ(0);

  transform-style: preserve-3d;

  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    background .45s ease,
    border-color .45s ease,
    box-shadow .5s ease;
}


/* CARD LIGHT */

.footer-card::before {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  pointer-events: none;

  opacity: 0;

  background:
    radial-gradient(
      circle at var(--footer-x, 50%)
                var(--footer-y, 50%),
      rgba(238, 194, 87, .14),
      transparent 48%
    );

  transition:
    opacity .35s ease;
}


/* 3D HOVER */

.footer-card:hover {
  transform:
    perspective(900px)
    translateY(-8px)
    translateZ(18px)
    rotateX(2deg);

  border-color:
    rgba(211, 170, 72, .20);

  background:
    rgba(255,255,255,.025);

  box-shadow:
    0 22px 45px
    rgba(0,0,0,.17);
}


.footer-card:hover::before {
  opacity: 1;
}


/* =========================================================
   LOGO
========================================================= */

.footer-logo {
  display: inline-block;

  transform:
    translateZ(35px);
}


.footer-logo img {
  width: auto;
  height: 120px;

  padding: 6px;

  border-radius: 14px;

  background:
    rgba(255,255,255,.055);

  object-fit: contain;

  box-shadow:
    0 10px 25px
    rgba(0,0,0,.12);

  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    box-shadow .5s ease;
}


.footer-card:hover
.footer-logo img {
  transform:
    translateY(-4px)
    rotateY(-7deg)
    scale(1.05);

  box-shadow:
    0 16px 30px
    rgba(0,0,0,.20);
}


/* DESCRIPTION */

.footer .about-txt {
  max-width: 340px;

  margin:
    21px
    0
    0;

  color:
    rgba(253,248,236,.72);

  font-size: 20px;

  line-height: 1.75;
}


/* =========================================================
   HEADINGS
========================================================= */

.footer h4 {
  position: relative;

  display: inline-block;

  margin:
    0
    0
    25px;

  color: #fffaf0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 24px;

  font-weight: 600;

  transform:
    translateZ(28px);
}


/* GOLD HEADING LINE */

.footer h4::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -9px;

  width: 28px;
  height: 2px;

  border-radius: 20px;

  background: #d1a442;

  transition:
    width .4s
    cubic-bezier(.2,.8,.2,1);
}


.footer-card:hover h4::after {
  width: 58px;
}


/* =========================================================
   LINKS
========================================================= */

.footer ul {
  margin: 0;
  padding: 0;

  list-style: none;
}


.footer-links li {
  margin-bottom: 12px;
}


.footer-links a {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color:
    rgba(253,248,236,.74);

  font-size: 18px;

  transition:
    transform .3s ease,
    color .3s ease;
}


.footer-arrow {
  color: #d1a442;

  font-size: 19px;

  transition:
    transform .3s ease;
}


.footer-links a:hover {
  color: #fff;

  transform:
    translateX(6px);
}


.footer-links a:hover
.footer-arrow {
  transform:
    translateX(4px);
}


/* =========================================================
   CONTACT
========================================================= */

.foot-contact li {
  display: flex;

  align-items: center;

  gap: 11px;

  margin-bottom: 13px;

  color:
    rgba(253,248,236,.76);

  font-size: 18px;
}


.foot-contact a {
  transition:
    color .3s ease,
    transform .3s ease;
}


.foot-contact a:hover {
  color: #e4ba59;
}


/* CONTACT ICON */

.contact-icon {
  width: 30px;
  height: 30px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid
    rgba(211,170,72,.30);

  color: #d9ad4e;

  background:
    rgba(255,255,255,.025);

  font-size: 18px;

  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    background .35s ease,
    color .35s ease,
    box-shadow .35s ease;
}


.foot-contact li:hover
.contact-icon {
  color: #073327;

  background: #d5aa48;

  transform:
    rotateY(180deg)
    scale(1.08);

  box-shadow:
    0 0 22px
    rgba(213,170,72,.25);
}


/* =========================================================
   SOCIAL MEDIA - ORIGINAL ICONS
========================================================= */

.socials {
  display: flex;

  align-items: center;

  gap: 11px;

  margin-top: 24px;
}


.socials a {
  position: relative;

  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border-radius: 50%;

  border:
    1px solid
    rgba(255,255,255,.10);

  background:
    rgba(255,255,255,.065);

  color: #fff;

  font-size: 17px;

  box-shadow:
    inset 0 1px 1px
    rgba(255,255,255,.06);

  transform:
    perspective(500px)
    translateZ(0);

  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    background .35s ease,
    border-color .35s ease,
    box-shadow .4s ease;
}


/* shiny reflection */

.socials a::before {
  content: "";

  position: absolute;

  top: -35%;
  left: -80%;

  width: 40%;
  height: 170%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.65),
      transparent
    );

  transform:
    rotate(20deg);

  transition:
    left .7s
    cubic-bezier(.2,.8,.2,1);
}


.socials a:hover::before {
  left: 140%;
}


/* GENERAL 3D HOVER */

.socials a:hover {
  transform:
    perspective(500px)
    translateY(-7px)
    rotateX(12deg)
    rotateY(-8deg)
    scale(1.12);
}


/* FACEBOOK */

.social-facebook:hover {
  background: #1877f2;

  border-color:
    rgba(255,255,255,.3);

  box-shadow:
    0 13px 25px
    rgba(24,119,242,.28);
}


/* INSTAGRAM */

.social-instagram:hover {
  background:
    linear-gradient(
      135deg,
      #833ab4,
      #fd1d1d,
      #fcb045
    );

  box-shadow:
    0 13px 25px
    rgba(225,48,108,.25);
}


/* WHATSAPP */

.social-whatsapp:hover {
  background: #25d366;

  box-shadow:
    0 13px 25px
    rgba(37,211,102,.25);
}


/* YOUTUBE */

.social-youtube:hover {
  background: #ff0000;

  box-shadow:
    0 13px 25px
    rgba(255,0,0,.24);
}


/* icon itself */

.socials i {
  position: relative;
  z-index: 3;

  transition:
    transform .45s
    cubic-bezier(.2,.8,.2,1);
}


.socials a:hover i {
  transform:
    scale(1.12)
    rotateY(360deg);
}


/* =========================================================
   BOTTOM COPYRIGHT
========================================================= */

.footer-bottom {
  position: relative;

  margin-top: 45px;

  min-height: 75px;

  display: flex;

  align-items: center;
  justify-content: center;
}


.footer-bottom-line {
  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.14),
      rgba(211,170,72,.32),
      rgba(255,255,255,.14),
      transparent
    );
}


.footer-bottom p {
  margin: 0;

  color:
    rgba(253,248,236,.55);

  font-size: 13px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.footer-up {
  position: absolute;

  right: 0;

  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid
    rgba(211,170,72,.32);

  background:
    rgba(255,255,255,.04);

  color: #d9ae4e;

  font-size: 18px;

  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    background .35s ease,
    color .35s ease,
    box-shadow .4s ease;
}


.footer-up:hover {
  color: #083327;

  background: #d6aa49;

  transform:
    translateY(-6px)
    rotate(-8deg)
    scale(1.08);

  box-shadow:
    0 12px 25px
    rgba(214,170,73,.20);
}


/* =========================================================
   FOOTER ENTRANCE
========================================================= */

.footer-card {
  opacity: 0;

  transform:
    perspective(900px)
    translateY(35px)
    rotateX(7deg);

  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.2,.8,.2,1),
    background .45s ease,
    border-color .45s ease,
    box-shadow .5s ease;
}


.footer-premium.footer-visible
.footer-card {
  opacity: 1;

  transform:
    perspective(900px)
    translateY(0)
    rotateX(0);
}


.footer-premium.footer-visible
.footer-card:nth-child(2) {
  transition-delay: .10s;
}


.footer-premium.footer-visible
.footer-card:nth-child(3) {
  transition-delay: .20s;
}


.footer-premium.footer-visible
.footer-card:nth-child(4) {
  transition-delay: .30s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

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

    gap: 30px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .footer-premium {
    padding-top: 48px;
  }


  .foot-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }


  .footer-card {
    padding:
      20px
      10px;
  }


  .footer-bottom {
    padding:
      20px
      55px
      20px
      0;

    justify-content: flex-start;
  }


  .footer-bottom p {
    font-size: 15px;
  }


  .footer-up {
    right: 0;
  }

}

/* reveal animation */
.reveal{opacity:0;transform:translateY(26px);transition:.7s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}

/* ---------- responsive ---------- */
@media (max-width:1100px){
  .nav{
    display:flex;
    align-items:center;
    gap:2rem;
    margin:0 auto;
}
  .burger{display:block}
  .header-cta{display:none}
  .nav.open{
    display:flex;flex-direction:column;align-items:flex-start;gap:.2rem;
    position:absolute;left:0;right:0;top:82px;background:var(--cream);
    padding:16px 20px 22px;box-shadow:var(--shadow);
  }
  .nav.open a{width:100%;padding:.75rem 0;border-bottom:1px solid rgba(15,59,46,.08)}
  
  .build-box{grid-template-columns:1fr 1fr}
  .build-box img{grid-column:1/-1;max-height:200px;width:100%}
  .steps{border-left:0;border-top:1px solid rgba(253,248,236,.18)}
}
@media (max-width:860px){
  .hero{grid-template-columns:1fr}
  .hero-copy{padding:46px 20px 30px;text-align:center}
  .hero p{margin-left:auto;margin-right:auto}
  .hero-actions,.hero-loc,.badge30{justify-content:center}
  .hero-loc{justify-content:center}
  .hero-media{min-height:300px;order:-1}
  .hero-media::after{background:linear-gradient(0deg,var(--cream) 0%,transparent 45%)}
  .stats-in{grid-template-columns:1fr 1fr;gap:18px}
  .stat:nth-child(2n){border-right:0}
  .about-in,.garland-in,.occ-in,.build-box{grid-template-columns:1fr}
  .collage{height:390px}
  .garland-copy{padding:44px 0 10px;text-align:center}
  .garland p{margin-left:auto;margin-right:auto}
  .garland .btn{margin-bottom:30px}
  .garland-img img{border-radius:12px}
  .occ-in{text-align:center}
  .ticks{grid-template-columns:1fr;text-align:left}
  .build-box img{max-height:180px}
}
@media (max-width:560px){
 
  .hero h1{font-size:2.1rem}
  .brand img{height:42px}
  .occ-item{flex:0 0 140px}
  .steps{padding:26px 20px}
}


/* ==============================
   30 YEARS BADGE
============================== */

.badge30 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;

  gap: 12px;

  width: max-content;
  margin-bottom: 30px;
}


/* TEXT */

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 1px;

  font-family: "Jost", sans-serif;

  font-size: 15px;
  font-weight: 700;

  line-height: 1.3;

  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: #183c32;
}

.badge-text span {
  display: block;
  white-space: nowrap;
}


/* LAUREL IMAGE */

.badge-laurel {
  width: 32px;
  height: 42px;

  object-fit: contain;

  flex-shrink: 0;
}


/* LEFT IMAGE */

.badge-laurel-left {
  transform: none;
}


/* SAME IMAGE MIRRORED FOR RIGHT SIDE */

.badge-laurel-right {
  transform: none;
}


/* ==============================
   TABLET
============================== */

@media (max-width: 1024px) {

  .badge30 {
    gap: 10px;
  }

  .badge-laurel {
    width: 28px;
    height: 38px;
  }

  .badge-text {
    font-size: 10px;
    letter-spacing: 0.17em;
  }
}


/* ==============================
   MOBILE
============================== */

@media (max-width: 760px) {

  .badge30 {
    margin-left: auto;
    margin-right: auto;

    justify-content: center;

    gap: 8px;
  }

  .badge-laurel {
    width: 25px;
    height: 34px;
  }

  .badge-text {
    font-size: 9px;
    letter-spacing: 0.14em;
  }
}


/* =========================================
   ABOUT COLLAGE - FINAL POSITION
========================================= */

.about-visual {
  position: relative;

  width: 100%;
  max-width: 570px;
  height: 440px;

  margin-inline: auto;

  perspective: 1400px;
}


/* MAIN IMAGE */

.about-photo-main {
  z-index: 2;

  width: 70%;
  height: 310px;

  left: 2%;
  top: 58px;

  transform: rotate(-3deg);
}


/* TEAM IMAGE */

.about-photo-team {
  z-index: 5;

  width: 38%;
  height: 175px;

  right: 3%;
  top: 82px;

  transform: rotate(2.5deg);
}


/* FOOD IMAGE */

.about-photo-food {
  z-index: 6;

  width: 39%;
  height: 180px;

  right: 14%;
  bottom: 3px;

  transform: rotate(-1.5deg);
}


/* =========================================
   SMOOTH CARD MOTION
========================================= */

.about-photo {
  cursor: pointer;

  transform-origin: center;

  transition:
    transform .6s cubic-bezier(.2,.8,.2,1),
    opacity .45s ease,
    filter .45s ease,
    box-shadow .45s ease;
}


/* =========================================
   TEAM IMAGE HOVER
========================================= */

.about-photo-team:hover {
  z-index: 30;

  transform:
    translate(-70px, 70px)
    scale(1.48)
    rotate(-1deg);

  box-shadow:
    0 35px 75px rgba(15,59,46,.24);
}


/* dim other images */

.about-visual:has(.about-photo-team:hover)
.about-photo-main {
  transform:
    rotate(-4deg)
    scale(.94)
    translateX(-12px);

  opacity: .35;
  filter: blur(2px);
}


.about-visual:has(.about-photo-team:hover)
.about-photo-food {
  transform:
    rotate(2deg)
    scale(.90)
    translate(12px, 12px);

  opacity: .30;
  filter: blur(2px);
}


/* =========================================
   FOOD IMAGE HOVER
========================================= */

.about-photo-food:hover {
  z-index: 30;

  transform:
    translate(-70px, -105px)
    scale(1.48)
    rotate(1deg);

  box-shadow:
    0 35px 75px rgba(15,59,46,.24);
}


.about-visual:has(.about-photo-food:hover)
.about-photo-main {
  transform:
    rotate(-4deg)
    scale(.94)
    translateX(-12px);

  opacity: .35;
  filter: blur(2px);
}


.about-visual:has(.about-photo-food:hover)
.about-photo-team {
  transform:
    rotate(4deg)
    scale(.90)
    translate(12px, -8px);

  opacity: .30;
  filter: blur(2px);
}


/* =========================================
   MAIN IMAGE HOVER
========================================= */

.about-photo-main:hover {
  z-index: 20;

  transform:
    rotate(-1deg)
    scale(1.025);

  box-shadow:
    0 30px 65px rgba(15,59,46,.20);
}


/* =========================================
   IMAGE INTERNAL ZOOM
========================================= */

.about-photo img {
  transition:
    transform .7s cubic-bezier(.2,.8,.2,1);
}

.about-photo:hover img {
  transform: scale(1.04);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {

  .about-photo-team:hover {
    transform:
      rotate(2deg)
      scale(1.05);
  }

  .about-photo-food:hover {
    transform:
      rotate(-1deg)
      scale(1.05);
  }

  .about-visual:has(.about-photo:hover)
  .about-photo-main,

  .about-visual:has(.about-photo:hover)
  .about-photo-team,

  .about-visual:has(.about-photo:hover)
  .about-photo-food {
    opacity: 1;
    filter: none;
  }

}


/* =========================================================
   GARLAND CONTENT - LARGE SECTION PROPORTION
========================================================= */

.garland-copy {
  position: absolute;
  z-index: 10;

  left: 10%;
  top: 50%;

  width: 520px;

  transform: translateY(-50%);
}


/* WEDDING TRADITIONS */

.garland-label {
  display: block;

  margin-bottom: 14px;

  color: #c18b2f;

  font-family: "Montserrat", sans-serif;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 4px;

  text-transform: uppercase;
}


/* MAIN HEADING */

.garland-copy h2 {
  margin: 0;

  color: #0b4938;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: clamp(44px, 3.2vw, 62px);

  font-weight: 700;

  line-height: 0.98;

  letter-spacing: -1.5px;
}


/* MOMENTS */

.garland-copy h2 em {
  display: inline-block;

  margin-left: 8px;

  color: #ef572a;

  font-family:
    "Yellowtail",
    cursive;

  font-size: 1.12em;

  font-weight: 400;

  line-height: .8;

  transform:
    translateY(7px)
    rotate(-4deg);
}


/* DESCRIPTION */

.garland-copy p {
  max-width: 430px;

  margin: 24px 0 26px;

  color: #43524c;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.7;
}


/* =========================================================
   BUTTON
========================================================= */

.garland-button {
  min-width: 205px;
  height: 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  padding: 0 25px;

  border-radius: 5px;

  background: #0b4938;

  color: #fff9eb;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .5px;

  text-decoration: none;

  box-shadow:
    0 10px 25px
    rgba(11, 73, 56, .18);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}


/* ARROW */

.garland-button span {
  color: #d9ad4e;

  font-size: 18px;

  transition:
    transform .3s ease;
}


/* BUTTON HOVER */

.garland-button:hover {
  background: #0e5944;

  transform: translateY(-3px);

  box-shadow:
    0 14px 30px
    rgba(11, 73, 56, .25);
}


.garland-button:hover span {
  transform: translateX(5px);
}


/* ==========================================
   GARLAND - 2 MALA VISIBLE RUNNING LOOP
========================================== */

@media (min-width: 901px) {

  /* WINDOW - 2 MALA MATTUM THERIYUM */
  .garland-products {
    position: absolute !important;

    top: px !important;
    bottom: auto !important;

    left: 40% !important;
    right: 3% !important;

    height: 450px !important;

    display: block !important;

    overflow: hidden !important;

    z-index: 5 !important;
  }


  /* ALL PAIRS MOVE INSIDE THIS */
  .garland-running-track {
    display: flex;

    width: 400%;
    height: 100%;

    animation:
      garlandTwoRun
      12s
      ease-in-out
      infinite;
  }


  /* ONE SCREEN = 2 MALA */
  .garland-pair {
    flex: 0 0 25%;

    width: 25%;
    height: 100%;

    display: flex;

    align-items: flex-start;
    justify-content: center;

    gap: 70px;
  }


  /* SAME OLD MALA SIZE */
  .garland-pair img {
    width: auto !important;
    max-width: none !important;

    height: 205px !important;

    object-fit: contain !important;

    flex-shrink: 0 !important;
  }


  .garland-pair img:nth-child(1) {
    height: 330px !important;
  }


  .garland-pair img:nth-child(2) {
    height: 330px !important;
  }

}


.garland-pair img {
  position: relative !important;
  top: 65px !important;
}
/* ==========================================
   RUNNING
========================================== */

@keyframes garlandTwoRun {

  /* FIRST 2 */
  0%,
  22% {
    transform: translateX(0);
  }

  /* SECOND 2 */
  28%,
  50% {
    transform: translateX(-25%);
  }

  /* THIRD 2 */
  56%,
  78% {
    transform: translateX(-50%);
  }

  /* DUPLICATE FIRST 2 */
  84%,
  100% {
    transform: translateX(-75%);
  }

}


/* GARLAND BOTTOM FLOWER - CREATIVE ANIMATION */

.garland-bottom-flowers {
  position: absolute;

  left: 50%;
  bottom: -2px;

  width: 180px;
  height: auto;

  z-index: 10;

  transform: translateX(-50%);

  transform-origin: center bottom;

  filter: drop-shadow(0 5px 8px rgba(80, 55, 20, 0.15));

  animation: flowerFloat 4s ease-in-out infinite;
}


/* Soft floating animation */
@keyframes flowerFloat {

  0%,
  100% {
    transform:
      translateX(-50%)
      translateY(0)
      scale(1);
  }

  50% {
    transform:
      translateX(-50%)
      translateY(-6px)
      scale(1.03);
  }

}


/* =========================================
   GARLAND DECORATION - FINAL ANIMATION
========================================= */

/* LOTUS - TOP LEFT */
.garland-lotus {
  position: absolute !important;

  top: 18px !important;
  left: 7% !important;

  width: 72px !important;
  height: auto !important;

  z-index: 10 !important;

  transform-origin: center;

  filter: drop-shadow(0 6px 8px rgba(80, 50, 20, 0.16));

  animation: lotusFloat 4s ease-in-out infinite;
}


/* LEFT SIDE FLOWER */
.garland-left-leaves {
  position: absolute !important;

  left: -10px !important;
  top: 320px !important;

  width: 200px !important;
  height: auto !important;

  z-index: 8 !important;

  transform-origin: left center;

  filter: drop-shadow(3px 5px 6px rgba(80, 50, 20, 0.12));

  animation: leftFlowerSway 5s ease-in-out infinite;
}


/* LOTUS FLOAT */
@keyframes lotusFloat {

  0%,
  100% {
    transform:
      translateY(0)
      rotate(-2deg)
      scale(1);
  }

  50% {
    transform:
      translateY(-7px)
      rotate(2deg)
      scale(1.04);
  }

}


/* LEFT FLOWER SWAY */
@keyframes leftFlowerSway {

  0%,
  100% {
    transform:
      translateX(0)
      rotate(0deg);
  }

  50% {
    transform:
      translateX(5px)
      rotate(3deg);
  }

}

/* =========================================================
   BUILD MENU IMAGE - NO CUT + PREMIUM 3D
========================================================= */

/* LEFT IMAGE AREA */
.build-box > img {
  width: 100% !important;
  height: 100% !important;

  min-height: 220px !important;

  /* IMPORTANT - IMAGE CUT AAGATHU */
  object-fit: contain !important;
  object-position: center center !important;
  transform: scale(10.10);

  padding: 8px;

  background:
    radial-gradient(
      circle at center,
      #0d513f 0%,
      #093c30 100%
    );

  transform:
    perspective(1000px)
    rotateY(0deg)
    rotateX(0deg)
    scale(1);

  transform-origin: center center;

  filter:
    drop-shadow(
      0 14px 15px
      rgba(0,0,0,.18)
    );

  transition:
    transform .7s cubic-bezier(.2,.8,.2,1),
    filter .6s ease;

  animation:
    buildFoodFloat 5s
    ease-in-out
    infinite;
}


/* =========================================
   REALISTIC SOFT FLOAT
========================================= */

@keyframes buildFoodFloat {

  0%,
  100% {
    transform:
      perspective(1000px)
      translateY(0)
      rotateX(0deg)
      rotateY(0deg)
      scale(1);
  }

  50% {
    transform:
      perspective(1000px)
      translateY(-5px)
      rotateX(1.5deg)
      rotateY(-2deg)
      scale(1.015);
  }

}


/* =========================================
   CREATIVE 3D HOVER
========================================= */

.build-box:hover > img {
  transform:
    perspective(1000px)
    translateY(-7px)
    translateX(4px)
    rotateX(3deg)
    rotateY(-5deg)
    scale(1.045);

  filter:
    drop-shadow(
      0 22px 24px
      rgba(0,0,0,.25)
    );
}


/* BUILD BOX DEPTH */

.build-box {
  perspective: 1400px;

  transform-style: preserve-3d;

  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    box-shadow .5s ease;
}


.build-box:hover {
  transform:
    perspective(1400px)
    translateY(-5px)
    rotateX(.7deg);

  box-shadow:
    0 24px 45px
    rgba(8,55,42,.20);
}

/* =========================================================
   BUILD MENU STEPS - PREMIUM LARGE VERSION
========================================================= */

.steps {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  align-items: start;

  gap: 20px;

  padding:
    32px
    38px
    26px;

  overflow: hidden;
}


/* =========================================================
   EACH STEP
========================================================= */

.step {
  position: relative;
  z-index: 5;

  text-align: center;
}


/* =========================================================
   ICON DESIGN
========================================================= */

.step .ico {
  position: relative;

  width: 48px;
  height: 48px;

  margin:
    0
    auto
    10px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #f3c45b;

  font-size: 22px;

  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255,255,255,.12),
      rgba(255,255,255,.03) 55%,
      rgba(0,0,0,.08)
    );

  border:
    1px solid
    rgba(221,174,65,.45);

  box-shadow:
    0 0 0 5px
    rgba(212,166,63,.04),
    0 8px 18px
    rgba(0,0,0,.15);

  transform:
    perspective(500px)
    translateZ(0);

  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    box-shadow .4s ease,
    background .4s ease;
}


/* small inner ring */

.step .ico::before {
  content: "";

  position: absolute;

  inset: 5px;

  border-radius: 50%;

  border:
    1px solid
    rgba(243,196,91,.18);
}


/* icon hover */

.step:hover .ico {
  transform:
    perspective(500px)
    translateY(-5px)
    rotateY(12deg)
    scale(1.12);

  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255,218,130,.25),
      rgba(211,165,60,.08)
    );

  box-shadow:
    0 0 0 8px
    rgba(212,166,63,.05),
    0 14px 28px
    rgba(0,0,0,.20),
    0 0 22px
    rgba(228,183,72,.15);
}


/* =========================================================
   STEP TEXT - BIGGER
========================================================= */

.step p {
  margin: 0;

  color: #fffaf0;

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  font-weight: 600;

  line-height: 1.25;
}


/* =========================================================
   CONNECTOR LINE
========================================================= */

.step:not(:nth-child(4))::after {
  content: "";

  position: absolute;

  top: 24px;

  left: calc(50% + 34px);

  width: calc(100% - 68px);

  height: 1px;

  background:
    repeating-linear-gradient(
      90deg,
      rgba(221,174,65,.55) 0 5px,
      transparent 5px 10px
    );

  z-index: -1;
}


/* =========================================================
   BUTTON
========================================================= */

.steps .cta-row {
  grid-column: 1 / -1;

  margin-top: 22px;

  text-align: center;
}


.custom-menu-btn {
  position: relative;

  min-width: 260px;
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 26px;

  padding:
    0
    28px;

  overflow: hidden;

  border-radius: 7px;

  background:
    linear-gradient(
      135deg,
      #f5d693,
      #ffe5ae
    );

  color: #124638;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .04em;

  box-shadow:
    0 8px 18px
    rgba(0,0,0,.14);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}


.custom-menu-btn:hover {
  transform:
    translateY(-4px)
    scale(1.025);

  box-shadow:
    0 15px 28px
    rgba(0,0,0,.18);
}


/* BUTTON SHINE */

.custom-menu-btn::before {
  content: "";

  position: absolute;

  top: -40%;
  left: -70px;

  width: 35px;
  height: 180%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.85),
      transparent
    );

  transform:
    rotate(18deg);

  transition:
    left .8s ease;
}


.custom-menu-btn:hover::before {
  left: 120%;
}


/* =========================================================
   SPEED LIGHT TRACK
========================================================= */

.menu-light-track {
  position: absolute;

  z-index: 8;

  top: 54px;

  left: 12%;
  right: 12%;

  height: 3px;

  pointer-events: none;

  overflow: visible;
}


/* actual light */

.menu-light {
  position: absolute;

  top: 50%;
  left: 0;

  width: 80px;
  height: 4px;

  opacity: 0;

  border-radius: 100px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,235,155,.3),
      #fff5c4,
      #ffffff,
      #f4c854,
      transparent
    );

  filter:
    blur(.3px)
    drop-shadow(
      0 0 8px
      rgba(255,219,110,.9)
    );

  transform:
    translateY(-50%)
    translateX(0);

  box-shadow:
    0 0 10px
    rgba(255,229,138,.9),
    0 0 20px
    rgba(255,204,74,.65);
}


/* ACTIVE LIGHT */

.steps.light-running .menu-light {
  opacity: 1;

  animation:
    menuSpeedLight
    .85s
    cubic-bezier(.15,.7,.25,1)
    forwards;
}


@keyframes menuSpeedLight {

  0% {
    left: 0;
    opacity: 0;
    transform:
      translateY(-50%)
      scaleX(.5);
  }

  8% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 80px);

    opacity: 0;

    transform:
      translateY(-50%)
      scaleX(1.4);
  }

}


/* =========================================================
   ICON FLASH WHEN LIGHT PASSES
========================================================= */

.steps.light-running
.step .ico {
  animation:
    iconLightPulse
    .45s ease;
}


.steps.light-running
.step:nth-child(2) .ico {
  animation-delay: .18s;
}

.steps.light-running
.step:nth-child(3) .ico {
  animation-delay: .36s;
}

.steps.light-running
.step:nth-child(4) .ico {
  animation-delay: .54s;
}


@keyframes iconLightPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform:
      translateY(-4px)
      scale(1.18);

    box-shadow:
      0 0 0 8px
      rgba(230,184,74,.08),
      0 0 28px
      rgba(255,218,113,.60);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

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

    gap: 28px 14px;

    padding:
      28px
      20px;
  }


  .step:not(:nth-child(4))::after,
  .menu-light-track {
    display: none;
  }


  .step .ico {
    width: 44px;
    height: 44px;

    font-size: 20px;
  }


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


  .custom-menu-btn {
    min-width: 220px;

    font-size: 11px;
  }

}

/* =========================================================
   FOOTER COPYRIGHT / COMPANY CREDIT
========================================================= */

.footer-credit {
  position: relative;

  min-height: auto;

  margin-top: 42px;

  padding:
    26px
    0
    30px;

  display: flex;

  align-items: center;
  justify-content: center;

  text-align: center;
}


.footer-credit-content {
  position: relative;

  z-index: 5;

  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 7px;
}


.footer-credit-content p {
  margin: 0;

  color:
    rgba(253, 248, 236, .76);

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.5;
}


.footer-credit-content .copyright {
  margin-bottom: 5px;

  color:
    rgba(253, 248, 236, .88);

  font-size: 14px;
}


/* COMPANY LINKS */

.footer-company-link {
  position: relative;

  display: inline-block;

  margin-left: 4px;

  color: #e0b44e;

  font-weight: 700;

  transition:
    color .3s ease,
    transform .3s ease,
    text-shadow .3s ease;
}


/* underline animation */

.footer-company-link::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -3px;

  width: 0;
  height: 1px;

  background: #f0c85f;

  transform:
    translateX(-50%);

  transition:
    width .35s
    cubic-bezier(.2,.8,.2,1);
}


.footer-company-link:hover {
  color: #ffd773;

  transform:
    translateY(-2px);

  text-shadow:
    0 0 14px
    rgba(224, 180, 78, .35);
}


.footer-company-link:hover::after {
  width: 100%;
}


/* TOP DIVIDER */

.footer-credit
.footer-bottom-line {
  position: absolute;

  top: 0;

  left: 0;
  right: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.12),
      rgba(213,170,72,.40),
      rgba(255,255,255,.12),
      transparent
    );
}


/* MOBILE */

@media (max-width: 650px) {

  .footer-credit {
    padding:
      24px
      12px
      28px;
  }


  .footer-credit-content p {
    font-size: 12px;
  }


  .footer-credit-content .copyright {
    font-size: 12px;
  }

}

/* ==========================================
   SOCIAL MEDIA ORIGINAL BRAND COLORS
========================================== */

.socials a {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(255,255,255,.07);

  border: 1px solid rgba(255,255,255,.12);

  color: #ffffff;

  font-size: 19px;

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    background .35s ease,
    color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}


/* FACEBOOK */

.socials .social-facebook:hover {
  background: #1877F2;
  color: #ffffff;

  border-color: #1877F2;

  transform:
    translateY(-7px)
    scale(1.12);

  box-shadow:
    0 12px 28px
    rgba(24,119,242,.40);
}


/* INSTAGRAM */

.socials .social-instagram:hover {
  background:
    linear-gradient(
      135deg,
      #833AB4 0%,
      #C13584 30%,
      #E1306C 55%,
      #F56040 75%,
      #FCAF45 100%
    );

  color: #ffffff;

  border-color: #E1306C;

  transform:
    translateY(-7px)
    scale(1.12);

  box-shadow:
    0 12px 28px
    rgba(225,48,108,.38);
}


/* WHATSAPP */

.socials .social-whatsapp:hover {
  background: #25D366;
  color: #ffffff;

  border-color: #25D366;

  transform:
    translateY(-7px)
    scale(1.12);

  box-shadow:
    0 12px 28px
    rgba(37,211,102,.38);
}


/* YOUTUBE */

.socials .social-youtube:hover {
  background: #FF0000;
  color: #ffffff;

  border-color: #FF0000;

  transform:
    translateY(-7px)
    scale(1.12);

  box-shadow:
    0 12px 28px
    rgba(255,0,0,.38);
}


/* ICON 3D ANIMATION */

.socials a i {
  position: relative;
  z-index: 2;

  transition:
    transform .45s
    cubic-bezier(.2,.8,.2,1);
}


.socials a:hover i {
  transform:
    scale(1.15)
    rotateY(360deg);
}

/* ==========================================
   SOCIAL ICON HOVER - FINAL FIX
========================================== */

.socials a {
  width: 46px !important;
  height: 46px !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 50% !important;

  background: rgba(255,255,255,.07) !important;

  border: 1px solid rgba(255,255,255,.18) !important;

  color: #ffffff !important;

  font-size: 19px !important;

  transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease !important;
}


/* FACEBOOK */

.socials a.social-facebook:hover {
  background: #1877F2 !important;
  color: #ffffff !important;
  border-color: #1877F2 !important;

  transform:
    translateY(-6px)
    scale(1.12) !important;

  box-shadow:
    0 12px 28px
    rgba(24,119,242,.45) !important;
}


/* INSTAGRAM */

.socials a.social-instagram:hover {
  background:
    linear-gradient(
      135deg,
      #833AB4 0%,
      #C13584 30%,
      #E1306C 55%,
      #F56040 75%,
      #FCAF45 100%
    ) !important;

  color: #ffffff !important;
  border-color: #E1306C !important;

  transform:
    translateY(-6px)
    scale(1.12) !important;

  box-shadow:
    0 12px 28px
    rgba(225,48,108,.45) !important;
}


/* WHATSAPP */

.socials a.social-whatsapp:hover {
  background: #25D366 !important;
  color: #ffffff !important;
  border-color: #25D366 !important;

  transform:
    translateY(-6px)
    scale(1.12) !important;

  box-shadow:
    0 12px 28px
    rgba(37,211,102,.45) !important;
}


/* YOUTUBE */

.socials a.social-youtube:hover {
  background: #FF0000 !important;
  color: #ffffff !important;
  border-color: #FF0000 !important;

  transform:
    translateY(-6px)
    scale(1.12) !important;

  box-shadow:
    0 12px 28px
    rgba(255,0,0,.45) !important;
}


/* ICON ANIMATION */

.socials a i {
  position: relative;
  z-index: 3;

  color: inherit !important;

  transition:
    transform .45s
    cubic-bezier(.2,.8,.2,1) !important;
}


.socials a:hover i {
  color: #ffffff !important;

  transform:
    rotateY(360deg)
    scale(1.15) !important;
}


/* =========================================================
   FOOTER SOCIAL ICON CLICK / HOVER FIX
========================================================= */

.footer-card {
  overflow: visible !important;
}


/* Social area always above card effects */

.footer-brand .socials {
  position: relative !important;

  z-index: 100 !important;

  pointer-events: auto !important;

  transform: translateZ(60px);
}


.footer-brand .socials a {
  position: relative !important;

  z-index: 110 !important;

  pointer-events: auto !important;

  cursor: pointer !important;

  isolation: isolate;

  width: 48px !important;
  height: 48px !important;

  border-radius: 50% !important;

  background:
    rgba(255,255,255,.07) !important;

  border:
    1px solid
    rgba(255,255,255,.20) !important;

  color: #fff !important;

  transform:
    translateZ(80px)
    scale(1) !important;

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease !important;
}


/* icon itself should never block anchor click */

.footer-brand .socials a i {
  position: relative;

  z-index: 2;

  pointer-events: none !important;

  color: #fff !important;
}


/* shiny pseudo element should not block mouse */

.footer-brand .socials a::before,
.footer-brand .socials a::after {
  pointer-events: none !important;
}


/* =========================
   FACEBOOK
========================= */

.footer-brand
.socials
.social-facebook:hover {
  background:
    #1877F2 !important;

  border-color:
    #1877F2 !important;

  transform:
    translateY(-8px)
    translateZ(100px)
    scale(1.14) !important;

  box-shadow:
    0 15px 30px
    rgba(24,119,242,.45) !important;
}


/* =========================
   INSTAGRAM
========================= */

.footer-brand
.socials
.social-instagram:hover {
  background:
    linear-gradient(
      135deg,
      #833AB4,
      #C13584,
      #E1306C,
      #F56040,
      #FCAF45
    ) !important;

  border-color:
    #E1306C !important;

  transform:
    translateY(-8px)
    translateZ(100px)
    scale(1.14) !important;

  box-shadow:
    0 15px 30px
    rgba(225,48,108,.42) !important;
}


/* =========================
   WHATSAPP
========================= */

.footer-brand
.socials
.social-whatsapp:hover {
  background:
    #25D366 !important;

  border-color:
    #25D366 !important;

  transform:
    translateY(-8px)
    translateZ(100px)
    scale(1.14) !important;

  box-shadow:
    0 15px 30px
    rgba(37,211,102,.42) !important;
}


/* =========================
   YOUTUBE
========================= */

.footer-brand
.socials
.social-youtube:hover {
  background:
    #FF0000 !important;

  border-color:
    #FF0000 !important;

  transform:
    translateY(-8px)
    translateZ(100px)
    scale(1.14) !important;

  box-shadow:
    0 15px 30px
    rgba(255,0,0,.42) !important;
}


/* icon small animation */

.footer-brand
.socials a:hover i {
  transform:
    scale(1.12)
    rotateY(360deg) !important;

  transition:
    transform .45s
    cubic-bezier(.2,.8,.2,1);
}


/* =========================================
   SOCIAL ICON FINAL HOVER COLOR
========================================= */

.socials .social-btn {
  width: 48px !important;
  height: 48px !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 50% !important;

  background: rgba(255, 255, 255, 0.08) !important;

  border: 1px solid rgba(255, 255, 255, 0.22) !important;

  color: #ffffff !important;

  cursor: pointer !important;

  transition:
    background .30s ease,
    border-color .30s ease,
    transform .30s ease,
    box-shadow .30s ease !important;
}


/* FACEBOOK */

.socials .social-facebook:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;

  transform:
    translateY(-6px)
    scale(1.10) !important;

  box-shadow:
    0 10px 25px rgba(24,119,242,.40) !important;
}


/* INSTAGRAM */

.socials .social-instagram:hover {
  background:
    linear-gradient(
      135deg,
      #833AB4,
      #C13584,
      #E1306C,
      #F56040,
      #FCAF45
    ) !important;

  border-color: #E1306C !important;

  transform:
    translateY(-6px)
    scale(1.10) !important;

  box-shadow:
    0 10px 25px rgba(225,48,108,.40) !important;
}


/* WHATSAPP */

.socials .social-whatsapp:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;

  transform:
    translateY(-6px)
    scale(1.10) !important;

  box-shadow:
    0 10px 25px rgba(37,211,102,.40) !important;
}


/* YOUTUBE */

.socials .social-youtube:hover {
  background: #FF0000 !important;
  border-color: #FF0000 !important;

  transform:
    translateY(-6px)
    scale(1.10) !important;

  box-shadow:
    0 10px 25px rgba(255,0,0,.40) !important;
}


/* ICON */

.socials .social-btn i {
  color: #ffffff !important;

  pointer-events: none !important;

  transition:
    transform .35s ease !important;
}


.socials .social-btn:hover i {
  transform:
    scale(1.12)
    rotateY(360deg) !important;
}


/* =========================================================
   FOOTER BRAND CARD + SOCIAL ICON FINAL STABLE FIX
========================================================= */


/* -----------------------------------------
   BRAND CARD
   Card hover irukkum,
   aana position jump aagathu
----------------------------------------- */

.footer-card.footer-brand {
  position: relative !important;

  transform: none !important;

  overflow: visible !important;

  transition:
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease !important;
}


/* CARD HOVER STILL WORKS */

.footer-card.footer-brand:hover {
  transform: none !important;

  background:
    rgba(255,255,255,.035) !important;

  border-color:
    rgba(211,170,72,.28) !important;

  box-shadow:
    0 20px 45px
    rgba(0,0,0,.18) !important;
}


/* -----------------------------------------
   SOCIAL AREA
----------------------------------------- */

.footer-brand .socials {
  position: relative !important;

  z-index: 9999 !important;

  display: flex !important;

  align-items: center !important;

  gap: 12px !important;

  margin-top: 24px !important;

  pointer-events: auto !important;

  transform: none !important;
}


/* -----------------------------------------
   BUTTON BASE
----------------------------------------- */

.footer-brand .socials .social-btn {
  position: relative !important;

  z-index: 10000 !important;

  width: 48px !important;
  height: 48px !important;

  padding: 0 !important;
  margin: 0 !important;

  display: inline-grid !important;

  place-items: center !important;

  flex: 0 0 48px !important;

  border-radius: 50% !important;

  border:
    1px solid
    rgba(255,255,255,.22) !important;

  background:
    rgba(255,255,255,.08) !important;

  color: #fff !important;

  font-size: 19px !important;

  cursor: pointer !important;

  pointer-events: auto !important;

  appearance: none !important;
  -webkit-appearance: none !important;

  transform: none !important;

  transition:
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease !important;
}


/* ICON MOUSE-A BLOCK PANNA KOODATHU */

.footer-brand .social-btn i {
  position: relative !important;

  z-index: 2 !important;

  color: #fff !important;

  pointer-events: none !important;

  transition:
    transform .35s ease !important;
}


/* =========================================================
   FACEBOOK
========================================================= */

.footer-brand
.social-btn.social-facebook:hover {
  background: #1877F2 !important;

  border-color: #1877F2 !important;

  transform:
    translateY(-4px)
    scale(1.08) !important;

  box-shadow:
    0 10px 25px
    rgba(24,119,242,.45) !important;
}


/* =========================================================
   INSTAGRAM
========================================================= */

.footer-brand
.social-btn.social-instagram:hover {
  background:
    linear-gradient(
      135deg,
      #833AB4 0%,
      #C13584 30%,
      #E1306C 55%,
      #F56040 78%,
      #FCAF45 100%
    ) !important;

  border-color:
    #E1306C !important;

  transform:
    translateY(-4px)
    scale(1.08) !important;

  box-shadow:
    0 10px 25px
    rgba(225,48,108,.45) !important;
}


/* =========================================================
   WHATSAPP
========================================================= */

.footer-brand
.social-btn.social-whatsapp:hover {
  background:
    #25D366 !important;

  border-color:
    #25D366 !important;

  transform:
    translateY(-4px)
    scale(1.08) !important;

  box-shadow:
    0 10px 25px
    rgba(37,211,102,.45) !important;
}


/* =========================================================
   YOUTUBE
========================================================= */

.footer-brand
.social-btn.social-youtube:hover {
  background:
    #FF0000 !important;

  border-color:
    #FF0000 !important;

  transform:
    translateY(-4px)
    scale(1.08) !important;

  box-shadow:
    0 10px 25px
    rgba(255,0,0,.45) !important;
}


/* ICON ANIMATION */

.footer-brand
.social-btn:hover i {
  transform:
    scale(1.12) !important;
}


/* CLICK FEEL */

.footer-brand
.social-btn:active {
  transform:
    scale(.92) !important;
}


/* =========================================================
   GARLAND PRODUCTS - PREMIUM 3D HOVER
========================================================= */

.garland-products {
  perspective: 1400px;
}


/* EACH GARLAND */

.garland-products img {
  position: relative;

  cursor: pointer;

  transform-style: preserve-3d;

  transform:
    perspective(1000px)
    rotateX(0deg)
    rotateY(0deg)
    translateY(0)
    scale(1);

  transform-origin: center top;

  filter:
    drop-shadow(
      0 14px 14px
      rgba(75, 48, 20, .13)
    );

  transition:
    transform .55s cubic-bezier(.2,.8,.2,1),
    filter .55s ease;
}


/* =========================================
   MAIN 3D HOVER
========================================= */

.garland-products img:hover {
  z-index: 20;

  transform:
    perspective(1000px)
    translateY(-0px)
    translateZ(40px)
    rotateX(3deg)
    rotateY(-5deg)
    scale(1.08);

  filter:
    drop-shadow(
      0 28px 22px
      rgba(57, 36, 14, .24)
    );
}


/* =========================================
   SMALL NATURAL SWAY
========================================= */

.garland-products img:nth-child(odd):hover {
  transform:
    perspective(1000px)
    translateY(-0px)
    translateZ(40px)
    rotateX(3deg)
    rotateY(-5deg)
    rotateZ(-1deg)
    scale(1.08);
}


.garland-products img:nth-child(even):hover {
  transform:
    perspective(1000px)
    translateY(-0px)
    translateZ(40px)
    rotateX(3deg)
    rotateY(5deg)
    rotateZ(1deg)
    scale(1.08);
}

/* =========================================================
   A-Z EXPERIENCE SECTION
========================================================= */

.az-section {
  position: relative;

  overflow: hidden;

  padding:
    28px
    0
    55px;

  background:
    radial-gradient(
      circle at 50% 35%,
      #fffdf8 0%,
      #fdf8ee 58%,
      #f8efdf 100%
    );

  border-top:
    1px solid
    rgba(201,155,68,.30);


  isolation: isolate;
}


/* subtle texture */

.az-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: .025;

  background-image:
    radial-gradient(
      circle,
      #b28a42 1px,
      transparent 1px
    );

  background-size:
    25px
    25px;
}


/* =========================================================
   CONTAINER
========================================================= */

.az-container {
  position: relative;
  z-index: 5;
}


/* =========================================================
   HEADER
========================================================= */

.az-heading {
  text-align: center;

  margin-bottom: 28px;
}


.az-eyebrow {
  display: block;

  margin-bottom: 6px;

  color: #c99636;

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .22em;

  text-transform: uppercase;
}


.az-heading h2 {
  margin: 0;

  color: #123f31;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(29px, 2.5vw, 42px);

  font-weight: 600;

  line-height: 1;
}


.az-heading h2 span {
  display: block;

  margin-top: 3px;

  color: #e45725;

  font-family:
    "Yellowtail",
    cursive;

  font-size: 1.06em;

  font-weight: 400;
}


/* =========================================================
   STEPS GRID
========================================================= */

.az-steps {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  gap:
    clamp(15px, 2vw, 28px);

  align-items: start;

  padding-top: 24px;
}


/* =========================================================
   CONNECTING LINE
========================================================= */

.az-path {
  position: absolute;

  z-index: 0;

  top: 52px;

  left: 7%;
  right: 7%;

  height: 38px;

  border-top:
    1px dashed
    rgba(195,145,50,.65);

  border-radius:
    50%
    50%
    0
    0;

  pointer-events: none;
}


/* small golden points */

.az-card:not(:last-child)::after {
  content: "";

  position: absolute;

  z-index: 7;

  top: 53px;

  right: -18px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background:
    #b98223;

  box-shadow:
    0 0 0 4px
    rgba(185,130,35,.06);
}


/* =========================================================
   CARD
========================================================= */

.az-card {
  position: relative;
  overflow: visible;
  z-index: 2;

  min-height: 280px;

  padding:
    72px
    15px
    20px;

  border-radius:
    0
    0
    18px
    18px;

  background:
    rgba(255,255,255,.60);

  border:
    1px solid
    rgba(201,172,116,.24);

  box-shadow:
    0 10px 25px
    rgba(77,55,25,.08);

  text-align: center;

  transform-style: preserve-3d;

  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    background .45s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.az-number {
  position: absolute;

  z-index: 10;

  top: -1px;
  left: 50%;

  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  transform:
    translateX(-50%)
    translateY(-50%);

  border-radius: 50%;

  background:
    #0f4938;

  border:
    3px solid
    #fdf7ea;

  color: #fff;

  font-size: 12px;
  font-weight: 700;

  box-shadow:
    0 6px 16px
    rgba(13,68,51,.18);
}


/* =========================================================
   IMAGE
========================================================= */

.az-image {
  position: absolute;

  z-index: 5;

  top: 16px;

  left: 50%;

  width:
    calc(100% - 26px);

  height: 105px;

  overflow: hidden;

  transform:
    translateX(-50%);

 border-radius: 10px 10px 10px 10px;

  border:
    1px solid
    rgba(201,157,66,.33);

  background: #ddd;

  box-shadow:
    0 9px 17px
    rgba(42,54,43,.10);
}


.az-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .65s
    cubic-bezier(.2,.8,.2,1),
    filter .5s ease;
}


/* =========================================================
   ICON
========================================================= */

.az-icon {
  position: relative;

  z-index: 8;

  width: 48px;
  height: 48px;

  margin:
    44px
    auto
    9px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    #0d4a38;

  border:
    4px solid
    #e4b64f;

  color:
    #efc95c;

  font-size: 19px;

  box-shadow:
    0 7px 14px
    rgba(16,65,49,.18);

  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    box-shadow .4s ease,
    background .4s ease;
}


/* =========================================================
   TEXT
========================================================= */

.az-body {
  position: relative;

  z-index: 4;
}


.az-body h3 {
  margin:
    0
    0
    8px;

  color: #243a32;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 17px;

  font-weight: 600;

  line-height: 1.05;
}


.az-body p {
  max-width: 160px;

  margin:
    0
    auto;

  color:
    #555b55;

  font-size: 14px;

  line-height: 1.45;
}


/* =========================================================
   CREATIVE 3D HOVER
========================================================= */

.az-card:hover {
  z-index: 20;

  background:
    rgba(255,255,255,.88);

  transform:
    perspective(900px)
    translateY(-10px)
    rotateX(3deg)
    rotateY(-2deg);

  box-shadow:
    0 25px 45px
    rgba(43,55,43,.16);
}


.az-card:hover
.az-image img {
  transform:
    scale(1.08);

  filter:
    saturate(1.08)
    contrast(1.03);
}


.az-card:hover
.az-icon {
  transform:
    translateY(-4px)
    scale(1.08);

  background:
    #e0ad3d;

  color:
    #0d4a38;

  box-shadow:
    0 12px 24px
    rgba(215,169,65,.28);
}


/* number pulse */

.az-card:hover
.az-number {
  animation:
    azNumberPulse
    .7s ease;
}


@keyframes azNumberPulse {

  50% {
    transform:
      translateX(-50%)
      translateY(-50%)
      scale(1.12);
  }

}


/* =========================================================
   CORNER DECORATIONS
========================================================= */

.az-corner {
  position: absolute;

  width: 135px;
  height: 135px;

  opacity: .18;

  border:
    1px solid
    #d2a647;

  border-radius: 50%;

  pointer-events: none;
}


.az-corner::before,
.az-corner::after {
  content: "";

  position: absolute;

  border:
    1px solid
    #d2a647;

  border-radius: 50%;
}


.az-corner::before {
  inset: 20px;
}


.az-corner::after {
  inset: 43px;
}


.az-corner-left {
  left: -65px;
  top: -45px;
}


.az-corner-right {
  right: -60px;
  top: -48px;
}


/* =========================================================
   FLOATING LEAVES
========================================================= */

.az-leaf {
  position: absolute;

  color: #507a31;

  font-size: 12px;

  opacity: .8;

  pointer-events: none;

  animation:
    azLeafFloat
    4s
    ease-in-out
    infinite;
}


.az-leaf-1 {
  left: 3%;
  top: 51%;
}


.az-leaf-2 {
  right: 2%;
  top: 33%;

  animation-delay: 1s;
}


.az-leaf-3 {
  left: 2%;
  bottom: 22%;

  animation-delay: 2s;
}


@keyframes azLeafFloat {

  0%,
  100% {
    transform:
      translateY(0)
      rotate(0);
  }

  50% {
    transform:
      translateY(-7px)
      rotate(12deg);
  }

}


/* =========================================================
   BOTTOM FLOWER
========================================================= */

.az-bottom-flower {
  position: absolute;

  z-index: 4;

  bottom: -8px;

  font-size: 50px;

  pointer-events: none;
}


.az-flower-left {
  left: 0;
}


.az-flower-right {
  right: 0;
}


/* =========================================================
   SCROLL ENTRANCE
========================================================= */

.reveal-az,
.reveal-step {
  opacity: 0;

  transform:
    translateY(28px);

  transition:
    opacity .7s ease,
    transform .7s
    cubic-bezier(.2,.8,.2,1);
}


.reveal-az.az-visible,
.reveal-step.az-visible {
  opacity: 1;

  transform:
    translateY(0);
}


.reveal-step:nth-child(3) {
  transition-delay: .08s;
}


.reveal-step:nth-child(4) {
  transition-delay: .16s;
}


.reveal-step:nth-child(5) {
  transition-delay: .24s;
}


.reveal-step:nth-child(6) {
  transition-delay: .32s;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .az-steps {
    grid-template-columns:
      repeat(3, 1fr);

    row-gap: 55px;
  }


  .az-path {
    display: none;
  }


  .az-card::after {
    display: none;
  }

}


@media (max-width: 650px) {

  .az-section {
    padding:
      45px
      0
      60px;
  }


  .az-steps {
    grid-template-columns:
      1fr;

    gap: 55px;

    max-width: 340px;

    margin-inline: auto;
  }


  .az-card {
    min-height: 290px;
  }


  .az-image {
    height: 125px;
  }


  .az-icon {
    margin-top: 62px;
  }


  .az-heading h2 {
    font-size: 31px;
  }

}

/* A-Z BOTTOM DECORATION IMAGES */

.az-bottom-image {
  position: absolute;
  bottom: 0;

  width: 150px;
  height: auto;

  object-fit: contain;

  z-index: 10;

  pointer-events: none;
}

.az-bottom-image-left {
  left: 0;
}

.az-bottom-image-right {
  right: 0;
}

/* =========================================================
   A-Z BOTTOM FLOWERS - REALISTIC BREEZE ANIMATION
========================================================= */

.az-bottom-image {
  transform-origin: bottom center;

  will-change: transform;

  animation:
    flowerBreeze 4.8s
    ease-in-out
    infinite;

  filter:
    drop-shadow(
      0 12px 16px
      rgba(68, 52, 25, .12)
    );
}


/* LEFT IMAGE */
.az-bottom-image-left {
  animation-delay: 0s;
}


/* RIGHT IMAGE */
.az-bottom-image-right {
  animation-delay: 1.2s;
}


/* NATURAL PLANT SWAY */
@keyframes flowerBreeze {

  0% {
    transform:
      rotate(0deg)
      translateY(0)
      scale(1);
  }

  25% {
    transform:
      rotate(1.8deg)
      translateY(-2px)
      scale(1.005);
  }

  50% {
    transform:
      rotate(-1.4deg)
      translateY(0)
      scale(1);
  }

  75% {
    transform:
      rotate(1deg)
      translateY(-1px)
      scale(1.003);
  }

  100% {
    transform:
      rotate(0deg)
      translateY(0)
      scale(1);
  }

}

/* =========================================================
   PLAN YOUR CELEBRATION - PREMIUM CONTACT
========================================================= */

.plan-section {
  position: relative;

  width: min(96%, 1500px);

  min-height: 330px;

  margin:
    60px auto;

  overflow: hidden;

  border-radius: 30px;

  border:
    1px solid
    rgba(218, 175, 71, .45);

  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(20, 110, 81, .20),
      transparent 35%
    ),
    linear-gradient(
      120deg,
      #053a2c 0%,
      #064332 45%,
      #03362a 100%
    );

  box-shadow:
    0 25px 55px
    rgba(16, 55, 42, .15);

  isolation: isolate;
}


/* subtle texture */

.plan-section::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: .035;

  pointer-events: none;

  background-image:
    radial-gradient(
      circle,
      #ffffff 1px,
      transparent 1px
    );

  background-size:
    24px 24px;
}


/* =========================================================
   LAYOUT
========================================================= */

.plan-inner {
  position: relative;

  z-index: 10;

  min-height: 330px;

  display: grid;

  grid-template-columns:
    .72fr 1.28fr;

  align-items: start;

  gap: 50px;

  padding:
    38px
    70px
    42px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.plan-copy {
  position: relative;

  z-index: 15;

  padding-left: 12px;
}


.plan-copy h2 {
  margin: 0;

  color: #fffaf0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(34px, 2.7vw, 48px);

  font-weight: 600;

  line-height: .96;

  letter-spacing: -.025em;
}


.plan-copy h2 span {
  display: inline-block;

  margin-left: 5px;

  color: #e95a24;

  font-family:
    "Yellowtail",
    cursive;

  font-size: .92em;

  font-weight: 400;
}


.plan-copy p {
  margin:
    20px
    0
    0;

  color:
    rgba(255,255,255,.80);

  font-size: 14px;

  line-height: 1.55;
}


/* =========================================================
   FORM
========================================================= */

.plan-form {
  position: relative;

  z-index: 20;

  padding-top: 5px;
}


.plan-form-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    13px
    18px;
}


/* =========================================================
   FIELD
========================================================= */

.plan-field {
  position: relative;

  height: 47px;

  display: flex;
  align-items: center;

  border:
    1px solid
    rgba(222, 173, 65, .72);

  border-radius: 8px;

  background:
    rgba(1, 45, 34, .18);

  transition:
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}


.plan-field:hover {
  border-color: #e6b44a;

  background:
    rgba(255,255,255,.025);
}


.plan-field:focus-within {
  border-color: #f0bd50;

  box-shadow:
    0 0 0 3px
    rgba(220,169,61,.08);

  transform:
    translateY(-1px);
}


/* ICON */

.plan-field > i {
  position: absolute;

  left: 14px;

  color: #d9a93e;

  font-size: 14px;

  pointer-events: none;
}


/* INPUT */

.plan-field input,
.plan-field select,
.plan-field textarea {
  width: 100%;
  height: 100%;

  padding:
    0
    15px
    0
    42px;

  border: 0;
  outline: 0;

  background: transparent;

  color: #fffaf0;

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;
}


/* placeholder */

.plan-field input::placeholder,
.plan-field textarea::placeholder {
  color:
    rgba(255,255,255,.72);
}


/* select */

.plan-field select {
  appearance: none;
  -webkit-appearance: none;

  color:
    rgba(255,255,255,.75);
}


.plan-field select option {
  background: #073d2e;

  color: #fff;
}


/* DATE */

.plan-field input[type="date"] {
  color:
    rgba(255,255,255,.72);
}


.plan-field
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);

  opacity: .65;

  cursor: pointer;
}


/* =========================================================
   MESSAGE
========================================================= */

.plan-message {
  grid-column:
    1 / -1;

  height: 55px;
}


.plan-message > i {
  top: 17px;
}


.plan-message textarea {
  resize: none;

  padding-top: 16px;
}


/* =========================================================
   BUTTON
========================================================= */

.plan-submit {
  min-width: 285px;

  height: 48px;

  margin:
    18px
    auto
    0;

  padding:
    0
    32px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 15px;

  border: 0;

  border-radius: 9px;

  background:
    linear-gradient(
      180deg,
      #efbd52,
      #dda43b
    );

  color: #123d30;

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: .03em;

  cursor: pointer;

  box-shadow:
    0 8px 18px
    rgba(0,0,0,.15);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}


.plan-submit span {
  font-size: 17px;

  transition:
    transform .3s ease;
}


.plan-submit:hover {
  transform:
    translateY(-3px);

  background:
    linear-gradient(
      180deg,
      #ffd16a,
      #e5ad40
    );

  box-shadow:
    0 13px 26px
    rgba(0,0,0,.20);
}


.plan-submit:hover span {
  transform:
    translateX(5px);
}


/* =========================================================
   LEFT FOOD IMAGE
========================================================= */

.plan-food-image {
  position: absolute;

  z-index: 8;

  left: -18px;
  bottom: -42px;

  width: 390px;
  height: auto;

  pointer-events: none;

  object-fit: contain;

  filter:
    drop-shadow(
      0 14px 20px
      rgba(0,0,0,.22)
    );
}


/* =========================================================
   RIGHT LEAF / FLOWER
========================================================= */

.plan-right-decoration {
  position: absolute;

  z-index: 7;

  right: -35px;
  bottom: 5px;

  width: 190px;

  pointer-events: none;

  object-fit: contain;

  filter:
    drop-shadow(
      0 10px 16px
      rgba(0,0,0,.10)
    );
}


/* =========================================================
   SMALL FLOATING DETAILS
========================================================= */

.plan-leaf,
.plan-petal {
  position: absolute;

  z-index: 6;

  pointer-events: none;

  animation:
    planFloat
    4s
    ease-in-out
    infinite;
}


.plan-leaf {
  color: #87a13d;
}


.plan-petal {
  color: #ed6673;
}


.plan-leaf-1 {
  top: 32px;
  left: 31%;

  transform: rotate(25deg);
}


.plan-leaf-2 {
  bottom: 38px;
  left: 34%;

  animation-delay: 1s;
}


.plan-petal-1 {
  top: 87px;
  right: 2%;

  animation-delay: .7s;
}


.plan-petal-2 {
  bottom: 65px;
  left: 33%;

  animation-delay: 1.7s;
}


@keyframes planFloat {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -7px;
  }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .plan-inner {
    grid-template-columns:
      1fr;

    gap: 38px;

    padding:
      50px
      45px
      230px;
  }


  .plan-copy {
    text-align: center;

    padding-left: 0;
  }


  .plan-food-image {
    width: 330px;
  }

}


@media (max-width: 650px) {

  .plan-section {
    width: calc(100% - 24px);

    margin:
      40px
      auto;

    border-radius: 20px;
  }


  .plan-inner {
    padding:
      40px
      22px
      200px;
  }


  .plan-form-grid {
    grid-template-columns: 1fr;
  }


  .plan-message {
    grid-column: auto;
  }


  .plan-submit {
    width: 100%;
    min-width: 0;
  }


  .plan-copy h2 {
    font-size: 34px;
  }


  .plan-food-image {
    width: 280px;
  }

}


/* =========================================
   FOOTER KUTHU VILAKKU
========================================= */

.footer-credit {
  position: relative;
  overflow: hidden;
  min-height: 190px;
}


/* BOTH LAMPS */

.footer-vilakku {
  position: absolute;

  bottom: 25px;

  width: 180px;
  height: auto;

  object-fit: contain;

  z-index: 2;

  pointer-events: none;

  transform-origin: bottom center;

  filter:
    drop-shadow(0 10px 18px rgba(0,0,0,.25));

  animation:
    vilakkuFloat 4s ease-in-out infinite;
}


/* LEFT */

.footer-vilakku-left {
  left: 55px;
}


/* RIGHT */

.footer-vilakku-right {
  right: 55px;

  animation-delay: .7s;
}


/* CONTENT ALWAYS ABOVE */

.footer-credit-content {
  position: relative;
  z-index: 5;
}


/* VERY LIGHT PREMIUM MOVEMENT */

@keyframes vilakkuFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

}


/* =========================================================
   HEADER - CLEAN PREMIUM FINAL ADJUSTMENT
========================================================= */

/* HEADER HEIGHT */
.header-inner {
  min-height: 80px !important;

  grid-template-columns:
    165px
    minmax(0, 1fr)
    auto !important;

  column-gap: 28px !important;
}


/* NAVIGATION ALIGNMENT */
.nav {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 24px !important;

  white-space: nowrap;
}


/* NAV TEXT */
.nav a {
  padding:
    29px
    0
    27px !important;

  font-size: 14px !important;

  font-weight: 500 !important;

  line-height: 1 !important;

  letter-spacing: 0.01em;

  color: #26352f;

  transition:
    color .25s ease,
    transform .25s ease;
}


/* SMALL PROFESSIONAL HOVER */
.nav a:hover {
  color: #0f3b2e;

  transform:
    translateY(-1px);
}


/* ACTIVE UNDERLINE */
.nav a::after {
  bottom: 20px !important;

  height: 2px;

  border-radius: 10px;
}


/* SERVICE ARROW */
.nav .caret {
  margin-left: 2px;

  font-size: 10px;

  opacity: .8;
}


/* =========================================================
   BOOK YOUR EVENT BUTTON
========================================================= */

.header-cta {
  height: 46px !important;

  padding:
    0
    21px !important;

  gap: 12px !important;

  border-radius: 8px !important;

  font-size: 13px !important;

  font-weight: 600 !important;

  letter-spacing: .01em;

  box-shadow:
    0 7px 18px
    rgba(15, 59, 46, .08);

  transition:
    background .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}


.header-cta:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 12px 25px
    rgba(15, 59, 46, .16);
}


/* ARROW */
.header-cta .cta-arrow {
  font-size: 15px;

  transition:
    transform .3s ease;
}


.header-cta:hover
.cta-arrow {
  transform:
    translateX(5px);
}


/* =========================================================
   DESKTOP SMALL
========================================================= */

@media (max-width: 1180px) {

  .header-inner {
    grid-template-columns:
      145px
      minmax(0, 1fr)
      auto !important;

    column-gap: 20px !important;
  }

  .nav {
    gap: 17px !important;
  }

  .nav a {
    font-size: 13px !important;
  }

  .header-cta {
    height: 44px !important;

    padding:
      0
      16px !important;

    font-size: 12px !important;
  }

}

/* HEADER NAV TEXT SIZE + SPACE */

.nav {
  gap: 32px !important;   /* text-to-text space */
}

.nav a {
  font-size: 16px !important;  /* Home, About Us... size */
  font-weight: 500 !important;

  padding: 29px 0 27px !important;
}

/* =========================================
   HERO IMAGE WHITE SPACE FIX
========================================= */

.hero {
  width: 100%;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-media img {
  display: block;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: 30% center;

  max-width: none !important;
}


@media (max-width: 768px) {

  .hero {
    width: 100%;
    overflow: hidden;
  }

  .hero-media {
    width: 100% !important;
    min-width: 100% !important;

    height: 520px;
  }

  .hero-media img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    /* food இருக்குற important portion visible */
    object-position: 42% center !important;
  }

}


/* =========================================================
   HEADER + HERO TRUE FULL WIDTH
========================================================= */


/* HEADER */

.topbar {
  width: 100%;
}

.topbar .wrap,
.topbar .site-container {
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;

  padding-left: 55px !important;
  padding-right: 55px !important;
}


/* HERO */

.hero {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;

  overflow: hidden;
}


.hero-grid {
  width: 100%;
  max-width: none;

  margin: 0;

  display: grid;

  grid-template-columns:
    46% 54%;

  min-height: 650px;
}


/* HERO LEFT CONTENT */

.hero-copy {
  width: 100%;

  padding:
    70px
    55px
    70px
    65px;
}


/* HERO IMAGE */

.hero-media {
  position: relative;

  width: 100%;
  min-width: 0;
  max-width: none;

  min-height: 650px;

  margin: 0;

  overflow: hidden;
}


.hero-media img {
  position: absolute;

  inset: 0;

  width: 100% !important;
  height: 100% !important;

  max-width: none !important;

  object-fit: cover !important;

  object-position: center center !important;

  display: block;
}

@media (max-width: 1024px) {

  .topbar .wrap {
    width: 100% !important;

    padding-left: 24px !important;
    padding-right: 24px !important;
  }


  .hero-grid {
    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: none;

    min-height: auto;
  }


  .hero-media {
    order: 1;

    width: 100% !important;
    min-width: 100% !important;

    height: 480px;
    min-height: 480px;

    left: auto !important;

    margin: 0 !important;
  }


  .hero-copy {
    order: 2;

    width: 100%;

    padding:
      45px
      24px
      55px;
  }

}


@media (max-width: 600px) {

  .hero-media {
    height: 380px;
    min-height: 380px;
  }

}

/* =========================================================
   FINAL MOBILE RESPONSIVE FIX
   HEADER + HERO
========================================================= */

@media (max-width: 1024px) {

  /* -----------------------------------------
     PAGE HORIZONTAL OVERFLOW FIX
  ----------------------------------------- */

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }


  /* -----------------------------------------
     HEADER
  ----------------------------------------- */

  .topbar {
    width: 100% !important;
    max-width: 100% !important;

    position: sticky;
    top: 0;

    z-index: 9999;
  }


  .topbar .wrap,
  .header-inner {
    width: 100% !important;
    max-width: none !important;

    min-height: 72px !important;

    margin: 0 !important;

    padding:
      0
      20px !important;

    display: grid !important;

    grid-template-columns:
      auto
      1fr
      auto !important;

    align-items: center !important;

    column-gap: 16px !important;
  }


  /* LOGO */

  .brand {
    width: auto !important;
  }

  .brand img {
    width: auto !important;
    height: 43px !important;
    max-width: 110px !important;

    object-fit: contain;
  }


  /* BOOK EVENT MOBILE-LA HIDE */

  .header-cta {
    display: none !important;
  }


  /* BURGER SHOW */

  .burger {
    display: block !important;

    justify-self: end !important;

    width: 42px;
    height: 42px;

    padding: 9px;

    cursor: pointer;

    position: relative;

    z-index: 10002;
  }


  /* =========================================
     IMPORTANT:
     NORMAL MOBILE NAV MUST BE HIDDEN
  ========================================= */

  .nav {
    display: none !important;

    position: absolute !important;

    top: 72px !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;

    padding:
      10px
      20px
      20px !important;

    background: #fdf8ec;

    box-shadow:
      0 16px 30px
      rgba(0, 0, 0, .10);

    z-index: 10000;
  }


  /* BURGER CLICK PANNINA MATTUM SHOW */

  .nav.open {
    display: flex !important;

    flex-direction: column !important;

    align-items: stretch !important;

    gap: 0 !important;
  }


  .nav.open a {
    display: flex !important;

    width: 100% !important;

    padding:
      14px
      4px !important;

    font-size: 15px !important;

    border-bottom:
      1px solid
      rgba(15, 59, 46, .09);
  }


  .nav.open a:last-child {
    border-bottom: 0;
  }


  .nav a::after {
    display: none !important;
  }



  /* =========================================================
     HERO MOBILE
  ========================================================= */

  .hero {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
  }


  .hero-grid {
    width: 100% !important;
    max-width: none !important;

    min-height: auto !important;

    margin: 0 !important;

    display: flex !important;
    flex-direction: column !important;
  }


  /* IMAGE FIRST */

  .hero-media {
    order: 1 !important;

    position: relative !important;

    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    height: 360px !important;
    min-height: 360px !important;

    left: auto !important;

    margin: 0 !important;

    overflow: hidden !important;
  }


  .hero-media img {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    object-fit: cover !important;

    /* food main area visible */
    object-position:
      40%
      center !important;

    display: block !important;
  }


  /* IMAGE BOTTOM SOFT FADE */

  .hero-media::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 70px;

    z-index: 2;

    background:
      linear-gradient(
        to bottom,
        transparent,
        #fdf8ec
      );

    pointer-events: none;
  }


  /* TEXT SECOND */

  .hero-copy {
    order: 2 !important;

    width: 100% !important;
    max-width: 100% !important;

    padding:
      38px
      22px
      44px !important;

    text-align: center !important;

    align-items: center !important;
  }


  /* BADGE */

  .badge30 {
    justify-content: center !important;

    margin-bottom: 22px !important;
  }


  /* HEADING */

  .hero h1 {
    width: 100% !important;
    max-width: 500px !important;

    margin:
      0
      auto !important;

    font-size:
      clamp(
        37px,
        9.5vw,
        48px
      ) !important;

    line-height: 1.04 !important;

    text-align: center !important;
  }


  .hero h1 .script {
    margin-top: 11px !important;

    font-size: .86em !important;
  }


  /* DESCRIPTION */

  .hero-copy > p {
    width: 100% !important;
    max-width: 460px !important;

    margin:
      25px
      auto
      28px !important;

    font-size: 15px !important;

    line-height: 1.7 !important;

    text-align: center !important;
  }


  /* BUTTONS */

  .hero-actions {
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    gap: 10px !important;

    align-items: stretch !important;
  }


  .btn-primary,
  .btn-secondary {
    width: 100% !important;

    min-height: 52px !important;

    justify-content: center !important;
  }


  /* LOCATION */

  .hero-loc {
    width: 100%;

    justify-content: center !important;

    margin-top: 24px !important;

    font-size: 12px !important;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .topbar .wrap,
  .header-inner {
    min-height: 68px !important;

    padding:
      0
      16px !important;
  }


  .brand img {
    height: 38px !important;
  }


  .nav {
    top: 68px !important;
  }


  .hero-media {
    height: 320px !important;
    min-height: 320px !important;
  }


  .hero-copy {
    padding:
      34px
      18px
      40px !important;
  }


  .hero h1 {
    font-size: 36px !important;
  }


  .hero-copy > p {
    font-size: 14px !important;
  }

}


/* =========================================================
   GARLAND SECTION - FINAL MOBILE RESPONSIVE FIX
========================================================= */

@media (max-width: 650px) {

  /* SECTION */

  .garland-banner {
    width: 100% !important;
    height: auto !important;
    min-height: 680px !important;

    padding:
      90px
      18px
      170px !important;

    overflow: hidden !important;
  }


  /* =========================================
     LOTUS
  ========================================= */

  .garland-lotus {
    top: 18px !important;
    left: 28px !important;

    width: 70px !important;

    z-index: 20 !important;
  }


  /* =========================================
     TEXT CONTENT
  ========================================= */

  .garland-copy {
    position: relative !important;

    top: auto !important;
    left: auto !important;

    width: 100% !important;
    max-width: 360px !important;

    margin:
      0
      auto !important;

    transform: none !important;

    text-align: center !important;

    z-index: 20 !important;
  }


  /* WEDDING TRADITIONS */

  .garland-label {
    display: block !important;

    margin-bottom: 15px !important;

    font-size: 11px !important;

    letter-spacing: 3px !important;

    white-space: normal !important;
  }


  /* MAIN HEADING */

  .garland-copy h2 {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 auto !important;

    font-size:
      clamp(
        34px,
        10vw,
        44px
      ) !important;

    line-height: 1.02 !important;

    letter-spacing: -1px !important;

    text-align: center !important;
  }


  /* MOMENTS */

  .garland-copy h2 em {
    display: block !important;

    margin:
      8px
      0
      0 !important;

    font-size: 1.05em !important;

    transform:
      rotate(-3deg) !important;
  }


  /* DESCRIPTION */

  .garland-copy p {
    width: 100% !important;
    max-width: 320px !important;

    margin:
      22px
      auto
      24px !important;

    font-size: 14px !important;

    line-height: 1.65 !important;

    text-align: center !important;
  }


  /* BUTTON */

  .garland-button {
    min-width: 220px !important;

    height: 50px !important;

    margin:
      0
      auto !important;

    padding:
      0
      22px !important;

    font-size: 11px !important;

    display: inline-flex !important;
  }


  /* =========================================
     GARLAND PRODUCTS
  ========================================= */

  .garland-products {
    position: absolute !important;

    top: auto !important;

    left: 18px !important;
    right: 18px !important;

    bottom: 25px !important;

    width: auto !important;
    height: 125px !important;

    display: flex !important;

    align-items: flex-end !important;
    justify-content: center !important;

    gap: 8px !important;

    z-index: 10 !important;
  }


  .garland-products img {
    width: auto !important;

    /* IMPORTANT */
    height: 105px !important;

    max-width: 18% !important;

    object-fit: contain !important;

    flex-shrink: 1 !important;
  }


  /* All individual desktop heights override */

  .garland-products img:nth-child(1),
  .garland-products img:nth-child(2),
  .garland-products img:nth-child(3),
  .garland-products img:nth-child(4),
  .garland-products img:nth-child(5) {
    height: 105px !important;
  }


  /* =========================================
     BOTTOM DECORATIONS
  ========================================= */

  .garland-left-leaves {
    left: -20px !important;
    top: auto !important;
    bottom: -5px !important;

    width: 135px !important;

    z-index: 5 !important;
  }


  .garland-right-leaves {
    right: -15px !important;
    top: auto !important;
    bottom: -8px !important;

    width: 120px !important;

    z-index: 5 !important;
  }

}

/* =========================================================
   FOOTER CREDIT - MOBILE RESPONSIVE FINAL FIX
========================================================= */

@media (max-width: 650px) {

  .footer-credit {
    position: relative !important;

    min-height: 250px !important;

    margin-top: 28px !important;

    padding:
      28px
      18px
      125px !important;

    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;

    overflow: hidden !important;

    text-align: center !important;
  }


  /* CREDIT TEXT */

  .footer-credit-content {
    position: relative !important;

    z-index: 10 !important;

    width: 100% !important;
    max-width: 340px !important;

    margin: 0 auto !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;

    gap: 8px !important;
  }


  .footer-credit-content p {
    width: 100% !important;

    margin: 0 !important;

    font-size: 11px !important;
    line-height: 1.55 !important;

    text-align: center !important;
  }


  .footer-credit-content .copyright {
    margin-bottom: 4px !important;

    font-size: 11px !important;
  }


  .footer-company-link {
    display: inline !important;

    margin-left: 3px !important;

    font-size: inherit !important;
  }


  /* =========================================
     KUTHU VILAKKU
  ========================================= */

  .footer-vilakku {
    position: absolute !important;

    top: auto !important;
    bottom: 5px !important;

    width: 105px !important;
    height: auto !important;

    z-index: 2 !important;

    pointer-events: none !important;
  }


  /* LEFT LAMP */

  .footer-vilakku-left {
    left: -10px !important;
    right: auto !important;
  }


  /* RIGHT LAMP */

  .footer-vilakku-right {
    right: -10px !important;
    left: auto !important;
  }


  /* DIVIDER */

  .footer-credit .footer-bottom-line {
    top: 0 !important;
  }

}


/* =========================================================
   ABOUT MATHI CATERINGS - PREMIUM STORY SECTION
========================================================= */

.about-story-premium {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding:
    80px
    0
    68px;

  background:
    radial-gradient(
      circle at 67% 35%,
      rgba(230, 184, 75, .08),
      transparent 26%
    ),
    linear-gradient(
      110deg,
      #fffaf0 0%,
      #fffaf3 45%,
      #fff7e9 100%
    );

  border-top:
    1px solid
    rgba(184, 139, 53, .16);
}


/* =========================================================
   MAIN GRID
========================================================= */

.about-story-inner {
  position: relative;

  z-index: 5;

  width:
    min(
      1500px,
      calc(100% - 70px)
    );

  margin:
    0
    auto;

  display: grid;

  grid-template-columns:
    minmax(410px, .84fr)
    minmax(0, 1.16fr);

  align-items: center;

  gap:
    clamp(
      40px,
      5vw,
      90px
    );
}


/* =========================================================
   LEFT COPY
========================================================= */

.about-story-copy {
  position: relative;

  z-index: 10;

  padding:
    15px
    0;
}


/* EYEBROW */

.about-story-eyebrow {
  display: flex;

  align-items: center;

  gap: 7px;

  margin-bottom: 22px;

  color: #24473c;

  font-family:
    "Jost",
    sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: .18em;

  text-transform: uppercase;
}


.eyebrow-leaf {
  color: #c89432;

  font-size: 18px;

  transform:
    rotate(-18deg);
}


.eyebrow-leaf-right {
  transform:
    scaleX(-1)
    rotate(-18deg);
}


/* =========================================================
   TITLE
========================================================= */

.about-story-title {
  max-width: 720px;

  margin:
    0;

  color: #123f34;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      43px,
      4.1vw,
      69px
    );

  font-weight: 600;

  line-height: 1.03;

  letter-spacing:
    -.035em;
}


.about-story-title > span {
  display: block;
}


.about-story-title em {
  display: inline-block;

  margin-left: 7px;

  color: #e85a30;

  font-style: normal;

  font-weight: 600;
}


/* =========================================================
   GOLD DIVIDER
========================================================= */

.about-story-divider {
  width: 150px;

  margin:
    27px
    0
    24px;

  display: flex;

  align-items: center;

  gap: 9px;
}


.about-story-divider span {
  width: 115px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      #d7a443,
      #e7c270
    );
}


.about-story-divider i {
  color: #c58c2c;

  font-size: 13px;

  font-style: normal;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.about-story-description {
  max-width: 570px;

  margin: 0;

  color: #344840;

  font-family:
    "Jost",
    sans-serif;

  font-size: 17px;

  line-height: 1.65;

  font-weight: 400;
}


/* =========================================================
   STATS
========================================================= */

.about-story-stats {
  margin-top: 42px;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  align-items: stretch;
}


.story-stat {
  position: relative;

  display: grid;

  grid-template-columns:
    50px
    1fr;

  gap: 11px;

  align-items: center;

  min-width: 0;

  padding:
    0
    18px;
}


.story-stat:first-child {
  padding-left: 0;
}


.story-stat:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 8px;
  right: 0;
  bottom: 8px;

  width: 1px;

  background:
    rgba(178, 135, 54, .28);
}


/* STAT ICON */

.story-stat-icon {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #bf8728;

  font-size: 24px;

  background:
    rgba(255,255,255,.5);

  border:
    1px solid
    rgba(196, 143, 43, .26);

  box-shadow:
    0 8px 18px
    rgba(70, 50, 22, .06);

  transition:
    transform .35s
    cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease;
}


/* TEXT */

.story-stat-text {
  min-width: 0;
}


.story-stat-text strong {
  display: block;

  margin-bottom: 2px;

  color: #153f35;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      21px,
      1.5vw,
      29px
    );

  line-height: 1;
}


.story-stat-text small {
  display: block;

  color: #53635d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;

  line-height: 1.3;
}


.story-stat-text small b {
  display: block;

  color: #203d35;

  font-weight: 600;
}


/* STAT HOVER */

.story-stat:hover
.story-stat-icon {
  transform:
    translateY(-5px)
    scale(1.07);

  box-shadow:
    0 14px 25px
    rgba(196, 143, 43, .17);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.about-story-visual {
  position: relative;

  min-height: 525px;

  perspective: 1200px;
}


/* =========================================================
   BIG PHOTO
========================================================= */

.story-main-photo {
  position: absolute;

  top: 0;
  right: -70px;

  width: 100%;
  height: 480px;

  overflow: hidden;

  clip-path: polygon(
    10% 8%,
    25% 4%,
    43% 5%,
    58% 2%,
    74% 4%,
    88% 3%,
    100% 7%,

    100% 100%,

    4% 100%,
    1% 86%,
    0% 67%,
    2% 49%,
    1% 31%,
    5% 16%
  );

  filter:
    drop-shadow(
      0 24px 45px
      rgba(34, 27, 15, .18)
    );
}


.story-main-photo::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      105deg,
      rgba(11,55,43,.04),
      transparent 40%,
      rgba(0,0,0,.08)
    );

  pointer-events: none;
}


.story-main-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center
    center;

  display: block;

  transition:
    transform 1.4s
    cubic-bezier(.2,.8,.2,1);
}


.about-story-premium:hover
.story-main-photo img {
  transform:
    scale(1.035);
}


/* =========================================================
   SMALL OVERLAPPING CARDS
========================================================= */

.story-photo-card {
  position: absolute;

  z-index: 10;

  overflow: hidden;

  padding: 5px;

  border-radius: 18px;

  background: #fff;

  box-shadow:
    0 18px 35px
    rgba(40, 29, 15, .22);

  transform-style:
    preserve-3d;

  transition:
    transform .55s
    cubic-bezier(.2,.8,.2,1),
    box-shadow .55s ease;

  will-change:
    transform;
}


.story-photo-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 13px;

  display: block;
}


/* LEFT SMALL PHOTO */

.story-photo-card-one {
  left: 6%;
  bottom: 5px;

  width: 235px;
  height: 190px;

  transform:
    rotate(-2deg);
}


/* CENTER PHOTO */

.story-photo-card-two {
  left: 37%;
  bottom: 1px;

  width: 225px;
  height: 185px;

  transform:
    rotate(2.5deg);
}


/* RIGHT LAMP PHOTO */

.story-photo-card-three {
  right: 13%;
  bottom: -3px;

  width: 150px;
  height: 180px;

  transform:
    rotate(6deg);
}


/* CARD HOVER */

.story-photo-card:hover {
  z-index: 30;

  transform:
    translateY(-10px)
    rotate(0deg)
    scale(1.04);

  box-shadow:
    0 28px 45px
    rgba(40, 29, 15, .28);
}


/* =========================================================
   LEAF DECORATIONS
========================================================= */

.story-leaf {
  position: absolute;

  z-index: 4;

  pointer-events: none;

  object-fit: contain;

  filter:
    drop-shadow(
      0 8px 13px
      rgba(52, 52, 15, .10)
    );
}


.story-leaf-left {
  width: 115px;

  left: -35px;
  top: 235px;

  transform:
    rotate(-18deg);
}


.story-leaf-right {
  width: 190px;

  right: -85px;
  bottom: 40px;

  transform:
    rotate(-14deg);
}


/* =========================================================
   BACKGROUND DETAILS
========================================================= */

.about-story-dot {
  position: absolute;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #dba63c;

  opacity: .55;
}


.dot-1 {
  left: 46%;
  top: 85px;
}


.dot-2 {
  left: 48%;
  top: 115px;
}


.dot-3 {
  left: 44%;
  top: 145px;
}


/* =========================================================
   INITIAL REVEAL
========================================================= */

.about-story-copy {
  opacity: 0;

  transform:
    translateX(-35px);

  transition:
    opacity .8s ease,
    transform .8s
    cubic-bezier(.2,.8,.2,1);
}


.about-story-visual {
  opacity: 0;

  transform:
    translateX(35px);

  transition:
    opacity .9s ease .12s,
    transform .9s
    cubic-bezier(.2,.8,.2,1)
    .12s;
}


.about-story-premium.story-visible
.about-story-copy,
.about-story-premium.story-visible
.about-story-visual {
  opacity: 1;

  transform:
    translateX(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .about-story-inner {
    grid-template-columns:
      1fr;

    width:
      min(
        850px,
        calc(100% - 50px)
      );
  }


  .about-story-copy {
    text-align: center;
  }


  .about-story-eyebrow,
  .about-story-divider {
    justify-content: center;

    margin-left: auto;
    margin-right: auto;
  }


  .about-story-title,
  .about-story-description {
    margin-left: auto;
    margin-right: auto;
  }


  .about-story-stats {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;
  }


  .about-story-visual {
    width: 100%;
    max-width: 850px;

    min-height: 540px;

    margin:
      25px
      auto
      0;
  }


  .story-main-photo {
    right: 0;

    width: 100%;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .about-story-premium {
    padding:
      55px
      0
      45px;
  }


  .about-story-inner {
    width:
      calc(100% - 32px);

    gap: 25px;
  }


  .about-story-eyebrow {
    font-size: 10px;

    letter-spacing: .14em;
  }


  .about-story-title {
    font-size:
      clamp(
        35px,
        10vw,
        43px
      );
  }


  .about-story-title em {
    margin-left: 3px;
  }


  .about-story-description {
    max-width: 350px;

    font-size: 14px;

    line-height: 1.65;
  }


  /* STATS 2 × 2 */

  .about-story-stats {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap:
      22px
      4px;

    margin-top: 32px;
  }


  .story-stat {
    padding:
      0
      8px;

    grid-template-columns:
      42px
      1fr;
  }


  .story-stat:first-child {
    padding-left: 8px;
  }


  .story-stat::after {
    display: none;
  }


  .story-stat-icon {
    width: 40px;
    height: 40px;

    font-size: 19px;
  }


  .story-stat-text strong {
    font-size: 20px;
  }


  .story-stat-text small {
    font-size: 9px;
  }


  /* VISUAL */

  .about-story-visual {
    min-height: 430px;

    margin-top: 10px;
  }


  .story-main-photo {
    width: 112%;

    right: -6%;

    height: 280px;
  }


  .story-photo-card {
    border-radius: 13px;

    padding: 4px;
  }


  .story-photo-card-one {
    left: 1%;
    bottom: 3px;

    width: 42%;
    height: 140px;
  }


  .story-photo-card-two {
    left: 35%;
    bottom: -4px;

    width: 39%;
    height: 138px;
  }


  .story-photo-card-three {
    right: 0;
    bottom: 2px;

    width: 27%;
    height: 128px;
  }


  .story-leaf-left {
    width: 75px;

    left: -20px;
    top: 210px;
  }


  .story-leaf-right {
    width: 105px;

    right: -35px;
    bottom: 28px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .about-story-title {
    font-size: 34px;
  }


  .about-story-visual {
    min-height: 400px;
  }


  .story-main-photo {
    height: 255px;
  }


  .story-photo-card-one {
    height: 125px;
  }


  .story-photo-card-two {
    height: 122px;
  }


  .story-photo-card-three {
    height: 115px;
  }

}

/* =========================================================
   ABOUT STORY LEAVES - PREMIUM 3D FLOAT ANIMATION
========================================================= */

.story-leaf {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;

  filter:
    drop-shadow(
      0 10px 16px
      rgba(32, 67, 37, .16)
    );
}


/* =========================================================
   LEFT SMALL LEAF
========================================================= */

.story-leaf-left {
  transform-origin: 70% 80%;

  animation:
    leafFloatLeft
    4.8s
    cubic-bezier(.45, .05, .55, .95)
    infinite;
}


@keyframes leafFloatLeft {

  0% {
    transform:
      perspective(800px)
      translate3d(0, 0, 0)
      rotate(-18deg)
      rotateX(0deg)
      rotateY(0deg);
  }

  25% {
    transform:
      perspective(800px)
      translate3d(7px, -8px, 14px)
      rotate(-13deg)
      rotateX(6deg)
      rotateY(-10deg);
  }

  50% {
    transform:
      perspective(800px)
      translate3d(-3px, -13px, 20px)
      rotate(-20deg)
      rotateX(-4deg)
      rotateY(9deg);
  }

  75% {
    transform:
      perspective(800px)
      translate3d(-8px, -5px, 10px)
      rotate(-23deg)
      rotateX(4deg)
      rotateY(5deg);
  }

  100% {
    transform:
      perspective(800px)
      translate3d(0, 0, 0)
      rotate(-18deg)
      rotateX(0deg)
      rotateY(0deg);
  }

}


/* =========================================================
   RIGHT BIG LEAF
========================================================= */

.story-leaf-right {
  transform-origin: 25% 90%;

  animation:
    leafFloatRight
    5.6s
    cubic-bezier(.45, .05, .55, .95)
    infinite;
}


@keyframes leafFloatRight {

  0% {
    transform:
      perspective(1000px)
      translate3d(0, 0, 0)
      rotate(-14deg)
      rotateX(0deg)
      rotateY(0deg);
  }

  25% {
    transform:
      perspective(1000px)
      translate3d(-8px, -5px, 18px)
      rotate(-9deg)
      rotateX(5deg)
      rotateY(8deg);
  }

  50% {
    transform:
      perspective(1000px)
      translate3d(-14px, -12px, 28px)
      rotate(-16deg)
      rotateX(-5deg)
      rotateY(-11deg);
  }

  75% {
    transform:
      perspective(1000px)
      translate3d(-5px, -6px, 15px)
      rotate(-19deg)
      rotateX(3deg)
      rotateY(6deg);
  }

  100% {
    transform:
      perspective(1000px)
      translate3d(0, 0, 0)
      rotate(-14deg)
      rotateX(0deg)
      rotateY(0deg);
  }

}

/* =========================================================
   OUR STORY - EXACT PREMIUM TIMELINE DESIGN
========================================================= */

.our-story-section {
  position: relative;

  width: 100%;

  padding:
    60px
    0
    70px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(218, 174, 87, .09),
      transparent 34%
    ),
    #fffaf0;
}


/* MAIN CONTAINER */

.our-story-container {
  position: relative;

  width:
    min(
      calc(100% - 80px),
      1380px
    );

  min-height: 470px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    390px
    minmax(0, 1fr);

  gap: 48px;

  align-items: stretch;

  border-radius: 26px;

  background:
    rgba(255, 250, 240, .82);

  box-shadow:
    0 18px 50px
    rgba(88, 58, 18, .06);

  overflow: hidden;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.our-story-visual {
  position: relative;

  height: 470px;

  overflow: hidden;

  border-radius:
    24px
    0
    0
    24px;
}


/* LARGE IMAGE */

.our-story-main-image {
  position: absolute;

  inset: 0;

  overflow: hidden;

  border-radius:
    24px
    0
    0
    24px;
}


.our-story-main-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(6, 53, 40, .08),
      transparent 40%
    );

  pointer-events: none;
}


.our-story-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center
    center;

  display: block;

  transition:
    transform 1.3s
    cubic-bezier(.16, 1, .3, 1);
}


.our-story-visual:hover
.our-story-main-image img {
  transform:
    scale(1.045);
}


/* =========================================================
   LEFT OUR STORY CARD
========================================================= */

.our-story-badge {
  position: absolute;

  z-index: 5;

  top: 120px;
  left: 0;

  width: 92px;
  height: 165px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-radius:
    0
    9px
    9px
    0;

  border:
    1px solid
    rgba(202, 157, 64, .75);

  border-left: 0;

  background:
    linear-gradient(
      160deg,
      #0a3b2d,
      #0b4a37
    );

  box-shadow:
    7px 8px 22px
    rgba(7, 49, 37, .18);
}


.badge-title {
  color:
    #f3c963;

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;

  font-weight: 700;

  line-height: 1.35;

  letter-spacing: .13em;
}


.badge-line {
  position: relative;

  width: 27px;
  height: 1px;

  margin:
    13px
    0
    15px;

  background:
    rgba(229, 186, 84, .60);
}


.badge-line::after {
  content: "";

  position: absolute;

  width: 4px;
  height: 4px;

  left: 50%;
  top: 50%;

  border-radius: 50%;

  background:
    #d8ac49;

  transform:
    translate(
      -50%,
      -50%
    );
}


.badge-flower {
  color:
    rgba(214, 169, 71, .50);

  font-size: 43px;

  line-height: 1;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.our-story-content {
  position: relative;

  min-width: 0;

  padding:
    34px
    42px
    28px
    0;
}


/* DECORATIVE LEAF */

.story-outline-leaf {
  position: absolute;

  z-index: 0;

  top: -35px;
  right: -8px;

  width: 250px;
  height: 220px;

  overflow: hidden;

  color:
    rgba(199, 147, 48, .12);

  font-size: 260px;

  line-height: 1;

  pointer-events: none;

  transform:
    rotate(-20deg);
}


.story-outline-leaf span {
  display: block;
}


/* =========================================================
   HEADING
========================================================= */

.story-heading-area {
  position: relative;

  z-index: 3;

  max-width: 650px;
}


.story-heading-area h2 {
  margin: 0;

  color:
    #123f32;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      35px,
      3vw,
      48px
    );

  font-weight: 600;

  line-height: 1.02;

  letter-spacing:
    -.028em;
}


.story-heading-area h2 span {
  display: block;
}


/* HEADING GOLD LINE */

.story-heading-line {
  width: 105px;

  display: flex;

  align-items: center;

  gap: 7px;

  margin:
    15px
    0
    15px;
}


.story-heading-line span {
  width: 75px;
  height: 1px;

  background:
    #d99a2b;
}


.story-heading-line i {
  color:
    #c68c24;

  font-size: 8px;

  font-style: normal;
}


.story-heading-area p {
  max-width: 660px;

  margin: 0;

  color:
    #4f544e;

  font-family:
    "Jost",
    sans-serif;

  font-size: 16px;

  line-height: 1.55;
}


/* =========================================================
   TIMELINE
========================================================= */

.story-timeline {
  position: relative;

  z-index: 4;

  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap: 10px;

  margin-top: 25px;

  padding-top: 0;
}


/* HORIZONTAL LINE */

.story-timeline-line {
  position: absolute;

  z-index: 0;

  left: 9%;
  right: 9%;

  top: 31px;

  height: 1px;

  background:
    rgba(198, 143, 43, .38);

  overflow: hidden;
}


.timeline-progress {
  display: block;

  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      #cf942f,
      #dfb75b
    );

  transition:
    width 2s
    cubic-bezier(.16, 1, .3, 1);
}


/* RUN WHEN SECTION VISIBLE */

.our-story-section.story-active
.timeline-progress {
  width: 100%;
}


/* =========================================================
   TIMELINE ITEM
========================================================= */

.story-timeline-item {
  position: relative;

  z-index: 2;

  text-align: center;

  opacity: 0;

  transform:
    translateY(22px);

  transition:
    opacity .7s ease,
    transform .7s
    cubic-bezier(.16, 1, .3, 1);
}


.our-story-section.story-active
.story-timeline-item {
  opacity: 1;

  transform:
    translateY(0);
}


.our-story-section.story-active
.story-timeline-item:nth-child(2) {
  transition-delay:
    .15s;
}


.our-story-section.story-active
.story-timeline-item:nth-child(3) {
  transition-delay:
    .30s;
}


.our-story-section.story-active
.story-timeline-item:nth-child(4) {
  transition-delay:
    .45s;
}


.our-story-section.story-active
.story-timeline-item:nth-child(5) {
  transition-delay:
    .60s;
}


/* =========================================================
   ROUND IMAGE
========================================================= */

.timeline-image-wrap {
  position: relative;

  width: 70px;
  height: 70px;

  margin:
    0
    auto
    11px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background:
    #fff8e9;

  border:
    2px solid
    #cf8c21;

  box-shadow:
    0 0 0 4px
    rgba(255, 250, 238, .98),
    0 8px 18px
    rgba(72, 48, 12, .12);

  transition:
    transform .55s
    cubic-bezier(.16,1,.3,1),
    box-shadow .55s ease;
}


.timeline-image {
  width: 58px;
  height: 58px;

  overflow: hidden;

  border-radius: 50%;
}


.timeline-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  filter:
    sepia(.15)
    saturate(.8);

  transition:
    transform .7s
    cubic-bezier(.16,1,.3,1);
}


/* hover */

.story-timeline-item:hover
.timeline-image-wrap {
  transform:
    translateY(-6px)
    scale(1.06);

  box-shadow:
    0 0 0 5px
    rgba(255,250,238,.98),
    0 15px 30px
    rgba(72,48,12,.18);
}


.story-timeline-item:hover
.timeline-image img {
  transform:
    scale(1.09);
}


/* =========================================================
   SMALL GREEN DOT
========================================================= */

.timeline-dot {
  position: absolute;

  top: 27px;

  width: 11px;
  height: 11px;

  border-radius: 50%;

  background:
    #0b4837;

  box-shadow:
    0 0 0 3px
    #fffaf0;
}


/* First and second side positions */

.story-timeline-item:not(:last-child)
.timeline-dot {
  right: -10px;
}


/* Last item doesn't need extra dot */

.story-timeline-item:last-child
.timeline-dot {
  display: none;
}


/* =========================================================
   TIMELINE TEXT
========================================================= */

.timeline-content {
  max-width: 155px;

  margin-inline: auto;
}


.timeline-content strong {
  display: block;

  margin-bottom: 4px;

  color:
    #39443e;

  font-family:
    "Jost",
    sans-serif;

  font-size: 17px;

  font-weight: 600;
}


.timeline-content h3 {
  min-height: 38px;

  margin:
    0
    0
    7px;

  color:
    #263a32;

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  font-weight: 600;

  line-height: 1.25;
}


.timeline-content p {
  margin: 0;

  color:
    #626660;

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;

  line-height: 1.45;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .our-story-container {
    width:
      calc(100% - 50px);

    grid-template-columns:
      320px
      minmax(0, 1fr);

    gap: 35px;
  }


  .our-story-content {
    padding-right: 25px;
  }


  .story-heading-area h2 {
    font-size: 36px;
  }


  .timeline-image-wrap {
    width: 62px;
    height: 62px;
  }


  .timeline-image {
    width: 51px;
    height: 51px;
  }


  .story-timeline-line {
    top: 27px;
  }


  .timeline-dot {
    top: 23px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .our-story-section {
    padding:
      40px
      0;
  }


  .our-story-container {
    width:
      calc(100% - 30px);

    display: block;

    overflow: visible;

    border-radius: 20px;
  }


  .our-story-visual {
    height: 400px;

    border-radius:
      20px
      20px
      0
      0;
  }


  .our-story-main-image {
    border-radius:
      20px
      20px
      0
      0;
  }


  .our-story-content {
    padding:
      32px
      22px
      35px;
  }


  .story-heading-area h2 {
    font-size:
      clamp(
        32px,
        8vw,
        41px
      );
  }


  .story-heading-area p {
    font-size: 13px;
  }


  .story-timeline {
    grid-template-columns:
      1fr;

    gap: 25px;

    margin-top: 35px;

    padding-left: 15px;
  }


  .story-timeline-line {
    top: 34px;
    bottom: 34px;

    left: 48px;
    right: auto;

    width: 1px;
    height: auto;
  }


  .timeline-progress {
    width: 100%;
    height: 0;
  }


  .our-story-section.story-active
  .timeline-progress {
    width: 100%;
    height: 100%;
  }


  .story-timeline-item {
    min-height: 90px;

    display: grid;

    grid-template-columns:
      70px
      1fr;

    column-gap: 18px;

    align-items: center;

    text-align: left;
  }


  .timeline-image-wrap {
    margin: 0;

    grid-row: 1;
  }


  .timeline-content {
    max-width: none;

    margin: 0;
  }


  .timeline-content h3 {
    min-height: 0;
  }


  .timeline-dot {
    display: none !important;
  }

}


/* =========================================
   GOLD LEAF DECORATION
========================================= */

.story-outline-leaf {
  position: absolute;

  z-index: 1;

  top: -25px;
  right: -35px;

  width: 330px;
  height: 260px;

  pointer-events: none;

  overflow: hidden;

  opacity: 0.22;
}


.story-outline-leaf img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  object-position: top right;

  display: block;

  transform:
    rotate(-8deg)
    scale(1.08);

  transform-origin:
    top right;

  filter:
    sepia(.15)
    saturate(.8);

  transition:
    transform 1.2s
    cubic-bezier(.16,1,.3,1);
}


/* =========================================================
   MATHI CATERINGS - OUR VALUES
========================================================= */

.values-section {
  position: relative;

  width: 100%;

  margin: 70px 0;

  padding:
    56px
    0
    58px;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 70% 50%,
      rgba(10, 91, 72, .35),
      transparent 42%
    ),
    linear-gradient(
      105deg,
      #003e31 0%,
      #004c3c 45%,
      #003d31 100%
    );
}


/* subtle premium texture */

.values-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: .20;

  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(255,255,255,.05),
      transparent 25%
    ),
    radial-gradient(
      circle at 75% 70%,
      rgba(255,255,255,.035),
      transparent 30%
    );
}


/* =========================================================
   TORN PAPER
========================================================= */

.values-torn {
  position: absolute;

  left: -1%;
  z-index: 10;

  width: 102%;
  height: 28px;

  background: #fffaf0;

  pointer-events: none;
}


/* TOP */

.values-torn-top {
  top: -14px;

  clip-path: polygon(
    0 0,
    100% 0,
    100% 45%,
    97% 52%,
    94% 39%,
    91% 58%,
    88% 45%,
    85% 63%,
    82% 47%,
    79% 56%,
    76% 44%,
    73% 62%,
    70% 46%,
    67% 57%,
    64% 43%,
    61% 62%,
    58% 47%,
    55% 58%,
    52% 42%,
    49% 60%,
    46% 45%,
    43% 56%,
    40% 43%,
    37% 61%,
    34% 46%,
    31% 57%,
    28% 42%,
    25% 59%,
    22% 45%,
    19% 57%,
    16% 43%,
    13% 61%,
    10% 46%,
    7% 57%,
    4% 43%,
    0 55%
  );
}


/* BOTTOM */

.values-torn-bottom {
  bottom: -14px;

  clip-path: polygon(
    0 45%,
    4% 58%,
    7% 43%,
    10% 57%,
    13% 42%,
    16% 60%,
    19% 46%,
    22% 58%,
    25% 41%,
    28% 57%,
    31% 45%,
    34% 61%,
    37% 44%,
    40% 58%,
    43% 42%,
    46% 60%,
    49% 45%,
    52% 57%,
    55% 41%,
    58% 60%,
    61% 46%,
    64% 58%,
    67% 43%,
    70% 61%,
    73% 45%,
    76% 57%,
    79% 42%,
    82% 60%,
    85% 45%,
    88% 58%,
    91% 42%,
    94% 60%,
    97% 45%,
    100% 56%,
    100% 100%,
    0 100%
  );
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.values-container {
  position: relative;

  z-index: 3;

  width:
    min(
      94%,
      1500px
    );

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    270px
    minmax(0, 1fr);

  gap: 45px;

  align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.values-intro {
  padding-left: 10px;
}


.values-eyebrow {
  display: flex;
  align-items: center;

  gap: 7px;

  margin-bottom: 10px;

  color: #d59a2c;

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 2px;
}


.values-eyebrow i {
  font-size: 13px;
}


/* TITLE */

.values-title {
  margin: 0;

  color: #fffdf6;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      36px,
      3vw,
      50px
    );

  line-height: 1.03;

  font-weight: 600;

  letter-spacing: -.5px;
}


.values-title span {
  display: block;
}


/* DESCRIPTION */

.values-description {
  margin:
    15px
    0
    0;

  color:
    rgba(
      255,
      255,
      255,
      .88
    );

  font-family:
    "Jost",
    sans-serif;

  font-size: 17px;

  line-height: 1.45;

  font-weight: 400;
}


/* =========================================================
   VALUES LIST
========================================================= */

.values-list {
  display: grid;

  grid-template-columns:
    repeat(
      5,
      minmax(0, 1fr)
    );

  align-items: center;
}


/* =========================================================
   EACH ITEM
========================================================= */

.value-item {
  position: relative;

  min-height: 160px;

  padding:
    5px
    24px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;
}


/* VERTICAL GOLD DIVIDER */

.value-item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 16px;
  right: 0;

  width: 1px;
  height: 132px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(213,154,44,.70) 18%,
      rgba(213,154,44,.70) 82%,
      transparent
    );
}


/* =========================================================
   ICON
========================================================= */

.value-icon {
  width: 55px;
  height: 55px;

  margin-bottom: 7px;

  display: grid;

  place-items: center;

  color: #d79a2c;

  font-size: 40px;

  line-height: 1;
}


.value-icon i {
  display: block;
}


/* =========================================================
   VALUE HEADING
========================================================= */

.value-item h3 {
  margin:
    0
    0
    10px;

  color: #efc469;

  font-family:
    "Jost",
    sans-serif;

  font-size: 18px;

  line-height: 1.05;

  font-weight: 600;
}


.value-item h3 span {
  display: block;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.value-item p {
  max-width: 145px;

  margin: 0;

  color:
    rgba(
      255,
      255,
      255,
      .88
    );

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  line-height: 1.5;

  font-weight: 400;
}


/* =========================================================
   VERY SUBTLE HOVER
========================================================= */

.value-item {
  transition:
    transform .4s ease;
}


.value-icon {
  transition:
    transform .45s
    cubic-bezier(.16,1,.3,1),
    color .4s ease;
}


.value-item:hover {
  transform:
    translateY(-5px);
}


.value-item:hover
.value-icon {
  color: #f0c86c;

  transform:
    translateY(-3px)
    scale(1.08);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

  .values-container {
    grid-template-columns:
      230px
      1fr;

    gap: 25px;
  }


  .value-item {
    padding:
      5px
      14px;
  }


  .value-item p {
    font-size: 10px;
  }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 950px) {

  .values-section {
    padding:
      65px
      0;
  }


  .values-container {
    grid-template-columns: 1fr;

    gap: 40px;
  }


  .values-intro {
    text-align: center;

    padding: 0;
  }


  .values-eyebrow {
    justify-content: center;
  }


  .values-description br {
    display: none;
  }


  .values-list {
    grid-template-columns:
      repeat(
        3,
        1fr
      );

    row-gap: 35px;
  }


  .value-item:nth-child(3)::after {
    display: none;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .values-container {
    width: 88%;
  }


  .values-title {
    font-size: 34px;
  }


  .values-list {
    grid-template-columns:
      1fr
      1fr;

    gap: 25px 0;
  }


  .value-item {
    min-height: 170px;

    padding:
      10px
      15px;
  }


  .value-item:nth-child(2)::after,
  .value-item:nth-child(4)::after {
    display: none;
  }


  .value-item:nth-child(3)::after {
    display: block;
  }


  .value-item p {
    font-size: 11px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

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


  .value-item {
    min-height: auto;

    padding:
      25px
      10px;
  }


  .value-item::after {
    display: none !important;
  }


  .value-item:not(:last-child) {
    border-bottom:
      1px solid
      rgba(
        213,
        154,
        44,
        .25
      );
  }

}

/* =========================================================
   OUR STRENGTH / TEAM SECTION
========================================================= */

.strength-section {
  position: relative;

  width: 100%;

  padding:
    65px
    0
    70px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 50%,
      rgba(220, 179, 105, .08),
      transparent 30%
    ),
    #fffaf1;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.strength-shell {
  position: relative;

  width:
    min(
      calc(100% - 70px),
      1450px
    );

  min-height: 420px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(260px, .72fr)
    minmax(680px, 2.28fr);

  gap: 48px;

  align-items: center;

  overflow: visible;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.strength-content {
  position: relative;

  z-index: 8;

  max-width: 340px;

  padding-left: 16px;
}


/* EYEBROW */

.strength-eyebrow {
  display: flex;

  align-items: center;

  gap: 7px;

  margin-bottom: 12px;

  color: #db6a38;

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .18em;

  text-transform: uppercase;
}


.strength-eyebrow i {
  font-size: 12px;
}


/* =========================================================
   HEADING
========================================================= */

.strength-title {
  margin: 0;

  color: #123e32;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      38px,
      3.1vw,
      52px
    );

  font-weight: 600;

  line-height: .98;

  letter-spacing: -.035em;
}


.strength-title span {
  display: block;
}


.strength-title em {
  display: block;

  margin-top: 4px;

  color: #ef642f;

  font-family:
    "Yellowtail",
    cursive;

  font-size: 1.08em;

  font-weight: 400;

  line-height: 1;

  letter-spacing: 0;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.strength-description {
  max-width: 285px;

  margin:
    20px
    0
    22px;

  color: #49564f;

  font-family:
    "Jost",
    sans-serif;

  font-size: 16px;

  line-height: 1.65;
}


/* =========================================================
   BUTTON
========================================================= */

.strength-button {
  position: relative;

  min-height: 43px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 25px;

  padding:
    0
    20px;

  overflow: hidden;

  border-radius: 5px;

  background:
    linear-gradient(
      135deg,
      #074737,
      #0c5944
    );

  color: #ffffff;

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .08em;

  box-shadow:
    0 10px 22px
    rgba(8, 69, 52, .15);

  transition:
    transform .35s
    cubic-bezier(.16,1,.3,1),
    box-shadow .35s ease;
}


.strength-button::before {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      105deg,
      transparent,
      rgba(255,255,255,.25),
      transparent
    );

  transform: skewX(-20deg);

  transition:
    left .7s
    cubic-bezier(.16,1,.3,1);
}


.strength-button:hover {
  transform:
    translateY(-3px);

  box-shadow:
    0 16px 30px
    rgba(8, 69, 52, .22);
}


.strength-button:hover::before {
  left: 140%;
}


.strength-button i {
  color: #e0b54f;

  font-size: 13px;

  transition:
    transform .35s ease;
}


.strength-button:hover i {
  transform:
    translateX(5px);
}


/* =========================================================
   IMAGE GALLERY
========================================================= */

.strength-gallery {
  position: relative;

  width: 100%;

  height: 390px;

  display: grid;

  grid-template-columns:
    1.1fr
    1fr;

  grid-template-rows:
    1fr
    .92fr;

  gap: 8px;

  perspective: 1200px;
}


/* COMMON PHOTO */

.strength-photo {
  position: relative;

  overflow: hidden;

  border-radius: 14px;

  background: #ddd;

  box-shadow:
    0 18px 35px
    rgba(47, 38, 22, .12);

  transform-style: preserve-3d;

  transition:
    transform .65s
    cubic-bezier(.16,1,.3,1),
    box-shadow .6s ease;
}


.strength-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform 1s
    cubic-bezier(.16,1,.3,1);
}


/* MAIN IMAGE */

.strength-photo-main {
  grid-column: 1;
  grid-row: 1 / 3;

  border-radius:
    14px
    14px
    14px
    14px;
}


/* TEAM TOP */

.strength-photo-team {
  grid-column: 2;
  grid-row: 1;
}


/* KITCHEN BOTTOM */

.strength-photo-kitchen {
  grid-column: 2;
  grid-row: 2;
}


/* =========================================================
   PHOTO HOVER
========================================================= */

.strength-photo:hover {
  z-index: 10;

  transform:
    translateY(-6px)
    translateZ(18px);

  box-shadow:
    0 28px 52px
    rgba(47,38,22,.18);
}


.strength-photo:hover img {
  transform:
    scale(1.055);
}


/* =========================================================
   30+ CIRCULAR BADGE
========================================================= */

.strength-badge {
  position: absolute;

  z-index: 20;

  left: 52%;
  top: 50%;

  width: 125px;
  height: 125px;

  transform:
    translate(
      -50%,
      -50%
    );

  display: grid;

  place-items: center;

  border-radius: 50%;

  padding: 7px;

  background:
    #fff9ea;

  border:
    2px solid
    #d3a542;

  box-shadow:
    0 14px 35px
    rgba(25, 42, 32, .24);

  animation:
    strengthBadgeFloat
    4s
    ease-in-out
    infinite;
}


.strength-badge::before {
  content: "";

  position: absolute;

  inset: -6px;

  border-radius: 50%;

  border:
    1px solid
    rgba(211,165,66,.45);

  animation:
    strengthBadgeRing
    8s
    linear
    infinite;
}


.strength-badge-inner {
  width: 100%;
  height: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 25%,
      #156b55,
      #063f31 70%
    );

  color: #ffffff;

  box-shadow:
    inset
    0
    0
    20px
    rgba(255,255,255,.06);
}


.strength-badge strong {
  color: #fff9e9;

  font-family:
    "Playfair Display",
    serif;

  font-size: 33px;

  line-height: 1;

  font-weight: 500;
}


.strength-badge span {
  margin-top: 4px;

  color:
    rgba(255,255,255,.85);

  font-family:
    "Jost",
    sans-serif;

  font-size: 8px;

  letter-spacing: .09em;
}


.strength-badge b {
  color: #fff;

  font-family:
    "Jost",
    sans-serif;

  font-size: 8px;

  line-height: 1.2;

  letter-spacing: .05em;
}


@keyframes strengthBadgeFloat {

  0%,
  100% {
    transform:
      translate(
        -50%,
        -50%
      )
      translateY(0)
      rotate(0deg);
  }

  50% {
    transform:
      translate(
        -50%,
        -50%
      )
      translateY(-7px)
      rotate(2deg);
  }

}


@keyframes strengthBadgeRing {

  to {
    transform:
      rotate(360deg);
  }

}


/* =========================================================
   LEAF DECORATION
========================================================= */

.strength-leaf {
  position: absolute;

  z-index: 12;

  pointer-events: none;

  object-fit: contain;

  filter:
    drop-shadow(
      0 8px 14px
      rgba(25, 65, 40, .12)
    );
}


/* LEFT LEAF */

.strength-leaf-left {
  width: 95px;

  left: 250px;

  bottom: 55px;

  transform:
    rotate(-23deg);

  animation:
    strengthLeafLeft
    5s
    ease-in-out
    infinite;
}


/* RIGHT LEAF */

.strength-leaf-right {
  width: 155px;

  right: -70px;

  bottom: 5px;

  transform:
    rotate(-19deg);

  animation:
    strengthLeafRight
    5.6s
    ease-in-out
    infinite;
}


@keyframes strengthLeafLeft {

  0%,
  100% {
    transform:
      translateY(0)
      rotate(-23deg);
  }

  50% {
    transform:
      translateY(-9px)
      rotate(-17deg);
  }

}


@keyframes strengthLeafRight {

  0%,
  100% {
    transform:
      translateY(0)
      rotate(-19deg);
  }

  50% {
    transform:
      translateY(-10px)
      rotate(-13deg);
  }

}


/* =========================================================
   LIGHT BACKGROUND DECORATION
========================================================= */

.strength-shape {
  position: absolute;

  z-index: 0;

  border-radius: 50%;

  pointer-events: none;
}


.strength-shape-one {
  width: 300px;
  height: 300px;

  left: -180px;
  bottom: -150px;

  background:
    rgba(218, 175, 90, .08);
}


.strength-shape-two {
  width: 200px;
  height: 200px;

  right: -100px;
  top: -110px;

  border:
    1px solid
    rgba(208,164,78,.12);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .strength-shell {
    grid-template-columns:
      300px
      1fr;

    gap: 30px;
  }


  .strength-gallery {
    height: 360px;
  }


  .strength-leaf-left {
    left: 250px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 780px) {

  .strength-section {
    padding:
      50px
      0;
  }


  .strength-shell {
    width:
      calc(100% - 35px);

    display: flex;

    flex-direction: column;

    gap: 35px;
  }


  .strength-content {
    max-width: 100%;

    padding-left: 0;

    text-align: center;
  }


  .strength-eyebrow {
    justify-content: center;
  }


  .strength-description {
    max-width: 500px;

    margin-left: auto;
    margin-right: auto;
  }


  .strength-gallery {
    width: 100%;

    height: 480px;

    grid-template-columns:
      1fr
      1fr;

    grid-template-rows:
      1.2fr
      .8fr;
  }


  .strength-photo-main {
    grid-column:
      1 / 3;

    grid-row: 1;
  }


  .strength-photo-team {
    grid-column: 1;
    grid-row: 2;
  }


  .strength-photo-kitchen {
    grid-column: 2;
    grid-row: 2;
  }


  .strength-badge {
    left: 50%;
    top: 58%;

    width: 105px;
    height: 105px;
  }


  .strength-badge strong {
    font-size: 27px;
  }


  .strength-leaf-left {
    display: none;
  }


  .strength-leaf-right {
    width: 110px;

    right: -30px;

    bottom: -20px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .strength-title {
    font-size: 38px;
  }


  .strength-gallery {
    height: 400px;

    gap: 6px;
  }


  .strength-photo {
    border-radius: 10px;
  }


  .strength-badge {
    width: 90px;
    height: 90px;
  }


  .strength-badge strong {
    font-size: 23px;
  }


  .strength-badge span,
  .strength-badge b {
    font-size: 6px;
  }

}


/* =========================================================
   OUR COMMITMENT SECTION
========================================================= */

.commitment-section {
  position: relative;

  width: 100%;

  padding:
    55px
    0
    65px;

  background:
    #fffaf1;
}


/* =========================================================
   MAIN GREEN CARD
========================================================= */

.commitment-card {
  position: relative;

  width:
    min(
      calc(100% - 55px),
      1460px
    );

  min-height: 220px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(310px, 1.05fr)
    minmax(350px, 1fr)
    1px
    minmax(330px, .95fr);

  align-items: stretch;

  overflow: visible;

  border-radius: 24px;

  background:
    radial-gradient(
      circle at 88% 40%,
      rgba(16, 113, 88, .22),
      transparent 28%
    ),
    linear-gradient(
      105deg,
      #043e31 0%,
      #004d3c 48%,
      #003b30 100%
    );

  box-shadow:
    0 18px 40px
    rgba(40, 31, 15, .08);
}


/* =========================================================
   LEFT FOOD IMAGE
========================================================= */

.commitment-food {
  position: relative;

  min-height: 220px;

  overflow: hidden;

  border-radius:
    24px
    0
    0
    24px;
}


.commitment-food img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center center;

  display: block;

  transition:
    transform 1.1s
    cubic-bezier(.16,1,.3,1);
}


.commitment-card:hover
.commitment-food img {
  transform:
    scale(1.04);
}


/* Green blend on image */

.commitment-food-overlay {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent 55%,
      rgba(2, 61, 47, .78) 100%
    );
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.commitment-center {
  position: relative;

  z-index: 5;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    30px
    45px
    30px
    48px;
}


/* EYEBROW */

.commitment-eyebrow {
  margin-bottom: 12px;

  color:
    #d9a33d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing:
    .18em;

  text-transform:
    uppercase;
}


/* TITLE */

.commitment-title {
  margin: 0;

  max-width: 430px;

  color:
    #fffaf0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      34px,
      2.9vw,
      48px
    );

  line-height:
    1.02;

  font-weight:
    600;

  letter-spacing:
    -.03em;
}


.commitment-title span {
  display: block;
}


.commitment-title em {
  color:
    #e98925;

  font-family:
    "Yellowtail",
    cursive;

  font-size:
    1.02em;

  font-weight:
    400;

  font-style:
    normal;

  white-space:
    nowrap;
}


/* =========================================================
   VERTICAL GOLD DIVIDER
========================================================= */

.commitment-divider {
  align-self: center;

  width: 1px;
  height: 155px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(211, 163, 64, .70) 18%,
      rgba(211, 163, 64, .70) 82%,
      transparent
    );
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.commitment-right {
  position: relative;

  z-index: 4;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    28px
    70px
    28px
    35px;
}


/* DESCRIPTION */

.commitment-description {
  max-width: 350px;

  margin:
    0
    0
    14px;

  color:
    rgba(
      255,
      255,
      255,
      .90
    );

  font-family:
    "Jost",
    sans-serif;

  font-size:
    13px;

  line-height:
    1.55;
}


/* =========================================================
   CHECK LIST
========================================================= */

.commitment-list {
  display: grid;

  gap: 8px;

  margin: 0;

  padding: 0;

  list-style: none;
}


.commitment-list li {
  display: flex;

  align-items: center;

  gap: 9px;

  color:
    rgba(
      255,
      255,
      255,
      .88
    );

  font-family:
    "Jost",
    sans-serif;

  font-size:
    12px;
}


/* GOLD CIRCLE CHECK */

.commitment-check {
  width: 18px;
  height: 18px;

  flex:
    0
    0
    18px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #e9b54b,
      #ca8b20
    );

  color:
    #064132;

  font-size: 11px;

  box-shadow:
    0 4px 10px
    rgba(0,0,0,.15);
}


/* =========================================================
   LAMP
========================================================= */

.commitment-lamp {
  position: absolute;

  z-index: 10;

  right: -23px;
  bottom: -14px;

  width: 105px;

  height: auto;

  object-fit:
    contain;

  pointer-events:
    none;

  filter:
    drop-shadow(
      0 13px 15px
      rgba(24, 19, 6, .20)
    );

  transform:
    rotate(-2deg);

  transform-origin:
    bottom center;

  animation:
    commitmentLampFloat
    4.5s
    ease-in-out
    infinite;
}


@keyframes commitmentLampFloat {

  0%,
  100% {
    transform:
      translateY(0)
      rotate(-2deg);
  }

  50% {
    transform:
      translateY(-5px)
      rotate(1deg);
  }

}


/* =========================================================
   RIGHT SUBTLE DECORATION
========================================================= */

.commitment-leaf-pattern {
  position: absolute;

  z-index: 1;

  right: 0;
  top: 0;

  width: 170px;
  height: 100%;

  opacity: .10;

  pointer-events: none;

  background-image:
    radial-gradient(
      ellipse at 60% 35%,
      transparent 48%,
      rgba(218,170,74,.6) 49%,
      transparent 51%
    );

  background-size:
    70px
    60px;
}


/* =========================================================
   SMALL GOLD DETAIL
========================================================= */

.commitment-center::before {
  content: "";

  position: absolute;

  left: 48px;
  top: 25px;

  width: 40px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      #d89b32,
      transparent
    );

  opacity:
    .55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .commitment-card {
    grid-template-columns:
      30%
      35%
      1px
      35%;
  }


  .commitment-center {
    padding:
      28px
      28px;
  }


  .commitment-right {
    padding:
      26px
      50px
      26px
      25px;
  }


  .commitment-title {
    font-size:
      34px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 780px) {

  .commitment-section {
    padding:
      40px
      0;
  }


  .commitment-card {
    width:
      calc(100% - 30px);

    display: block;

    overflow: hidden;

    border-radius:
      20px;
  }


  .commitment-food {
    height: 260px;

    min-height: 0;

    border-radius:
      20px
      20px
      0
      0;
  }


  .commitment-food-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(3,61,48,.85),
        transparent 55%
      );
  }


  .commitment-center {
    padding:
      30px
      25px
      20px;
  }


  .commitment-divider {
    width:
      calc(100% - 50px);

    height: 1px;

    margin:
      0
      auto;

    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(211,163,64,.55),
        transparent
      );
  }


  .commitment-right {
    padding:
      22px
      25px
      45px;
  }


  .commitment-title {
    font-size:
      37px;
  }


  .commitment-lamp {
    width:
      80px;

    right:
      -15px;

    bottom:
      -12px;
  }

}


/* =========================================================
   SERVICES HERO
========================================================= */

.services-hero {
  position: relative;

  width: 100%;

  min-height: 620px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 18% 45%,
      rgba(221, 179, 93, .07),
      transparent 32%
    ),
    #fffaf1;
}


/* =========================================================
   MAIN GRID
========================================================= */

.services-hero-inner {
  position: relative;

  width:
    min(
      calc(100% - 70px),
      1500px
    );

  min-height: 620px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(420px, .88fr)
    minmax(620px, 1.12fr);

  align-items: stretch;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.services-hero-copy {
  position: relative;
  z-index: 10;

  display: flex;
  flex-direction: column;

  justify-content: flex-start;

  padding:
    70px
    42px
    48px
    10px;
}

/* =========================================================
   BREADCRUMB
========================================================= */

.services-breadcrumb {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 26px;

  color: #59615d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;
}


.services-breadcrumb a {
  color: #52605b;
}


.services-breadcrumb i {
  font-size: 9px;
}


.services-breadcrumb strong {
  color: #223a31;

  font-weight: 500;
}


/* =========================================================
   EYEBROW
========================================================= */

.services-eyebrow {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 10px;

  color: #e26b36;

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .15em;

  text-transform: uppercase;
}


.services-eyebrow span {
  color: #d89b2f;

  font-size: 18px;
}


/* =========================================================
   TITLE
========================================================= */

.services-title {
  max-width: 590px;

  margin: 0;

  color: #162f28;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      46px,
      4.2vw,
      66px
    );

  font-weight: 600;

  line-height: .98;

  letter-spacing: -.035em;
}


.services-title > span {
  display: block;
}


.services-title em {
  display: block;

  margin-top: 8px;

  color: #ef652f;

  font-family:
    "Yellowtail",
    cursive;

  font-size: .9em;

  font-weight: 400;

  font-style: normal;

  line-height: 1.02;

  letter-spacing: 0;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.services-intro {
  max-width: 560px;

  margin:
    22px
    0
    27px;

  color: #515c56;

  font-family:
    "Jost",
    sans-serif;

  font-size: 18px;

  line-height: 1.65;
}


/* =========================================================
   MINI STATS
========================================================= */

.services-stats {
  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  max-width: 600px;

  align-items: center;
}


.service-stat {
  position: relative;

  min-width: 0;

  display: grid;

  grid-template-columns:
    42px
    minmax(0,1fr);

  gap: 8px;

  align-items: center;

  padding:
    0
    13px;
}


.service-stat:first-child {
  padding-left: 0;
}


/* dividers */

.service-stat:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 8px;
  right: 0;

  width: 1px;
  height: 52px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(202,153,65,.40),
      transparent
    );
}


/* icon */

.service-stat-icon {
  width: 38px;
  height: 38px;

  display: grid;

  place-items: center;

  color: #d59022;

  font-size: 23px;
}


/* text */

.service-stat-copy strong {
  display: block;

  margin-bottom: 3px;

  color: #243e34;

  font-family:
    "Playfair Display",
    serif;

  font-size: 22px;

  line-height: 1;
}


.service-stat-copy span {
  display: block;

  color: #64706a;

  font-family:
    "Jost",
    sans-serif;

  font-size: 12px;

  line-height: 1.35;
}


.service-stat-copy b {
  display: block;

  color: #283d35;

  font-weight: 600;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.services-hero-visual {
  position: relative;

  min-height: 620px;

  overflow: visible;
}


/* =========================================================
   BIG IMAGE SHAPE
========================================================= */

.services-main-image {
  position: absolute;
  z-index: 2;

  top: 0;
  right: -60px;

  width: 108%;
  height: 610px;

  overflow: hidden;

  clip-path: polygon(
    28% 0%,
    100% 0%,
    100% 100%,

    20% 100%,
    14% 96%,
    10% 90%,
    7% 82%,
    6% 74%,

    8% 66%,
    12% 58%,
    15% 51%,

    17% 44%,
    18% 36%,
    17% 29%,

    18% 21%,
    21% 13%
  );
}


.services-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center center;

  display: block;

  transform:
    scale(1.02);

  transition:
    transform 1.3s
    cubic-bezier(.16,1,.3,1);
}


.services-hero:hover
.services-main-image img {
  transform:
    scale(1.055);
}


/* =========================================================
   FLOATING LEAVES
========================================================= */

.services-leaf {
  position: absolute;

  z-index: 6;

  pointer-events: none;

  object-fit: contain;

  filter:
    drop-shadow(
      0 9px 14px
      rgba(24,67,37,.14)
    );
}


/* top leaf */

.services-leaf-one {
  width: 60px;

  left: -20px;
  top: 75px;

  transform:
    rotate(-34deg);

  animation:
    serviceLeafOne
    5s
    ease-in-out
    infinite;
}


/* middle leaf */

.services-leaf-two {
  width: 85px;

  left: 5px;
  top: 245px;

  transform:
    rotate(-10deg);

  animation:
    serviceLeafTwo
    5.6s
    ease-in-out
    infinite;
}


@keyframes serviceLeafOne {

  0%,
  100% {
    transform:
      translateY(0)
      rotate(-34deg);
  }

  50% {
    transform:
      translateY(-8px)
      rotate(-26deg);
  }

}


@keyframes serviceLeafTwo {

  0%,
  100% {
    transform:
      translateY(0)
      rotate(-10deg);
  }

  50% {
    transform:
      translateY(8px)
      rotate(-15deg);
  }

}


/* =========================================================
   PETALS
========================================================= */

.services-petal {
  position: absolute;

  z-index: 8;

  width: 9px;
  height: 14px;

  border-radius:
    80% 20% 70% 30%;

  background:
    linear-gradient(
      145deg,
      #ff9c96,
      #e66d70
    );

  box-shadow:
    0 3px 7px
    rgba(143,62,58,.15);
}


.petal-one {
  left: 30px;
  top: 150px;

  transform:
    rotate(27deg);
}


.petal-two {
  left: 35px;
  bottom: 70px;

  transform:
    rotate(-30deg);
}


/* =========================================================
   FLOATING CALL CARD
========================================================= */

.services-call-card {
  position: absolute;

  z-index: 20;

  right: 20px;
  bottom: 22px;

  min-width: 290px;

  min-height: 72px;

  display: flex;

  align-items: center;

  gap: 13px;

  padding:
    11px
    19px
    11px
    12px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #07503e,
      #08644c
    );

  color: #fff;

  box-shadow:
    0 17px 32px
    rgba(4,66,50,.26);

  transition:
    transform .4s
    cubic-bezier(.16,1,.3,1),
    box-shadow .4s ease;
}


.services-call-card:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 25px 45px
    rgba(4,66,50,.32);
}


/* phone icon */

.services-call-icon {
  width: 46px;
  height: 46px;

  flex:
    0
    0
    46px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  border:
    1px solid
    rgba(225,176,74,.65);

  color: #e7ad3f;

  font-size: 20px;

  background:
    rgba(255,255,255,.04);
}


/* text */

.services-call-copy {
  display: flex;

  flex-direction: column;
}


.services-call-copy small {
  color:
    rgba(255,255,255,.78);

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;

  line-height: 1.2;
}


.services-call-copy strong {
  margin-top: 3px;

  color: #fffaf0;

  font-family:
    "Playfair Display",
    serif;

  font-size: 20px;

  font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .services-hero-inner {
    grid-template-columns:
      minmax(380px,.9fr)
      minmax(500px,1.1fr);
  }


  .services-title {
    font-size:
      clamp(
        42px,
        4.7vw,
        57px
      );
  }


  .services-stats {
    grid-template-columns:
      repeat(2,1fr);

    row-gap: 17px;
  }


  .service-stat:nth-child(2)::after {
    display: none;
  }


  .service-stat:nth-child(1),
  .service-stat:nth-child(2) {
    padding-bottom: 10px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 780px) {

  .services-hero {
    min-height: auto;
  }


  .services-hero-inner {
    width:
      calc(100% - 30px);

    display: flex;

    flex-direction: column;
  }


  .services-hero-copy {
    order: 2;

    padding:
      38px
      4px
      50px;
  }


  .services-hero-visual {
    order: 1;

    min-height: 420px;
  }


  .services-main-image {
    top: 0;
    right: -60px;

    width: 120%;
    height: 420px;
  }


  .services-title {
    font-size:
      clamp(
        40px,
        10vw,
        54px
      );
  }


  .services-stats {
    grid-template-columns:
      repeat(2,1fr);

    max-width: 100%;

    gap: 18px 0;
  }


  .service-stat {
    padding:
      0
      12px;
  }


  .services-call-card {
    right: 5px;
    bottom: 15px;

    min-width: 245px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .services-hero-visual {
    min-height: 330px;
  }


  .services-main-image {
    height: 330px;
  }


  .services-call-card {
    min-width: 215px;

    padding:
      9px
      13px;
  }


  .services-call-copy strong {
    font-size: 16px;
  }


  .services-stats {
    grid-template-columns: 1fr 1fr;
  }

}

/* =========================================================
   WHY CHOOSE MATHI CATERINGS
========================================================= */

.why-mathi-strip {
  position: relative;

  width: 100%;

  padding:
    28px
    0
    30px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 65% 50%,
      rgba(14, 102, 79, .18),
      transparent 35%
    ),
    linear-gradient(
      105deg,
      #003b2e 0%,
      #004d3c 55%,
      #00392d 100%
    );

  color: #fff;
}


/* MAIN WIDTH */

.why-mathi-inner {
  position: relative;

  z-index: 3;

  width:
    min(
      calc(100% - 90px),
      1500px
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    260px
    repeat(4, minmax(0, 1fr));

  align-items: center;
}


/* =========================================================
   LEFT HEADING
========================================================= */

.why-mathi-heading {
  padding-right: 30px;
}


.why-mathi-eyebrow {
  margin-bottom: 8px;

  color: #d9a73e;

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;
}


.why-mathi-heading h2 {
  margin: 0;

  color: #fffaf0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      28px,
      2.4vw,
      38px
    );

  font-weight: 600;

  line-height: 1.03;

  letter-spacing: -.02em;
}


.why-mathi-heading h2 span {
  display: block;
}


.why-mathi-heading h2 i {
  color: #d8a53f;

  margin-left: 5px;

  font-size: 14px;

  font-style: normal;
}


/* =========================================================
   ITEMS
========================================================= */

.why-mathi-item {
  position: relative;

  min-height: 128px;

  padding:
    5px
    24px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;
}


/* GOLD DIVIDER */

.why-mathi-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: 14px;

  width: 1px;
  height: 100px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(212, 164, 69, .55) 15%,
      rgba(212, 164, 69, .55) 85%,
      transparent
    );
}


/* =========================================================
   ICON CIRCLE
========================================================= */

.why-mathi-icon {
  position: relative;

  width: 54px;
  height: 54px;

  margin-bottom: 8px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  border:
    2px solid
    rgba(209, 160, 66, .80);

  color: #d8a53f;

  font-size: 24px;

  background:
    rgba(255,255,255,.015);

  box-shadow:
    inset 0 0 0 4px
    rgba(255,255,255,.015);
}


.why-mathi-icon::after {
  content: "";

  position: absolute;

  inset: 5px;

  border-radius: 50%;

  border:
    1px solid
    rgba(209,160,66,.12);
}


/* =========================================================
   TITLE
========================================================= */

.why-mathi-item h3 {
  margin:
    0
    0
    6px;

  color: #e1b34e;

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;

  font-weight: 600;

  line-height: 1.1;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.why-mathi-item p {
  margin: 0;

  color:
    rgba(255,255,255,.88);

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;

  line-height: 1.45;
}


.why-mathi-item p span {
  display: block;
}


/* =========================================================
   LEAF DECORATION
========================================================= */

.why-mathi-leaf {
  position: absolute;

  z-index: 4;

  top: -1px;
  right: -20px;

  width: 160px;

  pointer-events: none;

  object-fit: contain;

  transform:
    rotate(-7deg);

  filter:
    drop-shadow(
      0 10px 15px
      rgba(0,0,0,.12)
    );

  animation:
    whyLeafMove
    5s
    ease-in-out
    infinite;
}


@keyframes whyLeafMove {

  0%,
  100% {
    transform:
      translateY(0)
      rotate(-7deg);
  }

  50% {
    transform:
      translateY(8px)
      rotate(-12deg);
  }

}


/* =========================================================
   PETALS
========================================================= */

.why-petal {
  position: absolute;

  z-index: 5;

  width: 8px;
  height: 12px;

  border-radius:
    80% 20% 70% 30%;

  pointer-events: none;
}


.why-petal-one {
  top: 53px;
  right: 77px;

  background: #e6bd71;

  transform:
    rotate(48deg);
}


.why-petal-two {
  bottom: 17px;
  right: 92px;

  background: #ed7b87;

  transform:
    rotate(-25deg);
}


/* =========================================================
   SUBTLE HOVER
========================================================= */

.why-mathi-item,
.why-mathi-icon {
  transition:
    transform .45s
    cubic-bezier(.16,1,.3,1);
}


.why-mathi-item:hover {
  transform:
    translateY(-4px);
}


.why-mathi-item:hover
.why-mathi-icon {
  transform:
    translateY(-4px)
    scale(1.08)
    rotate(4deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .why-mathi-inner {
    grid-template-columns:
      220px
      repeat(4, minmax(0,1fr));

    width:
      calc(100% - 45px);
  }


  .why-mathi-item {
    padding:
      5px
      14px;
  }


  .why-mathi-item h3 {
    font-size: 12px;
  }


  .why-mathi-item p {
    font-size: 9px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .why-mathi-strip {
    padding:
      50px
      0;
  }


  .why-mathi-inner {
    width:
      calc(100% - 35px);

    grid-template-columns:
      repeat(2,1fr);

    gap: 25px 0;
  }


  .why-mathi-heading {
    grid-column:
      1 / 3;

    text-align: center;

    padding:
      0
      0
      15px;
  }


  .why-mathi-item:nth-child(2)::before,
  .why-mathi-item:nth-child(4)::before {
    display: none;
  }


  .why-mathi-leaf {
    width: 100px;
  }

}


@media (max-width: 480px) {

  .why-mathi-inner {
    grid-template-columns: 1fr;
  }


  .why-mathi-heading {
    grid-column: 1;
  }


  .why-mathi-item {
    min-height: auto;

    padding:
      20px
      5px;
  }


  .why-mathi-item::before {
    display: none;
  }


  .why-mathi-item:not(:last-child) {
    border-bottom:
      1px solid
      rgba(211,163,67,.15);
  }

}


/* =========================================================
   WHY MATHI - PREMIUM 3D ANIMATION
========================================================= */

.why-mathi-strip {
  perspective: 1400px;
  transform-style: preserve-3d;
}


/* =========================================================
   LEFT HEADING 3D
========================================================= */

.why-mathi-heading {
  transform-style: preserve-3d;

  opacity: 0;

  transform:
    translateX(-45px)
    rotateY(10deg);

  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.16,1,.3,1);
}


.why-mathi-strip.why-3d-active
.why-mathi-heading {
  opacity: 1;

  transform:
    translateX(0)
    rotateY(0deg);
}


.why-mathi-heading h2 {
  text-shadow:
    0 10px 25px
    rgba(0,0,0,.15);
}


/* =========================================================
   EACH ITEM 3D
========================================================= */

.why-mathi-item {
  transform-style: preserve-3d;

  opacity: 0;

  transform:
    perspective(900px)
    translateY(45px)
    rotateX(14deg)
    scale(.94);

  transition:
    opacity .8s ease,
    transform .75s cubic-bezier(.16,1,.3,1),
    background .4s ease,
    box-shadow .4s ease;

  overflow: visible;
}


/* STAGGER */

.why-mathi-strip.why-3d-active
.why-mathi-item {
  opacity: 1;

  transform:
    perspective(900px)
    translateY(0)
    rotateX(0deg)
    scale(1);
}


.why-mathi-strip.why-3d-active
.why-mathi-item:nth-of-type(1) {
  transition-delay: .12s;
}

.why-mathi-strip.why-3d-active
.why-mathi-item:nth-of-type(2) {
  transition-delay: .24s;
}

.why-mathi-strip.why-3d-active
.why-mathi-item:nth-of-type(3) {
  transition-delay: .36s;
}

.why-mathi-strip.why-3d-active
.why-mathi-item:nth-of-type(4) {
  transition-delay: .48s;
}


/* =========================================================
   MOUSE FOLLOW GOLD GLOW
========================================================= */

.why-mathi-item::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  left:
    calc(var(--why-x, 50%) - 90px);

  top:
    calc(var(--why-y, 50%) - 90px);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(224,169,52,.20),
      rgba(224,169,52,.06) 40%,
      transparent 70%
    );

  opacity: 0;

  pointer-events: none;

  transition:
    opacity .3s ease;

  z-index: 0;
}


.why-mathi-item:hover::after {
  opacity: 1;
}


/* =========================================================
   CARD HOVER DEPTH
========================================================= */

.why-mathi-item:hover {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.025),
      rgba(219,164,49,.05)
    );

  box-shadow:
    inset 0 0 35px
    rgba(255,255,255,.015);

  z-index: 10;
}


/* =========================================================
   ICON - 3D FLOATING
========================================================= */

.why-mathi-icon {
  position: relative;
  z-index: 3;

  transform:
    translateZ(32px);

  transform-style: preserve-3d;

  transition:
    transform .6s cubic-bezier(.16,1,.3,1),
    box-shadow .5s ease,
    background .4s ease;

  animation:
    whyIconFloat
    4.5s
    ease-in-out
    infinite;
}


.why-mathi-item:nth-of-type(2)
.why-mathi-icon {
  animation-delay: -.8s;
}

.why-mathi-item:nth-of-type(3)
.why-mathi-icon {
  animation-delay: -1.6s;
}

.why-mathi-item:nth-of-type(4)
.why-mathi-icon {
  animation-delay: -2.4s;
}


@keyframes whyIconFloat {

  0%,
  100% {
    transform:
      translateZ(32px)
      translateY(0)
      rotateY(0deg);
  }

  50% {
    transform:
      translateZ(48px)
      translateY(-7px)
      rotateY(8deg);
  }

}


/* ICON ORBIT */

.why-mathi-icon::before {
  content: "";

  position: absolute;

  inset: -7px;

  border-radius: 50%;

  border:
    1px dashed
    rgba(220,165,57,.35);

  opacity: 0;

  transform:
    rotate(0deg)
    scale(.82);

  transition:
    opacity .35s ease,
    transform .9s cubic-bezier(.16,1,.3,1);
}


.why-mathi-item:hover
.why-mathi-icon::before {
  opacity: 1;

  transform:
    rotate(180deg)
    scale(1);
}


/* ICON HOVER */

.why-mathi-item:hover
.why-mathi-icon {
  transform:
    translateZ(60px)
    translateY(-10px)
    rotateX(8deg)
    rotateY(-12deg)
    scale(1.1);

  background:
    rgba(218,163,48,.08);

  box-shadow:
    0 18px 35px
    rgba(0,0,0,.18);
}


/* =========================================================
   TEXT DEPTH
========================================================= */

.why-mathi-item h3,
.why-mathi-item p {
  position: relative;

  z-index: 3;

  transform:
    translateZ(18px);

  transition:
    transform .5s cubic-bezier(.16,1,.3,1),
    color .35s ease;
}


.why-mathi-item:hover h3 {
  transform:
    translateZ(32px)
    translateY(-2px);

  color: #f0bd48;
}


.why-mathi-item:hover p {
  transform:
    translateZ(25px);
}


/* =========================================================
   DIVIDER GLOW
========================================================= */

.why-mathi-item::before {
  transition:
    height .5s cubic-bezier(.16,1,.3,1),
    opacity .4s ease,
    box-shadow .4s ease;
}


.why-mathi-item:hover::before {
  height: 115px;

  opacity: 1;

  box-shadow:
    0 0 12px
    rgba(218,165,55,.35);
}


/* =========================================================
   LEAF 3D SWAY
========================================================= */

.why-mathi-leaf {
  transform-origin:
    20% 20%;

  animation:
    whyLeaf3D
    5.8s
    ease-in-out
    infinite;
}


@keyframes whyLeaf3D {

  0%,
  100% {
    transform:
      perspective(700px)
      rotate(-7deg)
      rotateY(0deg)
      translateY(0);
  }

  50% {
    transform:
      perspective(700px)
      rotate(-12deg)
      rotateY(12deg)
      translateY(7px);
  }

}


/* =========================================================
   PETALS FLOAT
========================================================= */

.why-petal-one {
  animation:
    whyPetalOne
    4.8s
    ease-in-out
    infinite;
}


.why-petal-two {
  animation:
    whyPetalTwo
    5.4s
    ease-in-out
    infinite;
}


@keyframes whyPetalOne {

  0%,
  100% {
    transform:
      translate3d(0,0,0)
      rotate(48deg);
  }

  50% {
    transform:
      translate3d(-12px,14px,20px)
      rotate(90deg);
  }

}


@keyframes whyPetalTwo {

  0%,
  100% {
    transform:
      translate3d(0,0,0)
      rotate(-25deg);
  }

  50% {
    transform:
      translate3d(10px,-14px,14px)
      rotate(20deg);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .why-mathi-item {
    transform: none;
  }


  .why-mathi-item::after {
    display: none;
  }


  .why-mathi-icon {
    animation:
      whyIconFloatMobile
      4s
      ease-in-out
      infinite;
  }


  @keyframes whyIconFloatMobile {

    0%,
    100% {
      transform:
        translateY(0);
    }

    50% {
      transform:
        translateY(-5px);
    }

  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .why-mathi-icon,
  .why-mathi-leaf,
  .why-petal {
    animation: none !important;
  }

}


/* =========================================================
   SERVICE GRID SECTION
========================================================= */

.service-grid-section {
  position: relative;

  width: 100%;

  padding:
    58px
    0
    70px;

  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(221,181,102,.06),
      transparent 35%
    ),
    #fffaf1;
}


.service-grid-wrap {
  width:
    min(
      calc(100% - 70px),
      1500px
    );

  margin-inline: auto;
}


/* =========================================================
   HEADING
========================================================= */

.service-grid-head {
  text-align: center;

  margin-bottom: 35px;
}


.service-grid-eyebrow {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  margin-bottom: 8px;

  color: #db6a39;

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .14em;
}


.service-grid-eyebrow span {
  color: #d49a2f;

  font-size: 15px;
}


.service-grid-head h2 {
  margin: 0;

  color: #173d33;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      32px,
      3vw,
      46px
    );

  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -.025em;
}


.service-grid-head p {
  margin:
    8px
    0
    0;

  color: #4f5d57;

  font-family:
    "Jost",
    sans-serif;

  font-size: 17px;
}


/* =========================================================
   GRID
========================================================= */

.service-grid {
  display: grid;

  grid-template-columns:
    repeat(
      5,
      minmax(0, 1fr)
    );

  gap:
    20px
    18px;
}


/* =========================================================
   CARD
========================================================= */

.service-grid-card {
  position: relative;

  min-width: 0;

  overflow: visible;

  border-radius: 16px;

  background: #fffaf2;

  border:
    1px solid
    rgba(193,151,72,.12);

  box-shadow:
    0 10px 24px
    rgba(61,46,24,.07);

  transition:
    transform .45s
    cubic-bezier(.16,1,.3,1),
    box-shadow .45s ease;

  padding-bottom: 24px;
}


.service-grid-card:hover {
  transform:
    translateY(-7px);

  box-shadow:
    0 20px 40px
    rgba(61,46,24,.13);
}


/* =========================================================
   IMAGE
========================================================= */

.service-grid-image {
  position: relative;

  height: 215px;

  overflow: hidden;

  border-radius:
    15px
    15px
    0
    0;
}


.service-grid-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform .8s
    cubic-bezier(.16,1,.3,1);
}


.service-grid-card:hover
.service-grid-image img {
  transform:
    scale(1.055);
}


/* =========================================================
   ROUND ICON BADGE
========================================================= */

.service-grid-icon {
  position: relative;

  z-index: 5;

  width: 66px;
  height: 66px;

  margin:
    -33px
    auto
    13px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #dbac4a;

  font-size: 29px;

  background:
    linear-gradient(
      145deg,
      #0d5643,
      #073f32
    );

  border:
    3px solid
    #e3b55a;

  box-shadow:
    0 0 0 5px #fffaf2,
    0 9px 20px
    rgba(8,64,49,.22);

  transition:
    transform .5s
    cubic-bezier(.16,1,.3,1);
}


.service-grid-card:hover
.service-grid-icon {
  transform:
    translateY(-5px)
    rotate(5deg)
    scale(1.07);
}


/* =========================================================
   CONTENT
========================================================= */

.service-grid-content {
  padding:
    0
    20px;
}


/* TITLE */

.service-grid-content h3 {
  min-height: 52px;

  margin:
    0
    0
    11px;

  text-align: center;

  color: #263e35;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 18px;

  font-weight: 600;

  line-height: 1.12;
}


.service-grid-content h3 span {
  display: block;
}


/* PARAGRAPH */

.service-grid-content > p {
  min-height: 80px;

  margin:
    0
    0
    13px;

  text-align: center;

  color: #5f655f;

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;

  line-height: 1.55;
}


/* =========================================================
   BULLETS
========================================================= */

.service-grid-content ul {
  display: grid;

  gap: 6px;

  margin: 0;

  padding: 0;

  list-style: none;
}


.service-grid-content li {
  position: relative;

  padding-left: 15px;

  color: #46534d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  line-height: 1.35;
}


.service-grid-content li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 5px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #e7b556,
      #d48721
    );

  box-shadow:
    0 0 0 2px
    rgba(220,164,66,.12);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

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

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

  .service-grid-wrap {
    width:
      calc(100% - 30px);
  }


  .service-grid {
    grid-template-columns:
      1fr;

    gap: 20px;
  }


  .service-grid-image {
    height: 230px;
  }


  .service-grid-content h3 {
    min-height: 0;
  }


  .service-grid-content > p {
    min-height: 0;
  }

}


/* =========================================================
   OUR PROCESS SECTION
========================================================= */

.process-section {
  position: relative;

  width: 100%;

  padding:
    38px
    0
    52px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(224, 184, 99, .07),
      transparent 35%
    ),
    #fffaf1;
}


/* =========================================================
   MAIN WIDTH
========================================================= */

.process-wrap {
  position: relative;
  z-index: 3;

  width:
    min(
      calc(100% - 70px),
      1500px
    );

  margin-inline: auto;
}


/* =========================================================
   TITLE
========================================================= */

.process-head {
  text-align: center;

  margin-bottom: 22px;
}


.process-eyebrow {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  margin-bottom: 7px;

  color: #e1843d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .12em;
}


.process-eyebrow span {
  color: #d99a2d;
}


.process-head h2 {
  margin: 0;

  color: #173d33;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      30px,
      3vw,
      43px
    );

  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -.025em;
}


/* =========================================================
   PROCESS TRACK
========================================================= */

.process-track {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 15px;

  padding-top: 2px;
}


/* HORIZONTAL GOLD LINE */

.process-line {
  position: absolute;

  z-index: 0;

  top: 45px;

  left: 7.8%;
  right: 7.8%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(201, 149, 56, .55) 7%,
      rgba(201, 149, 56, .55) 93%,
      transparent
    );
}


/* =========================================================
   STEP
========================================================= */

.process-step {
  position: relative;

  z-index: 2;

  text-align: center;

  padding:
    0
    10px;
}


/* =========================================================
   ICON
========================================================= */

.process-icon {
  position: relative;

  width: 78px;
  height: 78px;

  margin:
    0
    auto
    10px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #dba845;

  font-size: 31px;

  background:
    linear-gradient(
      145deg,
      #0d5643,
      #073f32
    );

  border:
    2px solid
    rgba(217, 166, 68, .75);

  box-shadow:
    0 8px 18px
    rgba(8, 66, 51, .16);
}


/* inner ring */

.process-icon::before {
  content: "";

  position: absolute;

  inset: 7px;

  border-radius: 50%;

  border:
    1px solid
    rgba(219, 168, 69, .16);
}


/* =========================================================
   NUMBER
========================================================= */

.process-number {
  position: relative;

  z-index: 4;

  width: 28px;
  height: 28px;

  margin:
    -2px
    auto
    8px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #70531d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 9px;

  font-weight: 700;

  background:
    linear-gradient(
      145deg,
      #f5d68a,
      #d99b2f
    );

  border:
    2px solid
    #fffaf1;

  box-shadow:
    0 4px 10px
    rgba(137, 91, 17, .13);
}


/* =========================================================
   STEP TITLE
========================================================= */

.process-step h3 {
  margin:
    0
    0
    7px;

  color: #35433c;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 19px;

  font-weight: 600;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.process-step p {
  margin: 0;

  color: #646963;

  font-family:
    "Jost",
    sans-serif;

  font-size: 12px;

  line-height: 1.55;
}


.process-step p span {
  display: block;
}


/* =========================================================
   MANDALA DECORATIONS
========================================================= */

.process-mandala {
  position: absolute;

  width: 170px;
  height: 170px;

  border-radius: 50%;

  opacity: .10;

  pointer-events: none;
}


.process-mandala::before,
.process-mandala::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  border:
    1px solid
    #d6a551;
}


.process-mandala::before {
  inset: 15px;
}


.process-mandala::after {
  inset: 40px;
}


.process-mandala-left {
  left: -95px;
  top: 45px;
}


.process-mandala-right {
  right: -95px;
  top: 45px;
}


/* =========================================================
   SUBTLE HOVER
========================================================= */

.process-step,
.process-icon {
  transition:
    transform .45s
    cubic-bezier(.16,1,.3,1);
}


.process-step:hover {
  transform:
    translateY(-5px);
}


.process-step:hover
.process-icon {
  transform:
    translateY(-4px)
    scale(1.06);

  box-shadow:
    0 14px 28px
    rgba(8,66,51,.22);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .process-track {
    grid-template-columns:
      repeat(3, 1fr);

    row-gap: 40px;
  }


  .process-line {
    display: none;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .process-section {
    padding:
      42px
      0;
  }


  .process-wrap {
    width:
      calc(100% - 30px);
  }


  .process-track {
    grid-template-columns:
      repeat(2, 1fr);

    gap:
      35px
      15px;
  }


  .process-icon {
    width: 68px;
    height: 68px;

    font-size: 26px;
  }


  .process-head h2 {
    font-size: 34px;
  }

}


@media (max-width: 420px) {

  .process-track {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   PROCESS SECTION - PREMIUM 3D ANIMATION
========================================================= */

.process-section {
  perspective: 1600px;
}

.process-track {
  perspective: 1400px;
  transform-style: preserve-3d;
}


/* =========================================================
   CONNECTING LINE ANIMATION
========================================================= */

.process-line {
  overflow: hidden;
  background: rgba(207, 156, 61, .22);
}

.process-line::after {
  content: "";

  position: absolute;
  inset: 0;

  width: 0%;

  background:
    linear-gradient(
      90deg,
      #c98d25,
      #f0c56a,
      #c98d25
    );

  box-shadow:
    0 0 14px
    rgba(220, 168, 67, .35);

  transition:
    width 2s cubic-bezier(.16,1,.3,1);
}

.process-section.process-3d-active
.process-line::after {
  width: 100%;
}


/* =========================================================
   EACH STEP - SCROLL REVEAL
========================================================= */

.process-step {
  opacity: 0;

  transform:
    perspective(1000px)
    translateY(48px)
    rotateX(16deg)
    scale(.93);

  transform-style: preserve-3d;

  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.16,1,.3,1);
}


.process-section.process-3d-active
.process-step {
  opacity: 1;

  transform:
    perspective(1000px)
    translateY(0)
    rotateX(0deg)
    scale(1);
}


/* stagger */

.process-section.process-3d-active
.process-step:nth-child(2) {
  transition-delay: .10s;
}

.process-section.process-3d-active
.process-step:nth-child(3) {
  transition-delay: .20s;
}

.process-section.process-3d-active
.process-step:nth-child(4) {
  transition-delay: .30s;
}

.process-section.process-3d-active
.process-step:nth-child(5) {
  transition-delay: .40s;
}

.process-section.process-3d-active
.process-step:nth-child(6) {
  transition-delay: .50s;
}

.process-section.process-3d-active
.process-step:nth-child(7) {
  transition-delay: .60s;
}


/* =========================================================
   ICON 3D FLOAT
========================================================= */

.process-icon {
  transform-style: preserve-3d;

  transform:
    translateZ(38px);

  animation:
    processIconFloat
    4.6s
    ease-in-out
    infinite;

  transition:
    transform .6s cubic-bezier(.16,1,.3,1),
    box-shadow .5s ease,
    background .4s ease;
}


.process-step:nth-of-type(2)
.process-icon {
  animation-delay: -.7s;
}

.process-step:nth-of-type(3)
.process-icon {
  animation-delay: -1.4s;
}

.process-step:nth-of-type(4)
.process-icon {
  animation-delay: -2.1s;
}

.process-step:nth-of-type(5)
.process-icon {
  animation-delay: -2.8s;
}

.process-step:nth-of-type(6)
.process-icon {
  animation-delay: -3.5s;
}


@keyframes processIconFloat {

  0%,
  100% {
    transform:
      translateZ(38px)
      translateY(0)
      rotateY(0deg);
  }

  50% {
    transform:
      translateZ(58px)
      translateY(-8px)
      rotateY(7deg);
  }

}


/* =========================================================
   GOLD ORBIT RING
========================================================= */

.process-icon::after {
  content: "";

  position: absolute;

  inset: -8px;

  border-radius: 50%;

  border:
    1px dashed
    rgba(218, 166, 65, .34);

  opacity: 0;

  transform:
    rotate(0deg)
    scale(.82);

  transition:
    opacity .35s ease,
    transform .9s cubic-bezier(.16,1,.3,1);
}


.process-step:hover
.process-icon::after {
  opacity: 1;

  transform:
    rotate(180deg)
    scale(1);
}


/* =========================================================
   ICON HOVER
========================================================= */

.process-step:hover
.process-icon {
  transform:
    translateZ(70px)
    translateY(-12px)
    rotateX(8deg)
    rotateY(-10deg)
    scale(1.08);

  background:
    linear-gradient(
      145deg,
      #12604b,
      #073c2f
    );

  box-shadow:
    0 22px 40px
    rgba(8, 58, 45, .24),
    0 0 0 5px
    rgba(218,166,65,.08);
}


/* =========================================================
   GOLD CURSOR GLOW
========================================================= */

.process-step::before {
  content: "";

  position: absolute;

  width: 170px;
  height: 170px;

  left:
    calc(var(--process-x, 50%) - 85px);

  top:
    calc(var(--process-y, 50%) - 85px);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(223,169,62,.20),
      rgba(223,169,62,.07) 38%,
      transparent 70%
    );

  opacity: 0;

  pointer-events: none;

  z-index: -1;

  transition:
    opacity .3s ease;
}


.process-step:hover::before {
  opacity: 1;
}


/* =========================================================
   NUMBER BADGE
========================================================= */

.process-number {
  transform:
    translateZ(28px);

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    box-shadow .4s ease;
}


.process-step:hover
.process-number {
  transform:
    translateZ(42px)
    translateY(-3px)
    scale(1.08);

  box-shadow:
    0 8px 18px
    rgba(187,124,22,.24);
}


/* =========================================================
   TEXT DEPTH
========================================================= */

.process-step h3,
.process-step p {
  position: relative;
  z-index: 3;

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    color .35s ease;
}


.process-step h3 {
  transform:
    translateZ(18px);
}


.process-step p {
  transform:
    translateZ(10px);
}


.process-step:hover h3 {
  transform:
    translateZ(32px)
    translateY(-2px);

  color: #0d4938;
}


.process-step:hover p {
  transform:
    translateZ(22px);
}


/* =========================================================
   HEADING REVEAL
========================================================= */

.process-head {
  opacity: 0;

  transform:
    translateY(-20px);

  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.16,1,.3,1);
}


.process-section.process-3d-active
.process-head {
  opacity: 1;

  transform:
    translateY(0);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .process-step {
    transform: none;
  }

  .process-step::before {
    display: none;
  }

  .process-icon {
    animation:
      processMobileFloat
      4s
      ease-in-out
      infinite;
  }

  @keyframes processMobileFloat {

    0%,
    100% {
      transform:
        translateY(0);
    }

    50% {
      transform:
        translateY(-5px);
    }

  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .process-step,
  .process-icon,
  .process-head {
    animation: none !important;
    transition: none !important;
  }

}


/* =========================================================
   FINAL CELEBRATION CTA
========================================================= */

.celebration-cta {
  width: 100%;

  padding:
    55px
    0
    65px;

  background:
    #fffaf1;
}


/* =========================================================
   MAIN CARD
========================================================= */

.celebration-cta-card {
  position: relative;

  width:
    min(
      calc(100% - 70px),
      1500px
    );

  min-height: 300px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    330px
    minmax(430px, 1fr)
    1px
    minmax(300px, .75fr);

  align-items: stretch;

  overflow: hidden;

  border-radius: 24px;

  background:
    radial-gradient(
      circle at 78% 50%,
      rgba(10, 104, 79, .18),
      transparent 35%
    ),
    linear-gradient(
      105deg,
      #043e31,
      #00503e 52%,
      #003b30
    );

  box-shadow:
    0 20px 45px
    rgba(44, 34, 17, .10);
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.celebration-visual {
  position: relative;

  min-height: 300px;
}


.celebration-image-frame {
  position: absolute;

  top: -5px;
  left: 55px;

  width: 225px;
  height: 315px;

  overflow: hidden;

  border-radius:
    48% 48% 42% 42% /
    30% 30% 42% 42%;

  border:
    2px solid
    rgba(216,167,69,.75);

  box-shadow:
    0 20px 35px
    rgba(0,0,0,.22);
}


.celebration-image-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform 1s
    cubic-bezier(.16,1,.3,1);
}


.celebration-cta-card:hover
.celebration-image-frame img {
  transform:
    scale(1.05);
}


/* =========================================================
   LEAVES
========================================================= */

.celebration-leaf {
  position: absolute;

  z-index: 4;

  pointer-events: none;

  object-fit: contain;

  filter:
    drop-shadow(
      0 8px 12px
      rgba(0,0,0,.12)
    );
}


.celebration-leaf-one {
  width: 95px;

  left: 8px;
  top: 22px;

  transform:
    rotate(-25deg);
}


.celebration-leaf-two {
  width: 90px;

  left: 15px;
  bottom: 18px;

  transform:
    rotate(16deg);
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.celebration-content {
  position: relative;

  z-index: 5;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    35px
    42px;
}


/* EYEBROW */

.celebration-eyebrow {
  margin-bottom: 11px;

  color:
    #d9a23c;

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .13em;

  text-transform: uppercase;
}


/* TITLE */

.celebration-content h2 {
  margin: 0;

  color:
    #fffaf0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      34px,
      3vw,
      48px
    );

  font-weight: 600;

  line-height: 1.03;

  letter-spacing: -.025em;
}


.celebration-content h2 span {
  display: block;
}


.celebration-content h2 em {
  color:
    #e98927;

  font-family:
    "Yellowtail",
    cursive;

  font-size:
    1.04em;

  font-weight: 400;

  font-style: normal;
}


/* DESCRIPTION */

.celebration-content p {
  max-width: 430px;

  margin:
    15px
    0
    20px;

  color:
    rgba(255,255,255,.86);

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  line-height: 1.55;
}


/* =========================================================
   BUTTONS
========================================================= */

.celebration-actions {
  display: flex;

  gap: 16px;

  flex-wrap: wrap;
}


.celebration-btn {
  min-height: 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  padding:
    0
    22px;

  border-radius: 5px;

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .04em;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}


.celebration-btn-primary {
  color:
    #153b30;

  background:
    linear-gradient(
      135deg,
      #f0c768,
      #dfa33a
    );

  box-shadow:
    0 10px 20px
    rgba(0,0,0,.12);
}


.celebration-btn-outline {
  color:
    #e0ad45;

  border:
    1px solid
    rgba(221,171,69,.72);

  background:
    rgba(255,255,255,.02);
}


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


.celebration-btn-primary:hover {
  box-shadow:
    0 15px 25px
    rgba(0,0,0,.18);
}


.celebration-btn-outline:hover {
  background:
    rgba(219,166,65,.10);
}


/* =========================================================
   VERTICAL DIVIDER
========================================================= */

.celebration-divider {
  align-self: center;

  width: 1px;
  height: 205px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(215,166,66,.70),
      transparent
    );
}


/* =========================================================
   RIGHT FEATURES
========================================================= */

.celebration-features {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    28px
    45px
    28px
    35px;
}


.celebration-feature {
  position: relative;

  min-height: 75px;

  display: flex;

  align-items: center;

  gap: 15px;
}


.celebration-feature:not(:last-child)::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(212,163,64,.55),
      transparent
    );
}


/* ICON */

.celebration-feature-icon {
  width: 48px;
  height: 48px;

  flex:
    0
    0
    48px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  border:
    1px solid
    rgba(215,165,66,.70);

  color:
    #d9a33b;

  font-size: 21px;
}


.celebration-feature span {
  color:
    rgba(255,255,255,.90);

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  font-weight: 500;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .celebration-cta-card {
    grid-template-columns:
      280px
      1fr
      1px
      290px;
  }


  .celebration-image-frame {
    left: 35px;

    width: 205px;
  }


  .celebration-content {
    padding:
      30px;
  }


  .celebration-features {
    padding:
      25px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .celebration-cta-card {
    width:
      calc(100% - 30px);

    display: block;

    overflow: hidden;
  }


  .celebration-visual {
    height: 300px;
  }


  .celebration-image-frame {
    left: 50%;

    transform:
      translateX(-50%);

    width: 220px;
  }


  .celebration-content {
    padding:
      30px
      25px;
  }


  .celebration-divider {
    width:
      calc(100% - 50px);

    height: 1px;

    margin:
      0
      auto;
  }


  .celebration-features {
    padding:
      20px
      25px
      35px;
  }

}


/* =========================================================
   CELEBRATION CTA - PREMIUM 3D ANIMATION
========================================================= */

.celebration-cta {
  perspective: 1600px;
}


/* MAIN CARD DEPTH */

.celebration-cta-card {
  transform-style: preserve-3d;

  opacity: 0;

  transform:
    perspective(1400px)
    translateY(45px)
    rotateX(8deg)
    scale(.97);

  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.16,1,.3,1),
    box-shadow .6s ease;

  will-change: transform;
}


.celebration-cta.cta-3d-visible
.celebration-cta-card {
  opacity: 1;

  transform:
    perspective(1400px)
    translateY(0)
    rotateX(0deg)
    scale(1);
}


/* =========================================================
   GOLD MOUSE GLOW
========================================================= */

.celebration-cta-card::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  left:
    calc(var(--cta-x, 50%) - 210px);

  top:
    calc(var(--cta-y, 50%) - 210px);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(225,173,68,.16),
      rgba(225,173,68,.055) 38%,
      transparent 70%
    );

  opacity: 0;

  z-index: 0;

  pointer-events: none;

  transition:
    opacity .35s ease;
}


.celebration-cta-card:hover::before {
  opacity: 1;
}


/* =========================================================
   LEFT LAMP 3D
========================================================= */

.celebration-visual {
  transform-style: preserve-3d;
}


.celebration-image-frame {
  transform-style: preserve-3d;

  transform:
    translateZ(35px);

  transition:
    transform .7s cubic-bezier(.16,1,.3,1),
    box-shadow .6s ease;

  animation:
    lampFloat
    5.5s
    ease-in-out
    infinite;
}


@keyframes lampFloat {

  0%,
  100% {
    transform:
      translateZ(35px)
      translateY(0)
      rotateY(0deg);
  }

  50% {
    transform:
      translateZ(55px)
      translateY(-7px)
      rotateY(3deg);
  }

}


.celebration-cta-card:hover
.celebration-image-frame {
  transform:
    translateZ(70px)
    translateY(-6px)
    rotateY(5deg);

  box-shadow:
    0 28px 50px
    rgba(0,0,0,.28);
}


.celebration-image-frame img {
  transition:
    transform 1s cubic-bezier(.16,1,.3,1);
}


.celebration-cta-card:hover
.celebration-image-frame img {
  transform:
    scale(1.07);
}


/* =========================================================
   CONTENT DEPTH
========================================================= */

.celebration-content {
  transform:
    translateZ(25px);

  transition:
    transform .65s cubic-bezier(.16,1,.3,1);
}


.celebration-cta-card:hover
.celebration-content {
  transform:
    translateZ(42px);
}


/* EYEBROW */

.celebration-eyebrow {
  opacity: 0;

  transform:
    translateY(-12px);

  transition:
    opacity .7s ease .2s,
    transform .7s ease .2s;
}


.celebration-cta.cta-3d-visible
.celebration-eyebrow {
  opacity: 1;

  transform:
    translateY(0);
}


/* TITLE */

.celebration-content h2 {
  opacity: 0;

  transform:
    translateY(20px);

  transition:
    opacity .8s ease .3s,
    transform .8s cubic-bezier(.16,1,.3,1) .3s;
}


.celebration-cta.cta-3d-visible
.celebration-content h2 {
  opacity: 1;

  transform:
    translateY(0);
}


/* DESCRIPTION */

.celebration-content p {
  opacity: 0;

  transform:
    translateY(18px);

  transition:
    opacity .8s ease .42s,
    transform .8s ease .42s;
}


.celebration-cta.cta-3d-visible
.celebration-content p {
  opacity: 1;

  transform:
    translateY(0);
}


/* =========================================================
   BUTTONS 3D
========================================================= */

.celebration-actions {
  opacity: 0;

  transform:
    translateY(18px);

  transition:
    opacity .8s ease .52s,
    transform .8s ease .52s;
}


.celebration-cta.cta-3d-visible
.celebration-actions {
  opacity: 1;

  transform:
    translateY(0);
}


.celebration-btn {
  position: relative;

  overflow: hidden;

  transform-style: preserve-3d;
}


.celebration-btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -90%;

  width: 55%;
  height: 100%;

  background:
    linear-gradient(
      110deg,
      transparent,
      rgba(255,255,255,.18),
      rgba(255,255,255,.5),
      transparent
    );

  transform:
    skewX(-20deg);

  transition:
    left .75s cubic-bezier(.16,1,.3,1);
}


.celebration-btn:hover::before {
  left: 140%;
}


.celebration-btn:hover {
  transform:
    translateY(-4px)
    translateZ(18px)
    scale(1.02);
}


/* =========================================================
   RIGHT FEATURES
========================================================= */

.celebration-features {
  transform-style: preserve-3d;
}


.celebration-feature {
  opacity: 0;

  transform:
    translateX(30px)
    rotateY(-8deg);

  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.16,1,.3,1);
}


.celebration-cta.cta-3d-visible
.celebration-feature:nth-child(1) {
  opacity: 1;

  transform:
    translateX(0)
    rotateY(0);

  transition-delay: .32s;
}


.celebration-cta.cta-3d-visible
.celebration-feature:nth-child(2) {
  opacity: 1;

  transform:
    translateX(0)
    rotateY(0);

  transition-delay: .45s;
}


.celebration-cta.cta-3d-visible
.celebration-feature:nth-child(3) {
  opacity: 1;

  transform:
    translateX(0)
    rotateY(0);

  transition-delay: .58s;
}


/* =========================================================
   FEATURE ICON FLOAT
========================================================= */

.celebration-feature-icon {
  transform:
    translateZ(25px);

  animation:
    featureFloat
    4.3s
    ease-in-out
    infinite;

  transition:
    transform .55s cubic-bezier(.16,1,.3,1),
    box-shadow .45s ease,
    background .45s ease;
}


.celebration-feature:nth-child(2)
.celebration-feature-icon {
  animation-delay: -1.3s;
}


.celebration-feature:nth-child(3)
.celebration-feature-icon {
  animation-delay: -2.6s;
}


@keyframes featureFloat {

  0%,
  100% {
    transform:
      translateZ(25px)
      translateY(0);
  }

  50% {
    transform:
      translateZ(40px)
      translateY(-5px);
  }

}


.celebration-feature:hover
.celebration-feature-icon {
  transform:
    translateZ(55px)
    translateY(-5px)
    rotateY(-10deg)
    scale(1.08);

  background:
    rgba(221,171,69,.08);

  box-shadow:
    0 12px 26px
    rgba(0,0,0,.18);
}


/* =========================================================
   DIVIDER GLOW
========================================================= */

.celebration-divider {
  box-shadow:
    0 0 15px
    rgba(215,166,66,.12);

  animation:
    dividerGlow
    3.5s
    ease-in-out
    infinite;
}


@keyframes dividerGlow {

  0%,
  100% {
    opacity: .65;
  }

  50% {
    opacity: 1;
  }

}


/* =========================================================
   LEAF 3D SWAY
========================================================= */

.celebration-leaf {
  transform-origin: center;

  animation:
    celebrationLeafFloat
    5s
    ease-in-out
    infinite;
}


.celebration-leaf-two {
  animation-delay: -2.1s;
}


@keyframes celebrationLeafFloat {

  0%,
  100% {
    transform:
      perspective(700px)
      translateY(0)
      rotateZ(-10deg)
      rotateY(0deg);
  }

  50% {
    transform:
      perspective(700px)
      translateY(-8px)
      rotateZ(-4deg)
      rotateY(10deg);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .celebration-cta-card {
    transform: none !important;
  }


  .celebration-cta-card::before {
    display: none;
  }


  .celebration-image-frame {
    animation:
      lampMobileFloat
      4.5s
      ease-in-out
      infinite;
  }


  @keyframes lampMobileFloat {

    0%,
    100% {
      transform:
        translateX(-50%)
        translateY(0);
    }

    50% {
      transform:
        translateX(-50%)
        translateY(-5px);
    }

  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .celebration-image-frame,
  .celebration-feature-icon,
  .celebration-leaf,
  .celebration-divider {
    animation: none !important;
  }

}


/* =========================================================
   MENU HERO
========================================================= */

.menu-hero {
  position: relative;

  width: 100%;

  min-height: 620px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 18% 42%,
      rgba(218,175,89,.07),
      transparent 32%
    ),
    #fffaf1;
}


/* =========================================================
   MAIN GRID
========================================================= */

.menu-hero-inner {
  width:
    min(
      calc(100% - 70px),
      1500px
    );

  min-height: 620px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(410px, .82fr)
    minmax(620px, 1.18fr);

  align-items: stretch;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.menu-hero-copy {
  position: relative;

  z-index: 10;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    45px
    45px
    48px
    8px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.menu-breadcrumb {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 27px;

  color: #59615c;

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;
}


.menu-breadcrumb a {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  color: #394840;
}


.menu-breadcrumb i {
  font-size: 9px;
}


.menu-breadcrumb strong {
  color: #273a32;

  font-weight: 500;
}


/* =========================================================
   EYEBROW
========================================================= */

.menu-eyebrow {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 9px;

  color: #e06d37;

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .14em;
}


.menu-eyebrow span {
  color: #d49b30;

  font-size: 15px;
}


/* =========================================================
   TITLE
========================================================= */

.menu-hero-title {
  max-width: 570px;

  margin: 0;

  color: #173d33;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      48px,
      4.25vw,
      66px
    );

  font-weight: 600;

  line-height: .98;

  letter-spacing: -.035em;
}


.menu-hero-title > span {
  display: block;
}


.menu-hero-title em {
  display: block;

  margin-top: 7px;

  color: #ef622e;

  font-family:
    "Yellowtail",
    cursive;

  font-size: .93em;

  font-weight: 400;

  font-style: normal;

  line-height: 1;

  letter-spacing: 0;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.menu-hero-description {
  max-width: 520px;

  margin:
    22px
    0
    30px;

  color: #58625d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;

  line-height: 1.65;
}


/* =========================================================
   MINI FEATURES
========================================================= */

.menu-mini-features {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0,1fr));

  max-width: 610px;
}


.menu-mini-item {
  position: relative;

  min-width: 0;

  display: grid;

  grid-template-columns:
    38px
    minmax(0,1fr);

  align-items: center;

  gap: 8px;

  padding:
    0
    15px;
}


.menu-mini-item:first-child {
  padding-left: 0;
}


/* DIVIDER */

.menu-mini-item:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 5px;

  width: 1px;
  height: 58px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(202,153,64,.45),
      transparent
    );
}


/* ICON */

.menu-mini-icon {
  width: 36px;
  height: 36px;

  display: grid;

  place-items: center;

  color: #cf8d25;

  font-size: 28px;
}


/* TEXT */

.menu-mini-text strong {
  display: block;

  margin-bottom: 3px;

  color: #223d33;

  font-family:
    "Playfair Display",
    serif;

  font-size: 26px;

  line-height: 1;
}


.menu-mini-text span {
  display: block;

  color: #65706a;

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;

  line-height: 1.35;
}


.menu-mini-text b {
  display: block;

  color: #2f443b;

  font-weight: 600;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.menu-hero-visual {
  position: relative;

  min-height: 620px;

  overflow: visible;
}


/* =========================================================
   LARGE FOOD IMAGE
========================================================= */

.menu-main-image {
  position: absolute;

  z-index: 2;

  top: 0;
  right: -70px;

  width: 111%;
  height: 610px;

  overflow: hidden;

  clip-path: polygon(
    25% 0%,
    100% 0%,
    100% 100%,
    18% 100%,
    11% 94%,
    7% 86%,
    5% 75%,
    6% 63%,
    10% 53%,
    14% 43%,
    16% 31%,
    18% 20%,
    21% 10%
  );

  border-radius:
    36% 0 0 30% /
    25% 0 0 40%;

  filter:
    drop-shadow(
      -15px 15px 25px
      rgba(60,42,15,.12)
    );
}


.menu-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center center;

  display: block;

  transform:
    scale(1.02);

  transition:
    transform 1.2s
    cubic-bezier(.16,1,.3,1);
}


.menu-hero:hover
.menu-main-image img {
  transform:
    scale(1.055);
}


/* =========================================================
   30+ BADGE
========================================================= */

.menu-years-badge {
  position: absolute;

  z-index: 15;

  left: 3%;
  top: 53%;

  width: 120px;
  height: 120px;

  transform:
    translateY(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 25%,
      #17644f,
      #073f31 72%
    );

  border:
    3px solid
    #d8a441;

  box-shadow:
    0 0 0 5px
    #fffaf1,

    0 18px 35px
    rgba(12,61,48,.25);
}


.menu-years-badge strong {
  color: #fffaf0;

  font-family:
    "Playfair Display",
    serif;

  font-size: 34px;

  font-weight: 500;

  line-height: 1;
}


.menu-years-badge span,
.menu-years-badge b {
  color:
    rgba(255,255,255,.88);

  font-family:
    "Jost",
    sans-serif;

  font-size: 9px;

  line-height: 1.25;
}


.menu-years-badge span {
  margin-top: 5px;
}


.menu-years-badge b {
  font-weight: 600;
}


/* =========================================================
   LEAVES
========================================================= */

.menu-leaf {
  position: absolute;

  z-index: 8;

  pointer-events: none;

  object-fit: contain;

  filter:
    drop-shadow(
      0 8px 14px
      rgba(24,65,37,.14)
    );
}


.menu-leaf-one {
  width: 75px;

  left: -35px;
  top: 120px;

  transform:
    rotate(-24deg);
}


.menu-leaf-two {
  width: 90px;

  left: -15px;
  top: 270px;

  transform:
    rotate(16deg);
}


/* =========================================================
   PETAL
========================================================= */

.menu-petal {
  position: absolute;

  z-index: 9;

  left: -15px;
  top: 160px;

  width: 9px;
  height: 14px;

  border-radius:
    80% 20% 70% 30%;

  background:
    linear-gradient(
      145deg,
      #f99b8f,
      #e86c6d
    );

  transform:
    rotate(30deg);
}


/* =========================================================
   GOLD DECORATIVE CORNER
========================================================= */

.menu-gold-corner {
  position: absolute;

  z-index: 7;

  right: -5px;
  bottom: 5px;

  color:
    rgba(208,151,47,.75);

  font-size: 70px;

  line-height: 1;

  transform:
    rotate(-45deg);

  pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .menu-hero-inner {
    grid-template-columns:
      minmax(380px,.9fr)
      minmax(520px,1.1fr);
  }


  .menu-mini-features {
    grid-template-columns:
      repeat(2,1fr);

    row-gap: 18px;
  }


  .menu-mini-item:nth-child(2)::after {
    display: none;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 780px) {

  .menu-hero {
    min-height: auto;
  }


  .menu-hero-inner {
    width:
      calc(100% - 30px);

    display: flex;

    flex-direction: column;
  }


  .menu-hero-visual {
    order: 1;

    min-height: 410px;
  }


  .menu-hero-copy {
    order: 2;

    padding:
      40px
      5px
      50px;
  }


  .menu-main-image {
    right: -60px;

    width: 120%;
    height: 410px;
  }


  .menu-years-badge {
    left: 8px;
    top: 66%;

    width: 95px;
    height: 95px;
  }


  .menu-years-badge strong {
    font-size: 27px;
  }


  .menu-hero-title {
    font-size:
      clamp(
        42px,
        11vw,
        54px
      );
  }


  .menu-mini-features {
    max-width: 100%;
  }

}

/* =========================================
   MENU HERO TOP EMPTY SPACE FIX
========================================= */

.menu-hero-copy {
  justify-content: flex-start !important;

  padding-top: 45px !important;
}


/* =========================================================
   EXPLORE OUR MENU
========================================================= */

.menu-delight-section {
  position: relative;

  width: 100%;

  padding: 38px 0 55px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(219, 173, 82, .08),
      transparent 30%
    ),
    #fffaf1;
}


.menu-delight-wrap {
  width:
    min(
      calc(100% - 70px),
      1500px
    );

  margin-inline: auto;
}


/* =========================================================
   HEADING
========================================================= */

.menu-delight-head {
  text-align: center;

  margin-bottom: 30px;
}


.menu-delight-eyebrow {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 16px;

  margin-bottom: 7px;

  color: #6a5a48;

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .16em;
}


.delight-line {
  position: relative;

  width: 95px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #d4a042
    );
}


.delight-line::after {
  content: "➜";

  position: absolute;

  right: -4px;
  top: -9px;

  color: #d49a2f;

  font-size: 14px;
}


.delight-line-right {
  transform: scaleX(-1);
}


.menu-delight-head h2 {
  margin: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 13px;

  color: #173d33;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      34px,
      3.3vw,
      48px
    );

  font-weight: 600;

  line-height: 1;
}


.menu-delight-head h2 span {
  color: #d89529;

  font-size: 22px;
}


/* =========================================================
   GRID
========================================================= */

.menu-delight-grid {
  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.menu-delight-card {
  position: relative;

  min-width: 0;

  min-height: 335px;

  padding-bottom: 24px;

  overflow: visible;

  border-radius: 16px;

  background:
    #fffaf2;

  border:
    1px solid
    rgba(195, 151, 72, .13);

  box-shadow:
    0 10px 25px
    rgba(61, 46, 24, .08);

  transition:
    transform .45s
    cubic-bezier(.16,1,.3,1),
    box-shadow .45s ease;
}


.menu-delight-card:hover {
  transform:
    translateY(-7px);

  box-shadow:
    0 20px 38px
    rgba(61, 46, 24, .14);
}


/* =========================================================
   IMAGE
========================================================= */

.menu-delight-image {
  position: relative;

  width: 100%;
  height: 195px;

  overflow: hidden;

  border-radius:
    15px
    15px
    0
    0;
}


.menu-delight-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform .85s
    cubic-bezier(.16,1,.3,1);
}


.menu-delight-card:hover
.menu-delight-image img {
  transform:
    scale(1.07);
}


/* =========================================================
   CENTER ICON
========================================================= */

.menu-delight-icon {
  position: relative;

  z-index: 5;

  width: 62px;
  height: 62px;

  margin:
    -31px
    auto
    17px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #d7a43d;

  font-size: 25px;

  background:
    linear-gradient(
      145deg,
      #0c5642,
      #073f32
    );

  border:
    2px solid
    #d9a33d;

  box-shadow:
    0 0 0 4px #fffaf2,
    0 8px 18px
    rgba(7,62,48,.22);

  transition:
    transform .5s
    cubic-bezier(.16,1,.3,1);
}


.menu-delight-card:hover
.menu-delight-icon {
  transform:
    translateY(-5px)
    scale(1.08)
    rotate(5deg);
}


/* =========================================================
   CARD TITLE
========================================================= */

.menu-delight-card h3 {
  margin: 0;

  padding:
    0
    10px;

  text-align: center;

  color: #31453c;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 19px;

  font-weight: 600;

  line-height: 1.15;
}


.menu-delight-card h3 span {
  display: block;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

  .menu-delight-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .menu-delight-wrap {
    width:
      calc(100% - 30px);
  }


  .menu-delight-grid {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 15px;
  }


  .menu-delight-image {
    height: 180px;
  }

}


@media (max-width: 430px) {

  .menu-delight-grid {
    grid-template-columns: 1fr;
  }

}

/* =========================================================
   MENU DELIGHT 3D ANIMATION
========================================================= */

.menu-delight-grid{
  perspective:1600px;
}

.menu-delight-card{
  position:relative;
  overflow:visible;
  transform-style:preserve-3d;
  transition:
    transform .18s linear,
    box-shadow .45s ease,
    border-color .35s ease;
  will-change:transform;
}

/* GOLD SHINE */
.menu-delight-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  background:linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,.55) 45%,
    rgba(224,180,82,.15) 55%,
    transparent 80%
  );
  opacity:0;
  transform:translateX(-120%);
  transition:1s;
  pointer-events:none;
}

.menu-delight-card:hover::before{
  opacity:1;
  transform:translateX(120%);
}

/* IMAGE */
.menu-delight-image{
  overflow:hidden;
  border-radius:16px 16px 0 0;
}

.menu-delight-image img{
  transition:
    transform .8s cubic-bezier(.16,1,.3,1),
    filter .5s;
  transform-origin:center;
}

.menu-delight-card:hover .menu-delight-image img{
  transform:scale(1.12) rotate(1deg);
  filter:saturate(1.08);
}

/* FLOATING ICON */
.menu-delight-icon{
  transform:translateZ(40px);
  animation:iconFloat 4s ease-in-out infinite;
  transition:.4s;
}

@keyframes iconFloat{
  0%,100%{
    transform:
      translateZ(40px)
      translateY(0);
  }
  50%{
    transform:
      translateZ(55px)
      translateY(-8px);
  }
}

.menu-delight-card:hover .menu-delight-icon{
  transform:
    translateZ(70px)
    scale(1.12)
    rotateY(15deg);
}

/* TEXT DEPTH */
.menu-delight-card h3{
  transform:translateZ(28px);
  transition:.4s;
}

.menu-delight-card:hover h3{
  color:#0b4c3a;
  transform:
    translateZ(40px)
    translateY(-4px);
}

/* GOLD PARTICLES */
.menu-delight-card::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  top:-40px;
  right:-40px;
  background:radial-gradient(
    circle,
    rgba(212,160,66,.22),
    transparent 70%
  );
  opacity:0;
  transition:.45s;
  pointer-events:none;
}

.menu-delight-card:hover::after{
  opacity:1;
}

/* HOVER SHADOW */
.menu-delight-card:hover{
  box-shadow:
    0 35px 55px rgba(23,61,51,.18),
    0 10px 18px rgba(23,61,51,.10);
}

/* SCROLL ENTRANCE */
.menu-delight-card{
  opacity:0;
  transform:
    translateY(70px)
    rotateX(18deg)
    scale(.92);
}

.menu-delight-card.show{
  opacity:1;
  transform:
    translateY(0)
    rotateX(0)
    scale(1);
  transition:
    .8s cubic-bezier(.16,1,.3,1);
}

.menu-delight-card:nth-child(1).show{transition-delay:.05s;}
.menu-delight-card:nth-child(2).show{transition-delay:.12s;}
.menu-delight-card:nth-child(3).show{transition-delay:.19s;}
.menu-delight-card:nth-child(4).show{transition-delay:.26s;}
.menu-delight-card:nth-child(5).show{transition-delay:.33s;}
.menu-delight-card:nth-child(6).show{transition-delay:.40s;}

/* =========================================================
   SOUTH INDIAN MENU BOARD
========================================================= */

.south-menu-board {
  position: relative;
  width: 100%;
  padding: 42px 0 58px;
  background: #fffaf1;
}

.south-menu-inner {
  position: relative;

  width: min(calc(100% - 70px), 1500px);

  min-height: 640px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    31%
    43%
    26%;

  overflow: hidden;

  border-radius: 24px;

  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(20, 120, 89, .12),
      transparent 28%
    ),
    linear-gradient(
      110deg,
      #063b30 0%,
      #064735 48%,
      #04362c 100%
    );

  box-shadow:
    0 25px 50px
    rgba(39, 31, 13, .13);
}


/* =========================================================
   LEFT INTRO
========================================================= */

.south-menu-intro {
  position: relative;

  padding:
    42px
    35px
    0;

  border-right:
    1px solid
    rgba(215, 166, 70, .30);
}

.south-menu-eyebrow {
  margin-bottom: 10px;

  color: #d5a145;

  font-family: "Jost", sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .10em;
}

.south-menu-intro h2 {
  margin: 0;

  color: #fffaf0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      34px,
      2.6vw,
      46px
    );

  font-weight: 600;

  line-height: 1.05;
}

.south-menu-intro h2 span {
  display: block;
}

.south-menu-intro p {
  max-width: 290px;

  margin:
    24px
    0
    20px;

  color:
    rgba(255,255,255,.86);

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  line-height: 1.65;
}


/* =========================================================
   SMALL ORNAMENT
========================================================= */

.south-menu-ornament {
  width: 170px;

  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 22px;

  color: #d5a145;
}

.south-menu-ornament span {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(215,166,70,.65),
      transparent
    );
}

.south-menu-ornament i {
  font-size: 10px;

  font-style: normal;
}


/* =========================================================
   IMAGE COLLAGE
========================================================= */

.south-menu-collage {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 310px;
}

.south-main-food {
  position: absolute;

  left: -5px;
  bottom: 60px;

  width: 82%;
  height: 280px;

  overflow: hidden;

  border-radius:
    45% 45% 10% 0 /
    28% 28% 10% 0;

  transform:
    rotate(-5deg);
}

.south-main-food img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}


/* SMALL IMAGE 1 */

.south-small-food {
  position: absolute;

  overflow: hidden;

  border:
    3px solid
    #fffaf1;

  border-radius: 14px;

  box-shadow:
    0 12px 22px
    rgba(0,0,0,.18);
}

.south-small-food img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.south-small-food-one {
  width: 115px;
  height: 115px;

  right: 100px;
  bottom: -4px;

  transform:
    rotate(2deg);
}

.south-small-food-two {
  width: 120px;
  height: 105px;

  right: 5px;
  bottom: 5px;

  transform:
    rotate(4deg);
}


/* =========================================================
   CENTER MENU LIST
========================================================= */

.south-menu-list {
  padding:
    38px
    45px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}


/* EACH GROUP */

.south-menu-group {
  padding:
    0
    0
    20px;

  margin-bottom: 18px;

  border-bottom:
    1px solid
    rgba(211,166,74,.25);
}

.south-menu-group:last-child {
  margin-bottom: 0;

  border-bottom: 0;
}

.south-menu-group h3 {
  margin:
    0
    0
    13px;

  color: #d9a647;

  font-family:
    "Jost",
    sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .06em;
}


/* MENU ROW */

.south-menu-row {
  position: relative;

  display: grid;

  grid-template-columns:
    1fr
    auto;

  align-items: center;

  gap: 20px;

  padding:
    4px
    0
    4px
    15px;

  color:
    rgba(255,255,255,.90);

  font-family:
    "Jost",
    sans-serif;

  font-size: 12px;

  line-height: 1.3;
}

.south-menu-row::before {
  content: "";

  position: absolute;

  left: 0;
  top: 11px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #dfa73e;
}

.south-menu-row strong {
  color:
    rgba(255,255,255,.92);

  font-size: 12px;

  font-weight: 600;
}


/* =========================================================
   QUALITY PANEL
========================================================= */

.south-quality-card {
  align-self: center;

  width:
    calc(100% - 55px);

  min-height: 520px;

  margin-right: 30px;

  padding:
    38px
    32px;

  border-radius: 34px;

  border:
    1px solid
    rgba(217,167,66,.85);

  box-shadow:
    inset
    0
    0
    0
    4px
    rgba(217,167,66,.10);

  background:
    rgba(0, 47, 37, .22);
}

.south-quality-card h3 {
  margin: 0;

  color: #fffaf0;

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(
      28px,
      2vw,
      38px
    );

  font-weight: 500;

  line-height: 1.05;
}

.south-quality-card h3 span {
  display: block;
}

.south-quality-card h3 em {
  display: block;

  margin-top: 8px;

  color: #e98724;

  font-family:
    "Yellowtail",
    cursive;

  font-size: 1.15em;

  font-weight: 400;

  font-style: normal;
}


/* =========================================================
   QUALITY DIVIDER
========================================================= */

.quality-divider {
  display: flex;

  align-items: center;

  gap: 8px;

  margin:
    22px
    0;

  color: #d49c35;
}

.quality-divider span {
  flex: 1;

  height: 1px;

  background:
    rgba(214,165,67,.45);
}

.quality-divider i {
  font-style: normal;

  font-size: 9px;
}


/* =========================================================
   QUALITY LIST
========================================================= */

.south-quality-card ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.south-quality-card li {
  display: grid;

  grid-template-columns:
    40px
    1fr;

  align-items: center;

  gap: 13px;

  min-height: 62px;

  color:
    rgba(255,255,255,.90);

  font-family:
    "Jost",
    sans-serif;

  font-size: 12px;
}

.south-quality-card li > i {
  color: #d6a23f;

  font-size: 24px;
}

.south-quality-card li span {
  line-height: 1.4;
}

.south-quality-card li b {
  display: block;

  font-weight: 500;
}


/* =========================================================
   DECORATIVE CORNER
========================================================= */

.south-menu-inner::after {
  content: "❧";

  position: absolute;

  top: -10px;
  right: -3px;

  color:
    rgba(217,168,68,.17);

  font-size: 120px;

  transform:
    rotate(38deg);

  pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .south-menu-inner {
    grid-template-columns:
      34%
      40%
      26%;
  }

  .south-menu-list {
    padding:
      35px
      28px;
  }

  .south-quality-card {
    width:
      calc(100% - 35px);

    margin-right: 20px;

    padding:
      32px
      22px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .south-menu-inner {
    width:
      calc(100% - 30px);

    display: block;

    min-height: auto;
  }


  .south-menu-intro {
    min-height: 580px;

    padding:
      40px
      25px;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(215,166,70,.30);
  }


  .south-menu-list {
    padding:
      35px
      25px;
  }


  .south-quality-card {
    width:
      calc(100% - 50px);

    margin:
      10px
      auto
      30px;

    min-height: auto;
  }

}

/* =========================================
   SMALL FOOD IMAGES - HOVER FRONT
========================================= */

.south-small-food {
  position: absolute;
  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    box-shadow .45s ease,
    filter .35s ease;
}


/* normal layer */

.south-small-food-one {
  z-index: 8;
}

.south-small-food-two {
  z-index: 9;
}


/* whichever image hover pannalum FRONT-ku varum */

.south-small-food:hover {
  z-index: 50 !important;

  transform:
    translateY(-12px)
    scale(1.08)
    rotate(0deg) !important;

  box-shadow:
    0 28px 50px
    rgba(0,0,0,.30);

  filter:
    brightness(1.04)
    saturate(1.06);
}


/* =========================================================
   SOUTH QUALITY CARD - PREMIUM 3D ANIMATION
========================================================= */

.south-quality-card {
  position: relative;

  transform-style: preserve-3d;
  perspective: 1200px;

  overflow: visible;

  opacity: 0;

  transform:
    perspective(1200px)
    translateY(45px)
    rotateX(8deg)
    rotateY(-4deg)
    scale(.96);

  transition:
    opacity .85s ease,
    transform .75s cubic-bezier(.16,1,.3,1),
    box-shadow .55s ease,
    border-color .45s ease;

  will-change: transform;
}


/* =========================================================
   SCROLL ENTRANCE
========================================================= */

.south-menu-board.quality-3d-visible
.south-quality-card {
  opacity: 1;

  transform:
    perspective(1200px)
    translateY(0)
    rotateX(0deg)
    rotateY(0deg)
    scale(1);
}


/* =========================================================
   GOLD CURSOR GLOW
========================================================= */

.south-quality-card::before {
  content: "";

  position: absolute;

  z-index: 0;

  width: 260px;
  height: 260px;

  left:
    calc(var(--quality-x, 50%) - 130px);

  top:
    calc(var(--quality-y, 50%) - 130px);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(224,171,62,.20),
      rgba(224,171,62,.07) 38%,
      transparent 72%
    );

  opacity: 0;

  pointer-events: none;

  transition:
    opacity .3s ease;
}


.south-quality-card:hover::before {
  opacity: 1;
}


/* =========================================================
   GOLD BORDER GLOW
========================================================= */

.south-quality-card {
  box-shadow:
    inset 0 0 0 4px
    rgba(217,167,66,.08),

    0 18px 35px
    rgba(0,0,0,.12);
}


.south-quality-card:hover {
  border-color:
    rgba(232,181,73,.95);

  box-shadow:
    inset 0 0 0 4px
    rgba(217,167,66,.10),

    0 35px 60px
    rgba(0,0,0,.24),

    0 0 35px
    rgba(216,162,52,.10);
}


/* =========================================================
   HEADING 3D DEPTH
========================================================= */

.south-quality-card h3 {
  position: relative;

  z-index: 3;

  transform:
    translateZ(30px);

  transition:
    transform .55s cubic-bezier(.16,1,.3,1);
}


.south-quality-card:hover h3 {
  transform:
    translateZ(55px)
    translateY(-4px);
}


/* QUALITY ORANGE WORD */

.south-quality-card h3 em {
  display: block;

  transform:
    translateZ(18px);

  transition:
    transform .55s cubic-bezier(.16,1,.3,1),
    text-shadow .4s ease;
}


.south-quality-card:hover h3 em {
  transform:
    translateZ(45px)
    translateX(5px);

  text-shadow:
    0 10px 25px
    rgba(232,135,36,.22);
}


/* =========================================================
   DIVIDER 3D + GLOW
========================================================= */

.quality-divider {
  position: relative;

  z-index: 3;

  transform:
    translateZ(22px);

  transition:
    transform .45s ease;
}


.south-quality-card:hover
.quality-divider {
  transform:
    translateZ(38px);
}


.quality-divider i {
  animation:
    qualityDiamondPulse
    2.6s
    ease-in-out
    infinite;
}


@keyframes qualityDiamondPulse {

  0%,
  100% {
    transform:
      scale(1)
      rotate(0deg);

    opacity: .75;
  }

  50% {
    transform:
      scale(1.35)
      rotate(45deg);

    opacity: 1;
  }

}


/* =========================================================
   LIST ITEMS - 3D STAGGER
========================================================= */

.south-quality-card li {
  position: relative;

  z-index: 3;

  opacity: 0;

  transform:
    translateX(30px)
    translateZ(0);

  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.16,1,.3,1),
    color .35s ease;
}


.south-menu-board.quality-3d-visible
.south-quality-card li {
  opacity: 1;

  transform:
    translateX(0)
    translateZ(18px);
}


.south-menu-board.quality-3d-visible
.south-quality-card li:nth-child(1) {
  transition-delay: .15s;
}


.south-menu-board.quality-3d-visible
.south-quality-card li:nth-child(2) {
  transition-delay: .25s;
}


.south-menu-board.quality-3d-visible
.south-quality-card li:nth-child(3) {
  transition-delay: .35s;
}


.south-menu-board.quality-3d-visible
.south-quality-card li:nth-child(4) {
  transition-delay: .45s;
}


.south-menu-board.quality-3d-visible
.south-quality-card li:nth-child(5) {
  transition-delay: .55s;
}


/* =========================================================
   ICONS - FLOATING 3D
========================================================= */

.south-quality-card li > i {
  position: relative;

  z-index: 4;

  transform:
    translateZ(35px);

  transform-origin:
    center;

  animation:
    qualityIconFloat
    4s
    ease-in-out
    infinite;

  transition:
    transform .5s cubic-bezier(.16,1,.3,1),
    text-shadow .4s ease;
}


.south-quality-card li:nth-child(2) > i {
  animation-delay: -.7s;
}


.south-quality-card li:nth-child(3) > i {
  animation-delay: -1.4s;
}


.south-quality-card li:nth-child(4) > i {
  animation-delay: -2.1s;
}


.south-quality-card li:nth-child(5) > i {
  animation-delay: -2.8s;
}


@keyframes qualityIconFloat {

  0%,
  100% {
    transform:
      translateZ(35px)
      translateY(0)
      rotateY(0deg);
  }

  50% {
    transform:
      translateZ(52px)
      translateY(-5px)
      rotateY(8deg);
  }

}


/* =========================================================
   LIST ITEM HOVER
========================================================= */

.south-quality-card li:hover {
  transform:
    translateX(8px)
    translateZ(38px);

  color: #fff;
}


.south-quality-card li:hover > i {
  animation-play-state: paused;

  transform:
    translateZ(65px)
    translateY(-3px)
    rotateY(-12deg)
    scale(1.16);

  text-shadow:
    0 8px 20px
    rgba(224,165,50,.35);
}


/* =========================================================
   TEXT DEPTH
========================================================= */

.south-quality-card li span {
  transform:
    translateZ(18px);

  transition:
    transform .45s cubic-bezier(.16,1,.3,1);
}


.south-quality-card li:hover span {
  transform:
    translateZ(38px)
    translateX(3px);
}


/* =========================================================
   DECORATIVE CORNER MOTION
========================================================= */

.south-menu-inner::after {
  animation:
    qualityCornerFloat
    6s
    ease-in-out
    infinite;
}


@keyframes qualityCornerFloat {

  0%,
  100% {
    transform:
      rotate(38deg)
      translateY(0);
  }

  50% {
    transform:
      rotate(42deg)
      translateY(-8px);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .south-quality-card {
    transform: none !important;
  }


  .south-quality-card::before {
    display: none;
  }


  .south-quality-card li > i {
    animation:
      qualityIconMobile
      4s
      ease-in-out
      infinite;
  }


  @keyframes qualityIconMobile {

    0%,
    100% {
      transform:
        translateY(0);
    }

    50% {
      transform:
        translateY(-4px);
    }

  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .south-quality-card,
  .south-quality-card li,
  .south-quality-card li > i,
  .quality-divider i,
  .south-menu-inner::after {
    animation: none !important;
    transition: none !important;
  }

}

/* =========================================================
   DELICIOUS TOGETHER CTA STRIP
========================================================= */

.delicious-strip {
  position: relative;

  width: 100%;

  padding:
    42px
    0
    55px;

  background:
    #fffaf1;
}


/* =========================================================
   MAIN GREEN STRIP
========================================================= */

.delicious-strip-inner {
  position: relative;

  width:
    min(
      calc(100% - 70px),
      1500px
    );

  min-height: 245px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    220px
    minmax(360px,.9fr)
    1px
    minmax(600px,1.35fr);

  align-items: center;

  overflow: visible;

  border-radius: 24px;

  background:
    radial-gradient(
      circle at 70% 40%,
      rgba(10,103,80,.14),
      transparent 35%
    ),
    linear-gradient(
      105deg,
      #043e31 0%,
      #00503d 52%,
      #063b30 100%
    );

  box-shadow:
    0 20px 45px
    rgba(40,31,14,.12);
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.delicious-strip-visual {
  position: relative;

  min-height: 245px;
}


.delicious-lamp {
  position: absolute;

  z-index: 5;

  left: -20px;
  bottom: -5px;

  width: 250px;
  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0 16px 20px
      rgba(0,0,0,.25)
    );
}


/* =========================================================
   COPY
========================================================= */

.delicious-strip-copy {
  padding:
    25px
    35px
    25px
    5px;
}


.delicious-kicker {
  margin-bottom: 13px;

  color:
    #d5a13f;

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: .02em;
}


.delicious-strip-copy h2 {
  margin: 0;

  color:
    #fffaf0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      33px,
      2.5vw,
      45px
    );

  font-weight: 500;

  line-height: 1.06;
}


.delicious-strip-copy h2 span {
  display: block;
}


/* =========================================================
   VERTICAL DIVIDER
========================================================= */

.delicious-strip-divider {
  width: 1px;
  height: 175px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(215,166,66,.55),
      transparent
    );
}


/* =========================================================
   RIGHT
========================================================= */

.delicious-strip-right {
  padding:
    28px
    45px
    25px
    38px;
}


/* =========================================================
   PROCESS ROW
========================================================= */

.delicious-process {
  display: grid;

  grid-template-columns:
    1fr
    55px
    1fr
    55px
    1fr
    55px
    1fr;

  align-items: start;

  margin-bottom: 28px;
}


/* =========================================================
   STEP
========================================================= */

.delicious-step {
  text-align: center;
}


.delicious-step-icon {
  width: 52px;
  height: 52px;

  margin:
    0
    auto
    10px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color:
    #d7a23c;

  font-size: 26px;

  border:
    1px solid
    rgba(215,165,65,.50);

  background:
    rgba(255,255,255,.015);
}


.delicious-step span {
  display: block;

  color:
    rgba(255,255,255,.92);

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;

  line-height: 1.35;
}


.delicious-step span b {
  display: block;

  font-weight: 500;
}


/* =========================================================
   DOTTED CONNECTOR
========================================================= */

.delicious-dotline {
  position: relative;

  margin-top: 25px;

  height: 1px;

  background:
    repeating-linear-gradient(
      90deg,
      #d5a13e 0 4px,
      transparent 4px 9px
    );

  opacity: .70;
}


/* =========================================================
   BUTTON
========================================================= */

.delicious-strip-btn {
  width: max-content;

  min-width: 260px;
  min-height: 46px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  padding:
    0
    23px;

  border-radius: 6px;

  color:
    #0b4536;

  background:
    linear-gradient(
      135deg,
      #f5d790,
      #e9b54b
    );

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .03em;

  box-shadow:
    0 8px 18px
    rgba(0,0,0,.13);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}


.delicious-strip-btn:hover {
  transform:
    translateY(-3px);

  box-shadow:
    0 15px 26px
    rgba(0,0,0,.20);
}


/* =========================================================
   DECORATIVE PETAL
========================================================= */

.delicious-petal {
  position: absolute;

  z-index: 8;

  right: 25px;
  top: 42px;

  width: 22px;
  height: 40px;

  border-radius:
    80% 20% 80% 20%;

  background:
    linear-gradient(
      140deg,
      #f2794e,
      #df4d29
    );

  transform:
    rotate(34deg);

  box-shadow:
    0 7px 12px
    rgba(0,0,0,.13);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1150px) {

  .delicious-strip-inner {
    grid-template-columns:
      190px
      minmax(310px,.85fr)
      1px
      1.2fr;
  }


  .delicious-lamp {
    width: 165px;
  }


  .delicious-process {
    grid-template-columns:
      repeat(4,1fr);

    gap: 16px;
  }


  .delicious-dotline {
    display: none;
  }

}


@media (max-width: 800px) {

  .delicious-strip-inner {
    width:
      calc(100% - 30px);

    display: block;

    overflow: hidden;
  }


  .delicious-strip-visual {
    height: 240px;
  }


  .delicious-lamp {
    left: 50%;

    transform:
      translateX(-50%);

    width: 180px;
  }


  .delicious-strip-copy {
    padding:
      20px
      25px;

    text-align: center;
  }


  .delicious-strip-divider {
    width:
      calc(100% - 50px);

    height: 1px;

    margin:
      15px
      auto;
  }


  .delicious-strip-right {
    padding:
      25px;
  }


  .delicious-process {
    grid-template-columns:
      repeat(2,1fr);

    gap:
      25px
      15px;
  }


  .delicious-strip-btn {
    margin-inline: auto;
  }

}

/* =========================================================
   OCCASIONS HERO
========================================================= */

.occasions-hero {
  position: relative;

  width: 100%;

  min-height: 660px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 18% 40%,
      rgba(216,170,82,.06),
      transparent 30%
    ),
    #fffaf1;
}


/* =========================================================
   MAIN GRID
========================================================= */

.occasions-hero-inner {
  width:
    min(
      calc(100% - 70px),
      1500px
    );

  min-height: 660px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(420px,.82fr)
    minmax(650px,1.18fr);

  align-items: stretch;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.occasions-hero-copy {
  position: relative;

  z-index: 20;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  padding:
    42px
    48px
    45px
    5px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.occasions-breadcrumb {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 28px;

  color: #626760;

  font-family:
    "Jost",
    sans-serif;

  font-size: 10px;
}


.occasions-breadcrumb a {
  color: #3b463f;
}


.occasions-breadcrumb i {
  font-size: 9px;
}


/* =========================================================
   EYEBROW
========================================================= */

.occasions-eyebrow {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 9px;

  color: #de713b;

  font-family:
    "Jost",
    sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .11em;
}


.occasions-eyebrow span {
  color: #d29a31;
}


/* =========================================================
   TITLE
========================================================= */

.occasions-title {
  margin: 0;

  color: #173d33;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: clamp(60px, 5vw, 82px);

  font-weight: 600;

  line-height: .97;

  letter-spacing: -.035em;
}


.occasions-title > span {
  display: block;

  margin-top: 7px;

  color: #ef622e;

  font-family:
    "Yellowtail",
    cursive;

  font-size: .93em;

  font-weight: 400;

  line-height: 1;
}


.occasions-title small {
  font-family: "Jost", sans-serif;

  font-size: 24px;

  font-weight: 300;

  vertical-align: middle;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.occasions-description {
  max-width: 515px;

  margin:
    24px
    0
    31px;

  color: #505a55;

  font-family:
    "Jost",
    sans-serif;

  font-size: 19px;

  line-height: 1.7;
}


/* =========================================================
   BENEFITS
========================================================= */

.occasions-benefits {
  display: grid;

  grid-template-columns:
    repeat(4,minmax(0,1fr));

  max-width: 620px;
}


.occasion-benefit {
  position: relative;

  min-width: 0;

  text-align: center;

  padding:
    0
    15px;
}


.occasion-benefit:first-child {
  padding-left: 0;
}


.occasion-benefit:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 7px;

  width: 1px;
  height: 65px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(201,153,65,.42),
      transparent
    );
}


.occasion-benefit-icon {
  width: 52px;
  height: 52px;

  margin:
    0
    auto
    7px;

  display: grid;

  place-items: center;

  color: #d28d24;

  font-size: 35px;
}


.occasion-benefit strong {
  display: block;

  color: #2e4138;

  font-family:
    "Jost",
    sans-serif;

  font-size: 17px;

  font-weight: 600;
}


.occasion-benefit span {
  display: block;

  margin-top: 3px;

  color: #69706b;

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.occasions-hero-visual {
  position: relative;

  min-height: 660px;
}


/* =========================================================
   MAIN CURVED IMAGE
========================================================= */

.occasions-main-photo {
  position: absolute;

  z-index: 3;

  top: 0;
  right: -65px;

  width: 112%;
  height: 540px;

  overflow: hidden;

  clip-path: polygon(
    22% 0%,
    44% 2%,
    61% 1%,
    78% 3%,
    100% 2%,

    100% 100%,

    27% 100%,
    20% 95%,
    15% 87%,
    12% 76%,
    12% 63%,
    14% 50%,
    16% 37%,
    17% 25%,
    19% 12%
  );

  border-radius:
    38% 0 0 28% /
    30% 0 0 36%;

  filter:
    drop-shadow(
      -16px 18px 27px
      rgba(53,38,13,.14)
    );
}


.occasions-main-photo::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

  border-left:
    3px solid
    rgba(211,160,61,.80);
}


.occasions-main-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center center;

  display: block;
}


/* =========================================================
   FLOWER IMAGE
========================================================= */

.occasions-flower {
  position: absolute;

  z-index: 14;

  left: 2%;
  top: 275px;

  width: 145px;
  height: auto;

  object-fit: contain;

  pointer-events: none;

  filter:
    drop-shadow(
      0 12px 18px
      rgba(26,46,28,.18)
    );
}


/* =========================================================
   OCCASION HERO - FLOATING LEAVES
========================================================= */

.occasion-leaf {
    position: absolute;
    z-index: 12;

    pointer-events: none;
    object-fit: contain;

    display: block;

    will-change: transform;

    transform-origin: 50% 80%;
}


/* TOP LEAF */

.occasion-leaf-one {
    width: 90px;

    left: -12px;
    top: 42px;

    animation:
        occasionLeafTop 3.8s
        cubic-bezier(.45, .05, .55, .95)
        infinite;
}


/* BOTTOM LEAF */

.occasion-leaf-two {
    width: 75px;

    left: -5px;
    top: 185px;

    animation:
        occasionLeafBottom 4.4s
        cubic-bezier(.45, .05, .55, .95)
        infinite;

    animation-delay: -1.3s;
}


/* =========================================
   TOP LEAF WIND MOVEMENT
========================================= */

@keyframes occasionLeafTop {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(-25deg)
            scale(1);
    }

    20% {
        transform:
            translate3d(7px, -5px, 0)
            rotate(-17deg)
            scale(1.02);
    }

    40% {
        transform:
            translate3d(2px, -10px, 0)
            rotate(-29deg)
            scale(.99);
    }

    60% {
        transform:
            translate3d(-5px, -4px, 0)
            rotate(-19deg)
            scale(1.02);
    }

    80% {
        transform:
            translate3d(3px, 4px, 0)
            rotate(-27deg)
            scale(1);
    }
}


/* =========================================
   BOTTOM LEAF WIND MOVEMENT
========================================= */

@keyframes occasionLeafBottom {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(18deg)
            scale(1);
    }

    20% {
        transform:
            translate3d(-6px, 4px, 0)
            rotate(10deg)
            scale(1.01);
    }

    40% {
        transform:
            translate3d(5px, -8px, 0)
            rotate(24deg)
            scale(1.03);
    }

    60% {
        transform:
            translate3d(9px, -3px, 0)
            rotate(14deg)
            scale(.99);
    }

    80% {
        transform:
            translate3d(-3px, 5px, 0)
            rotate(22deg)
            scale(1.01);
    }
}


/* =========================================================
   PETAL
========================================================= */

.occasion-petal {
  position: absolute;

  z-index: 15;

  left: -38px;
  top: 145px;

  width: 11px;
  height: 17px;

  border-radius:
    80% 20% 70% 30%;

  background:
    linear-gradient(
      145deg,
      #fa9a9b,
      #e76872
    );

  transform:
    rotate(32deg);
}


/* =========================================================
   STATS BAR
========================================================= */

.occasion-stats-bar {
  position: absolute;

  z-index: 25;

  right: -25px;
  bottom: 42px;

  width: 115%;
  min-height: 120px;

  padding:
    22px
    30px;

  display: grid;

  grid-template-columns:
    repeat(4,minmax(0,1fr));

  align-items: center;

  border-radius: 22px;

  background:
    linear-gradient(
      105deg,
      #064837,
      #004934,
      #073d31
    );

  border:
    1px solid
    rgba(213,163,67,.28);

  box-shadow:
    0 20px 35px
    rgba(29,24,10,.18);
}


/* =========================================================
   EACH STAT
========================================================= */

.occasion-stat {
  position: relative;

  display: grid;

  grid-template-columns:
    50px
    auto;

  align-items: center;

  gap:
    0
    10px;

  padding:
    0
    22px;
}


.occasion-stat:first-child {
  padding-left: 0;
}


.occasion-stat:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 5px;

  width: 1px;
  height: 65px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(214,165,66,.48),
      transparent
    );
}


.occasion-stat-icon {
  grid-row:
    1 / 3;

  width: 45px;
  height: 45px;

  display: grid;

  place-items: center;

  color: #d7a441;

  font-size: 28px;
}


.occasion-stat strong {
  color: #fffaf0;

  font-family:
    "Playfair Display",
    serif;

  font-size: 30px;

  font-weight: 500;

  line-height: 1;
}


.occasion-stat span {
  margin-top: 5px;

  color:
    rgba(255,255,255,.78);

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  line-height: 1.35;
}


.occasion-stat span b {
  display: block;

  color: #fff;

  font-weight: 500;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .occasions-hero-inner {
    grid-template-columns:
      minmax(380px,.9fr)
      minmax(520px,1.1fr);
  }


  .occasions-benefits {
    grid-template-columns:
      repeat(2,1fr);

    row-gap: 20px;
  }


  .occasion-benefit:nth-child(2)::after {
    display: none;
  }


  .occasion-stats-bar {
    width: 96%;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 780px) {

  .occasions-hero {
    min-height: auto;
  }


  .occasions-hero-inner {
    width:
      calc(100% - 30px);

    display: flex;

    flex-direction: column;
  }


  .occasions-hero-visual {
    min-height: 480px;

    order: 1;
  }


  .occasions-hero-copy {
    order: 2;

    padding:
      40px
      5px
      50px;
  }


  .occasions-main-photo {
    right: -55px;

    width: 125%;
    height: 420px;
  }


  .occasions-flower {
    left: 5px;
    top: 230px;

    width: 110px;
  }


  .occasion-stats-bar {
    right: 0;
    bottom: -5px;

    width: 100%;

    grid-template-columns:
      repeat(2,1fr);

    gap:
      20px
      0;
  }


  .occasion-stat:nth-child(2)::after {
    display: none;
  }


  .occasions-title {
    font-size:
      clamp(
        44px,
        12vw,
        57px
      );
  }

}


/* =========================================================
   CELEBRATIONS GRID SECTION
========================================================= */

.celebrations-grid-section {
  position: relative;

  width: 100%;

  padding:
    28px
    0
    55px;

  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(216,168,76,.06),
      transparent 30%
    ),
    #fffaf1;
}


.celebrations-grid-wrap {
  width:
    min(
      calc(100% - 70px),
      1500px
    );

  margin-inline: auto;
}


/* =========================================================
   TOP HEADING
========================================================= */

.celebrations-grid-heading {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  margin-bottom: 20px;
}


.celebrations-grid-heading h2 {
  margin: 0;

  color: #53665d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: .07em;

  white-space: nowrap;
}


.celebration-heading-line {
  width: 80px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(211,157,55,.55)
    );
}


.celebration-heading-line:last-child {
  transform: scaleX(-1);
}


.celebration-heading-ornament {
  color: #d89a2e;

  font-size: 16px;
}


/* =========================================================
   5 x 2 GRID
========================================================= */

.celebrations-card-grid {
  display: grid;

  grid-template-columns:
    repeat(5,minmax(0,1fr));

  gap:
    18px
    15px;
}


/* =========================================================
   CARD
========================================================= */

.celebration-card {
  position: relative;

  min-width: 0;

  min-height: 330px;

  overflow: visible;

  border-radius: 13px;

  background:
    linear-gradient(
      180deg,
      #fffdf8,
      #fff9ef
    );

  border:
    1px solid
    rgba(195,150,65,.14);

  box-shadow:
    0 8px 20px
    rgba(60,47,24,.075);

  transition:
    transform .4s cubic-bezier(.16,1,.3,1),
    box-shadow .4s ease;
}


.celebration-card:hover {
  transform:
    translateY(-7px);

  box-shadow:
    0 20px 35px
    rgba(45,62,51,.14);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.celebration-card-image {
  width: 100%;
  height: 158px;

  overflow: hidden;

  border-radius:
    12px
    12px
    0
    0;
}


.celebration-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform .75s
    cubic-bezier(.16,1,.3,1);
}


.celebration-card:hover
.celebration-card-image img {
  transform:
    scale(1.08);
}


/* =========================================================
   OVERLAP ICON
========================================================= */

.celebration-card-icon {
  position: relative;

  z-index: 5;

  width: 54px;
  height: 54px;

  margin:
    -27px
    auto
    12px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #d7a33d;

  background:
    linear-gradient(
      145deg,
      #0b5742,
      #074232
    );

  border:
    2px solid
    #d7a13c;

  box-shadow:
    0 0 0 3px #fffaf1,
    0 8px 15px
    rgba(6,63,48,.17);

  font-size: 23px;

  transition:
    transform .4s
    cubic-bezier(.16,1,.3,1),
    box-shadow .4s ease;
}


.celebration-card:hover
.celebration-card-icon {
  transform:
    translateY(-5px)
    scale(1.08)
    rotateY(12deg);

  box-shadow:
    0 0 0 3px #fffaf1,
    0 15px 25px
    rgba(6,63,48,.22);
}


/* =========================================================
   CONTENT
========================================================= */

.celebration-card-content {
  padding:
    0
    18px
    14px;
font-size: 10;
  text-align: center;
}


.celebration-card-content h3 {
  margin:
    0
    0
    9px;

  color: #33483f;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 22px;

  font-weight: 600;

  line-height: 1.15;
}


.celebration-card-content p {
  margin: 0 auto;

  max-width: 190px;

  min-height: 62px;

  color: #626b66;

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  line-height: 1.55;
}


/* =========================================================
   BOTTOM ORNAMENT
========================================================= */

.celebration-card-ornament {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 6px;

  width: 80px;

  margin:
    9px
    auto
    0;

  color: #d99b31;
}


.celebration-card-ornament span {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(213,161,61,.55)
    );
}


.celebration-card-ornament span:last-child {
  transform:
    scaleX(-1);
}


.celebration-card-ornament i {
  font-size: 10px;

  font-style: normal;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .celebrations-card-grid {
    grid-template-columns:
      repeat(3,1fr);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .celebrations-grid-wrap {
    width:
      calc(100% - 30px);
  }


  .celebrations-card-grid {
    grid-template-columns:
      repeat(2,1fr);

    gap: 15px;
  }


  .celebration-card-image {
    height: 150px;
  }

}


@media (max-width: 440px) {

  .celebrations-card-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   GALLERY HERO
========================================================= */

.gallery-hero {
  position: relative;
  width: 100%;
  min-height: 420px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 20% 40%,
      rgba(220, 175, 85, .07),
      transparent 30%
    ),
    #fffaf1;
}


/* =========================================================
   INNER GRID
========================================================= */

.gallery-hero-inner {
  width: min(calc(100% - 70px), 1500px);
  min-height: 420px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(410px, .85fr)
    minmax(620px, 1.15fr);

  align-items: stretch;
}


/* =========================================================
   LEFT COPY
========================================================= */

.gallery-hero-copy {
  position: relative;
  z-index: 20;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

 padding:
  25px
  50px
  25px
  5px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.gallery-breadcrumb {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 30px;

  font-family: "Jost", sans-serif;
  font-size: 10px;

  color: #59625d;
}

.gallery-breadcrumb a {
  color: #2f4038;
  text-decoration: none;
}

.gallery-breadcrumb i {
  font-size: 9px;
}


/* =========================================================
   EYEBROW
========================================================= */

.gallery-eyebrow {
  display: flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 12px;

  color: #3e4d46;

  font-family: "Jost", sans-serif;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .14em;
}

.gallery-eyebrow span {
  color: #d39a31;
  font-size: 17px;
}


/* =========================================================
   TITLE
========================================================= */

.gallery-title {
  margin: 0;

  color: #173f35;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
  clamp(
    64px,
    5.5vw,
    88px
  );

  font-weight: 600;

  line-height: .98;

  letter-spacing: -.03em;
}

.gallery-title > span {
  display: block;
}

.gallery-title em {
  color: #ef622e;

  font-family:
    "Yellowtail",
    cursive;

  font-size: .88em;

  font-style: normal;
  font-weight: 400;

  margin-left: 7px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.gallery-description {
  max-width: 500px;

  margin:
    26px
    0
    0;

  color: #515d57;

  font-family:
    "Jost",
    sans-serif;

  font-size: 20px;

  line-height: 1.65;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.gallery-hero-visual {
  position: relative;

  min-height: 520px;
}


/* =========================================================
   MAIN ORGANIC IMAGE
========================================================= */

.gallery-main-photo {
  position: absolute;

  z-index: 3;

  top: 0;
  right: -55px;

  width: 112%;
  height: 500px;

  overflow: hidden;

  clip-path: polygon(
    18% 0,
    40% 1%,
    62% 0,
    80% 2%,
    100% 0,
    100% 100%,
    15% 100%,
    10% 94%,
    7% 85%,
    5% 70%,
    6% 54%,
    8% 39%,
    10% 24%,
    13% 12%
  );

  border-radius:
    42% 0 0 28% /
    34% 0 0 36%;

  filter:
    drop-shadow(
      -16px 18px 25px
      rgba(48, 35, 13, .15)
    );
}


/* GOLD EDGE */

.gallery-main-photo::before {
  content: "";

  position: absolute;

  z-index: 4;

  inset: 0;

  pointer-events: none;

  border-left:
    3px solid
    rgba(215, 164, 67, .78);
}


.gallery-main-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center center;

  display: block;
}


/* =========================================================
   LEAVES
========================================================= */

.gallery-leaf {
  position: absolute;

  z-index: 14;

  width: 70px;

  object-fit: contain;

  pointer-events: none;

  filter:
    drop-shadow(
      0 9px 12px
      rgba(30, 48, 26, .15)
    );
}


.gallery-leaf-one {
  left: -20px;
  top: 50px;

  transform:
    rotate(-25deg);
}


.gallery-leaf-two {
  left: -7px;
  top: 320px;

  width: 65px;

  transform:
    rotate(18deg);
}


.gallery-leaf-three {
  right: -20px;
  top: 0;

  width: 95px;

  transform:
    rotate(-12deg);
}


/* =========================================================
   PETALS
========================================================= */

.gallery-petal {
  position: absolute;

  z-index: 16;

  width: 13px;
  height: 20px;

  border-radius:
    80% 20% 80% 20%;

  background:
    linear-gradient(
      145deg,
      #ffa2ae,
      #ed6579
    );

  pointer-events: none;
}


.petal-one {
  left: -100px;
  top: 125px;

  transform:
    rotate(35deg);
}


.petal-two {
  left: -65px;
  top: 195px;

  transform:
    rotate(-28deg);
}


.petal-three {
  left: -5px;
  top: 365px;

  transform:
    rotate(18deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .gallery-hero-inner {
    grid-template-columns:
      minmax(380px,.9fr)
      minmax(500px,1.1fr);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 780px) {

  .gallery-hero {
    min-height: auto;
  }

  .gallery-hero-inner {
    width:
      calc(100% - 30px);

    display: flex;
    flex-direction: column;
  }


  .gallery-hero-visual {
    order: 1;

    min-height: 400px;
  }


  .gallery-main-photo {
    width: 125%;
    height: 390px;

    right: -60px;
  }


  .gallery-hero-copy {
    order: 2;

    padding:
      35px
      5px
      50px;
  }


  .gallery-title {
    font-size:
      clamp(
        44px,
        12vw,
        58px
      );
  }

}


/* =========================================================
   FOOD MENU SECTION
========================================================= */

.food-menu-section {
  position: relative;
  width: 100%;

  padding:
    40px
    0
    70px;

  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(214, 166, 77, .07),
      transparent 35%
    ),
    #fffaf1;

  overflow: hidden;
}


.food-menu-container {
  width:
    min(
      calc(100% - 70px),
      1450px
    );

  margin-inline: auto;
}


/* =========================================================
   CATEGORY TABS
========================================================= */

.food-menu-tabs {
  max-width: 1100px;

  margin:
    0
    auto
    35px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;
}


.food-tab {
  min-height: 64px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  border-radius: 10px;

  border:
    1px solid
    rgba(207, 157, 66, .30);

  background:
    rgba(255,255,255,.55);

  color:
    #3c4641;

  font-family:
    "Jost",
    sans-serif;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  box-shadow:
    0 8px 18px
    rgba(46,37,18,.06);

  transition:
    transform .4s cubic-bezier(.16,1,.3,1),
    background .35s ease,
    color .35s ease,
    box-shadow .4s ease;
}


.food-tab i {
  color:
    #e19a28;

  font-size: 25px;

  transition:
    transform .4s cubic-bezier(.16,1,.3,1),
    color .3s ease;
}


.food-tab:hover {
  transform:
    translateY(-4px);
}


.food-tab.active {
  background:
    linear-gradient(
      135deg,
      #034c3b,
      #063e32
    );

  color: #fff;

  border-color:
    #d4a143;

  box-shadow:
    0 12px 25px
    rgba(5,65,50,.18);
}


.food-tab.active i {
  color:
    #d9a441;

  transform:
    scale(1.12);
}


/* =========================================================
   CATEGORY TITLE
========================================================= */

.food-menu-title-wrap,
.other-food-title {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  margin:
    10px
    auto
    25px;
}


.food-menu-title-wrap span,
.other-food-title span {
  width: 120px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #d8a144
    );
}


.food-menu-title-wrap span:last-child,
.other-food-title span:last-child {
  transform:
    scaleX(-1);
}


.food-menu-title-wrap i,
.other-food-title i {
  color:
    #d89d36;

  font-style: normal;

  font-size: 14px;
}


.food-menu-title-wrap h2,
.other-food-title h2 {
  margin: 0;

  color:
    #27463b;

  font-family:
    "Playfair Display",
    serif;

  font-size:
    29px;

  font-weight: 600;
}


/* =========================================================
   CATEGORY PANEL
========================================================= */

.food-category-panel {
  display: none;

  opacity: 0;

  transform:
    translateY(30px)
    scale(.98);
}


.food-category-panel.active {
  display: block;

  animation:
    foodPanelEnter
    .7s
    cubic-bezier(.16,1,.3,1)
    forwards;
}


@keyframes foodPanelEnter {

  from {
    opacity: 0;

    transform:
      translateY(35px)
      scale(.97);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}


/* =========================================================
   4 X 3 GRID
========================================================= */

.food-card-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0,1fr));

  gap:
    18px;
}


/* =========================================================
   FOOD CARD
========================================================= */

.food-card {
  position: relative;

  overflow: hidden;

  border-radius: 10px;

  background:
    #fffdf8;

  border:
    1px solid
    rgba(207,156,66,.18);

  box-shadow:
    0 8px 18px
    rgba(54,43,20,.08);

  transform-style:
    preserve-3d;

  transition:
    transform .55s cubic-bezier(.16,1,.3,1),
    box-shadow .55s ease,
    border-color .4s ease;

  cursor: pointer;
}


.food-card:hover {
  z-index: 10;

  transform:
    perspective(900px)
    translateY(-10px)
    rotateX(3deg)
    scale(1.025);

  border-color:
    rgba(207,156,66,.55);

  box-shadow:
    0 25px 42px
    rgba(50,39,18,.16);
}


/* IMAGE */

.food-card img {
  width: 100%;
  height: 205px;

  object-fit: cover;

  display: block;

  transition:
    transform .8s
    cubic-bezier(.16,1,.3,1),
    filter .5s ease;
}


.food-card:hover img {
  transform:
    scale(1.09);

  filter:
    saturate(1.08)
    contrast(1.03);
}


/* FOOD NAME */

.food-card h3 {
  min-height: 52px;

  margin: 0;

  padding:
    13px
    8px;

  display: flex;

  align-items: center;
  justify-content: center;

  text-align: center;

  color:
    #37473f;

  font-family:
    "Playfair Display",
    serif;

  font-size: 20px;

  font-weight: 600;

  background:
    #fffaf2;
}


/* =========================================================
   OTHER CATEGORY TITLE
========================================================= */

.other-food-title {
  margin-top: 35px;
}


/* =========================================================
   OTHER CATEGORY CARDS
========================================================= */

.other-food-grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 20px;
}


.other-category-card {
  position: relative;

  padding: 0;

  overflow: visible;

  border-radius: 10px;

  border:
    1px solid
    rgba(205,155,64,.20);

  background:
    #fffaf2;

  cursor: pointer;

  box-shadow:
    0 8px 18px
    rgba(48,39,20,.08);

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    box-shadow .45s ease;
}


.other-category-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    0 20px 36px
    rgba(40,35,20,.14);
}


.other-category-card > img {
  width: 100%;
  height: 170px;

  object-fit: cover;

  border-radius:
    10px
    10px
    0
    0;

  display: block;
}


.other-category-icon {
  position: absolute;

  left: 50%;
  bottom: 37px;

  width: 58px;
  height: 58px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color:
    #dba53f;

  font-size: 24px;

  background:
    #064a39;

  border:
    2px solid
    #d5a345;

  box-shadow:
    0 0 0 4px
    #fffaf1;

  transform:
    translateX(-50%);

  transition:
    transform .45s
    cubic-bezier(.16,1,.3,1);
}


.other-category-card:hover
.other-category-icon {
  transform:
    translateX(-50%)
    translateY(-8px)
    rotateY(180deg);
}


.other-category-card h3 {
  min-height: 52px;

  margin: 0;

  padding:
    15px
    10px
    8px;

  display: flex;

  align-items: center;
  justify-content: center;

  color:
    #35483f;

  font-family:
    "Playfair Display",
    serif;

  font-size: 16px;

  font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .food-card-grid {
    grid-template-columns:
      repeat(3,1fr);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 750px) {

  .food-menu-container {
    width:
      calc(100% - 30px);
  }


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


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


  .food-card img {
    height: 170px;
  }


  .other-food-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 420px) {

  .food-card-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   CONTACT HERO SECTION
========================================================= */

.contact-hero-section {
  position: relative;

  width: 100%;

  min-height: 540px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 40%,
      rgba(215,167,77,.06),
      transparent 30%
    ),
    #fffaf1;
}


/* =========================================================
   INNER
========================================================= */

.contact-hero-inner {
  width:
    min(
      calc(100% - 70px),
      1500px
    );

  min-height: 540px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(420px,.82fr)
    minmax(650px,1.18fr);

  align-items: stretch;
}


/* =========================================================
   LEFT COPY
========================================================= */

.contact-hero-copy {
  position: relative;

  z-index: 20;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    35px
    55px
    35px
    5px;
}


/* =========================================================
   EYEBROW
========================================================= */

.contact-hero-eyebrow {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 12px;

  color: #5a665f;

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: .10em;
}


.contact-hero-eyebrow span {
  color: #d89a33;

  font-size: 16px;
}


/* =========================================================
   TITLE
========================================================= */

.contact-hero-title {
  margin: 0;

  color: #173f35;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      48px,
      4.1vw,
      68px
    );

  font-weight: 600;

  line-height: .98;

  letter-spacing: -.025em;
}


.contact-hero-title > span {
  display: block;
}


.contact-hero-title em {
  color: #ef622f;

  font-family:
    "Yellowtail",
    cursive;

  font-size: .88em;

  font-weight: 400;

  font-style: normal;

  margin-left: 7px;
}


.contact-hero-title small {
  color: #ef622f;

  font-family:
    "Jost",
    sans-serif;

  font-size: 22px;

  font-weight: 300;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.contact-hero-description {
  max-width: 450px;

  margin:
    24px
    0
    30px;

  color: #505a55;

  font-family:
    "Jost",
    sans-serif;

  font-size: 18px;

  line-height: 1.6;
}


/* =========================================================
   FEATURES ROW
========================================================= */

.contact-hero-features {
  max-width: 610px;

  display: grid;

  grid-template-columns:
    repeat(4,minmax(0,1fr));
}


/* =========================================================
   FEATURE
========================================================= */

.contact-feature {
  position: relative;

  text-align: center;

  padding:
    0
    15px;
}


.contact-feature:first-child {
  padding-left: 0;
}


.contact-feature:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 8px;

  width: 1px;
  height: 72px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(210,159,62,.40),
      transparent
    );
}


/* =========================================================
   FEATURE ICON
========================================================= */

.contact-feature-icon {
  width: 45px;
  height: 45px;

  margin:
    0
    auto
    8px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #d69325;

  font-size: 25px;

  border:
    1px solid
    rgba(204,148,48,.55);

  background:
    rgba(255,255,255,.30);
}


.contact-feature strong {
  display: block;

  color: #31423a;

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  font-weight: 600;
}


.contact-feature span {
  display: block;

  margin-top: 4px;

  color: #6a716d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  line-height: 1.35;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.contact-hero-visual {
  position: relative;

  min-height: 540px;
}


/* =========================================================
   MAIN CURVED IMAGE
========================================================= */

.contact-main-photo {
  position: absolute;

  z-index: 3;

  top: 0;
  right: -60px;

  width: 112%;
  height: 520px;

  overflow: hidden;

  clip-path: polygon(
    18% 0,
    42% 1%,
    63% 0,
    82% 2%,
    100% 0,

    100% 100%,

    18% 100%,
    13% 95%,
    9% 87%,
    7% 75%,
    7% 60%,
    9% 45%,
    11% 30%,
    14% 15%
  );

  border-radius:
    42% 0 0 34% /
    34% 0 0 40%;

  filter:
    drop-shadow(
      -18px 18px 28px
      rgba(48,37,14,.16)
    );
}


/* GOLD CURVE EDGE */

.contact-main-photo::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 4;

  pointer-events: none;

  border-left:
    3px solid
    rgba(214,161,60,.80);
}


/* IMAGE */

.contact-main-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center center;

  display: block;
}


/* =========================================================
   LEAVES
========================================================= */

.contact-leaf {
  position: absolute;

  z-index: 15;

  object-fit: contain;

  pointer-events: none;

  filter:
    drop-shadow(
      0 8px 12px
      rgba(24,54,31,.15)
    );
}


.contact-leaf-one {
  width: 70px;

  left: -25px;
  top: 45px;

  transform:
    rotate(-25deg);
}


.contact-leaf-two {
  width: 75px;

  left: -20px;
  bottom: 55px;

  transform:
    rotate(20deg);
}


/* =========================================================
   PETALS
========================================================= */

.contact-petal {
  position: absolute;

  z-index: 17;

  width: 12px;
  height: 18px;

  border-radius:
    80% 20% 75% 25%;

  background:
    linear-gradient(
      145deg,
      #ffa0a8,
      #ed6875
    );

  pointer-events: none;
}


.contact-petal-one {
  left: -80px;
  top: 125px;

  transform:
    rotate(35deg);
}


.contact-petal-two {
  left: -55px;
  top: 190px;

  transform:
    rotate(-25deg);
}


.contact-petal-three {
  left: -10px;
  bottom: 75px;

  transform:
    rotate(20deg);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .contact-hero-inner {
    grid-template-columns:
      minmax(380px,.9fr)
      minmax(520px,1.1fr);
  }

}


@media (max-width: 780px) {

  .contact-hero-section {
    min-height: auto;
  }


  .contact-hero-inner {
    width:
      calc(100% - 30px);

    display: flex;

    flex-direction: column;
  }


  .contact-hero-visual {
    order: 1;

    min-height: 410px;
  }


  .contact-main-photo {
    width: 125%;
    height: 400px;

    right: -55px;
  }


  .contact-hero-copy {
    order: 2;

    padding:
      35px
      5px
      50px;
  }


  .contact-hero-features {
    grid-template-columns:
      repeat(2,1fr);

    row-gap: 25px;
  }


  .contact-feature:nth-child(2)::after {
    display: none;
  }

}

/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
  position: relative;

  width: 100%;

  padding:
    30px
    0
    65px;

  background:
    #fffaf1;
}


.contact-form-shell {
  width:
    min(
      calc(100% - 70px),
      1500px
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    285px
    minmax(520px, 1fr)
    310px;

  gap: 28px;

  align-items: stretch;
}


/* =========================================================
   LEFT CARD
========================================================= */

.contact-info-card {
  position: relative;

  min-height: 750px;

  padding:
    28px
    24px
    24px;

  overflow: hidden;

  border-radius: 22px;

  color: #fff;

  background:
    linear-gradient(
      155deg,
      #064b3a,
      #003e31
    );

  border:
    1px solid
    rgba(211,161,62,.38);

  box-shadow:
    0 18px 35px
    rgba(31,40,29,.14);
}


.contact-info-card h3 {
  margin:
    0
    0
    9px;

  text-align: center;

  color: #fff9ec;

  font-family:
    "Playfair Display",
    serif;

  font-size: 28px;

  font-weight: 500;
}


/* divider */

.contact-small-divider {
  width: 145px;

  margin:
    0
    auto
    26px;

  display: flex;

  align-items: center;

  gap: 7px;

  color: #d9a23e;
}


.contact-small-divider span {
  flex: 1;

  height: 1px;

  background:
    #b98730;
}


.contact-small-divider i {
  font-size: 8px;

  font-style: normal;
}


/* info item */

.contact-info-item {
  display: grid;

  grid-template-columns:
    52px
    1fr;

  gap: 13px;

  align-items: start;

  margin-bottom: 22px;
}


.contact-info-icon {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #dca63b;

  font-size: 21px;

  border:
    1px solid
    rgba(218,165,57,.80);
}


.contact-info-item strong {
  display: block;

  margin-bottom: 5px;

  color: #e6ad41;

  font-family:
    "Jost",
    sans-serif;

  font-size: 18px;

  font-weight: 500;
}


.contact-info-item a,
.contact-info-item span {
  display: block;

  margin-bottom: 3px;

  color:
    rgba(255,255,255,.88);

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  line-height: 1.4;

  text-decoration: none;
}


/* whatsapp */

.contact-whatsapp-btn {
  position: absolute;

  z-index: 5;

  left: 22px;
  right: 22px;
  bottom: 28px;

  min-height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  border-radius: 6px;

  color: #e7ae41;

  border:
    1px solid
    #d69b30;

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}


.contact-whatsapp-btn:hover {
  background:
    #dca43e;

  color:
    #034536;

  transform:
    translateY(-3px);
}


/* decorative corner */

.contact-info-corner {
  position: absolute;

  left: -60px;
  bottom: -80px;

  width: 190px;
  height: 190px;

  border-radius: 50%;

  border:
    1px solid
    rgba(211,165,73,.16);
}


/* =========================================================
   CENTER CARD
========================================================= */

.contact-message-card {
  position: relative;

  min-height: 620px;

  padding:
    34px
    28px
    22px;

  border-radius:
    34px
    34px
    26px
    26px;

  background:
    #fffdf7;

  border:
    1px solid
    rgba(213,158,57,.55);

  box-shadow:
    0 18px 35px
    rgba(58,45,20,.10);
}


/* ornamental upper bump */

.contact-message-card::before {
  content: "";

  position: absolute;

  left: 50%;
  top: -28px;

  width: 180px;
  height: 60px;

  background:
    #fffdf7;

  border:
    1px solid
    rgba(213,158,57,.55);

  border-bottom: 0;

  border-radius:
    60px
    60px
    0
    0;

  transform:
    translateX(-50%);
}


.message-top-ornament {
  position: absolute;

  z-index: 5;

  top: -15px;
  left: 50%;

  transform:
    translateX(-50%);

  color: #d99f34;

  font-size: 22px;
}


.message-card-heading {
  position: relative;

  z-index: 5;

  display: flex;

  justify-content: center;
  align-items: center;

  gap: 10px;

  margin-bottom: 5px;
}


.message-card-heading h2 {
  margin: 0;

  color: #405148;

  font-family:
    "Playfair Display",
    serif;

  font-size: 25px;

  font-weight: 600;

  letter-spacing: .02em;
}


.message-card-heading span {
  color: #d69d37;
}


/* little heading line */

.message-heading-line {
  display: flex;

  align-items: center;

  gap: 7px;

  width: 120px;

  margin:
    0
    auto
    20px;

  color: #d89e34;
}


.message-heading-line span {
  flex: 1;

  height: 1px;

  background: #d9a13d;
}


.message-heading-line i {
  font-style: normal;

  font-size: 12px;
}


/* =========================================================
   FORM
========================================================= */

.contact-message-form {
  display: flex;

  flex-direction: column;

  gap: 11px;
}


.contact-field {
  min-height: 52px;

  display: grid;

  grid-template-columns:
    42px
    1fr;

  align-items: center;

  border-radius: 7px;

  border:
    1px solid
    rgba(199,154,72,.27);

  background:
    rgba(255,252,245,.90);

  overflow: hidden;
}


.contact-field-icon {
  display: grid;

  place-items: center;

  height: 100%;

  color: #b47c20;

  font-size: 20px;
}


.contact-field-input {
  min-width: 0;

  padding:
    7px
    10px
    7px
    0;
}


.contact-field-input label {
  display: block;

  margin-bottom: 2px;

  color: #545b57;

  font-family:
    "Jost",
    sans-serif;

  font-size: 18px;

  font-weight: 500;
}


.contact-field-input label em {
  color: #e26543;

  font-style: normal;
}


.contact-field-input input,
.contact-field-input select,
.contact-field-input textarea {
  width: 100%;

  border: 0;
  outline: 0;

  background:
    transparent;

  color: #46504b;

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;
}


.contact-field-input input::placeholder,
.contact-field-input textarea::placeholder {
  color: #8b918d;
}


/* two columns */

.contact-form-row {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 10px;
}


/* textarea */

.contact-field-message {
  display: block;

  min-height: 105px;

  padding: 10px;
}


.contact-field-message
.contact-field-input {
  padding: 0;
}


.contact-field-message textarea {
  height: 65px;

  resize: none;
}


/* submit */

.contact-submit-btn {
  width: 78%;

  min-height: 43px;

  margin:
    6px
    auto
    0;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 15px;

  border: 0;

  border-radius: 6px;

  background:
    linear-gradient(
      135deg,
      #064f3d,
      #013c30
    );

  color:
    #fff;

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.contact-submit-btn i {
  color: #dca53d;
}


.contact-submit-btn:hover {
  transform:
    translateY(-3px);

  box-shadow:
    0 12px 22px
    rgba(2,67,51,.20);
}


/* =========================================================
   RIGHT CARD
========================================================= */

.contact-quote-card {
  position: relative;

  min-height: 620px;

  padding:
    32px
    26px
    25px;

  overflow: hidden;

  border-radius: 20px;

  background:
    linear-gradient(
      160deg,
      #f3f1e7,
      #ecebe1
    );

  border:
    1px solid
    rgba(179,159,111,.15);

  box-shadow:
    0 15px 28px
    rgba(54,47,27,.08);
}


.contact-quote-card h3 {
  margin:
    0
    0
    9px;

  text-align: center;

  color: #42564c;

  font-family:
    "Playfair Display",
    serif;

  font-size: 30px;

  font-weight: 600;
}


.quote-line {
  width: 90px;
  height: 1px;

  margin:
    0
    auto
    28px;

  background:
    #d2a054;
}


.contact-quote-card > p {
  max-width: 210px;

  margin:
    0
    auto
    30px;

  text-align: center;

  color: #5e655f;

  font-family:
    "Jost",
    sans-serif;

  font-size: 18px;

  line-height: 1.55;
}


/* features */

.quote-feature-list {
  display: flex;

  flex-direction: column;

  gap: 17px;
}


.quote-feature {
  display: grid;

  grid-template-columns:
    37px
    1fr;

  align-items: center;

  gap: 10px;
}


.quote-feature-icon {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #d7a038;

  background: #064a39;

  font-size: 20px;
}


.quote-feature span {
  color: #505c55;

  font-family:
    "Jost",
    sans-serif;

  font-size: 18px;
}


/* button */

.quote-btn {
  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 27px;

  min-height: 43px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  border-radius: 7px;

  color: #324d42;

  border:
    1px solid
    rgba(214,160,55,.70);

  background:
    #f6e2b7;

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  font-weight: 600;

  text-decoration: none;

  transition:
    transform .3s ease,
    background .3s ease;
}


.quote-btn:hover {
  transform:
    translateY(-3px);

  background:
    #efd08e;
}


/* mandala corner */

.quote-decoration {
  position: absolute;

  right: -65px;
  top: -55px;

  width: 170px;
  height: 170px;

  border:
    1px solid
    rgba(208,161,65,.16);

  border-radius: 50%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .contact-form-shell {
    grid-template-columns:
      240px
      1fr;

    gap: 20px;
  }


  .contact-quote-card {
    grid-column:
      1 / -1;

    min-height: 420px;
  }


  .quote-feature-list {
    max-width: 560px;

    margin-inline: auto;

    display: grid;

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .contact-form-shell {
    width:
      calc(100% - 30px);

    display: flex;

    flex-direction: column;
  }


  .contact-info-card,
  .contact-message-card,
  .contact-quote-card {
    min-height: auto;
  }


  .contact-info-card {
    padding-bottom: 90px;
  }


  .contact-message-card {
    padding:
      42px
      18px
      22px;
  }


  .contact-form-row {
    grid-template-columns: 1fr;
  }


  .contact-submit-btn {
    width: 100%;
  }


  .contact-quote-card {
    padding-bottom: 90px;
  }


  .quote-feature-list {
    display: flex;
  }

}

/* =========================================================
   WHERE WE SERVE
========================================================= */

.serve-location-section {
  position: relative;

  width: 100%;

  padding:
    25px
    0
    55px;

  overflow: hidden;

  background:
    #fffaf1;
}


/* =========================================================
   MAIN SHELL
========================================================= */

.serve-location-shell {
  position: relative;

  width:
    min(
      calc(100% - 70px),
      1500px
    );

  min-height: 430px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    36%
    64%;

  border-radius: 20px;

  overflow: visible;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.serve-location-copy {
  position: relative;

  z-index: 5;

  min-height: 430px;

  padding:
    28px
    30px
    0
    22px;

  background:
    #fffaf1;

  overflow: hidden;
}


/* HEADING */

.serve-location-heading {
  display: flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 10px;
}


.serve-location-heading h2 {
  margin: 0;

  color: #28443a;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 30px;

  font-weight: 600;

  line-height: 1;
}


.serve-location-heading span {
  color: #d79d34;

  font-size: 18px;
}


/* DESCRIPTION */

.serve-location-description {
  max-width: 285px;

  margin:
    0
    0
    22px
    0;

  color: #4f5b55;

  font-family:
    "Jost",
    sans-serif;

  font-size: 18px;

  line-height: 1.55;
}


/* =========================================================
   LOCATION LIST
========================================================= */

.serve-location-list {
  position: relative;

  z-index: 5;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  gap:
    8px
    20px;

  max-width: 310px;
}


.serve-place {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #37483f;

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;

  font-weight: 500;
}


.serve-place i {
  color: #0b4a3b;

  font-size: 14px;
}


/* =========================================================
   TEMPLE IMAGE
========================================================= */

.serve-temple-image {
  position: absolute;

  z-index: 2;

  left: 0px;
  bottom: 0;

  width: 100%;      
  height: 190px;

  object-fit: cover;

  object-position:
    center bottom;

  pointer-events: none;

  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 35%,
      #000 100%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 35%,
      #000 100%
    );
}


/* =========================================================
   MAP AREA
========================================================= */

.serve-map-area {
  position: relative;

  min-height: 430px;

  overflow: hidden;

  border-radius:
    24px
    24px
    24px
    24px;

  background:
    #edf1e8;
}


/* MAP IMAGE */

.serve-map-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  opacity: .80;

  filter:
    saturate(.80)
    brightness(1.07);
}


/* SOFT WARM OVERLAY */

.serve-map-area::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(255,248,231,.22),
      rgba(255,255,255,.06)
    );
}


/* =========================================================
   LOCATION CARD
========================================================= */

.serve-location-card {
  position: absolute;

  z-index: 15;

  left: 55px;
  top: 50%;

  width: 265px;

  padding:
    25px
    27px
    24px;

  border-radius: 20px;

  color: #fff;

  background:
    linear-gradient(
      145deg,
      #064b3a,
      #003e31
    );

  border:
    1px solid
    rgba(213,163,67,.40);

  box-shadow:
    0 22px 40px
    rgba(19,49,36,.25);

  transform:
    translateY(-50%);
}


/* TITLE */

.serve-card-title {
  display: flex;

  align-items: center;

  gap: 13px;
}


.serve-pin-icon {
  width: 43px;
  height: 43px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #d9a038;

  font-size: 25px;

  border:
    1px solid
    rgba(218,164,59,.75);
}


.serve-card-title h3 {
  margin: 0;

  color: #fffaf0;

  font-family:
    "Playfair Display",
    serif;

  font-size: 25px;

  font-weight: 500;
}


/* LINE */

.serve-card-divider {
  width: 120px;
  height: 1px;

  margin:
    15px
    0
    17px
    56px;

  background:
    linear-gradient(
      90deg,
      #d5a23e,
      transparent
    );
}


/* ADDRESS */

.serve-card-address {
  margin-left: 0;

  color:
    rgba(255,255,255,.89);
}


.serve-card-address strong {
  display: block;

  margin-bottom: 8px;

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  font-weight: 500;
}


.serve-card-address p {
  margin: 0;

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  line-height: 1.55;
}


/* =========================================================
   DIRECTIONS BUTTON
========================================================= */

.serve-directions-btn {
  min-height: 45px;

  margin-top: 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  border-radius: 6px;

  border:
    1px solid
    rgba(216,165,65,.75);

  color: #fff;

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  font-weight: 600;

  text-decoration: none;

  transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease;
}


.serve-directions-btn i {
  color: #dca33b;
}


.serve-directions-btn:hover {
  transform:
    translateY(-3px);

  background:
    #d7a13e;

  color:
    #063f32;
}


/* =========================================================
   MAP MARKER
========================================================= */

.serve-map-marker {
  position: absolute;

  z-index: 10;

  left: 67%;
  top: 47%;

  display: flex;

  align-items: center;

  gap: 7px;

  padding:
    6px
    12px
    6px
    7px;

  border-radius: 6px;

  color: #404b46;

  background:
    rgba(255,255,255,.92);

  font-family:
    "Jost",
    sans-serif;

  font-size: 15px;

  box-shadow:
    0 4px 12px
    rgba(46,45,35,.13);
}


.serve-marker-pin {
  width: 26px;
  height: 26px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #d99e34;

  background:
    #064839;

  font-size: 14px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

  .serve-location-shell {
    grid-template-columns:
      42%
      58%;
  }


  .serve-location-card {
    left: 25px;

    width: 240px;
  }

}


@media (max-width: 760px) {

  .serve-location-shell {
    width:
      calc(100% - 30px);

    display: flex;

    flex-direction: column;
  }


  .serve-location-copy {
    min-height: 470px;

    padding:
      25px
      20px
      0;
  }


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


  .serve-map-area {
    min-height: 500px;
  }


  .serve-location-card {
    left: 50%;
    top: 50%;

    width:
      calc(100% - 50px);

    transform:
      translate(-50%,-50%);
  }


  .serve-map-marker {
    display: none;
  }

}




/* =========================================================
   OCCASIONS PAGE - FINAL MOBILE RESPONSIVE FIX
========================================================= */

@media (max-width: 780px) {

  /* HERO FULL MOBILE WIDTH */
  .occasions-hero-inner {
    width: calc(100% - 24px);
    min-height: auto;

    display: flex;
    flex-direction: column;
  }


  /* TEXT FIRST */
  .occasions-hero-copy {
    order: 1;

    width: 100%;

    padding:
      32px
      8px
      34px;
  }


  .occasions-eyebrow {
    font-size: 11px;
  }


  .occasions-title {
    font-size: clamp(42px, 12vw, 56px);

    line-height: .98;
  }


  .occasions-title > span {
    display: block;
  }


  .occasions-description {
    max-width: 100%;

    font-size: 14px;

    line-height: 1.65;

    margin-bottom: 28px;
  }


  /* =====================================================
     4 BENEFITS
  ====================================================== */

  .occasions-benefits {
    width: 100%;
    max-width: none;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      22px
      0;
  }


  .occasion-benefit {
    padding:
      0
      8px;
  }


  .occasion-benefit-icon {
    width: 42px;
    height: 42px;

    margin-inline: auto;

    font-size: 27px;
  }


  .occasion-benefit strong {
    font-size: 12px;
  }


  .occasion-benefit span {
    font-size: 10px;
  }


  /* divider correct */
  .occasion-benefit::after {
    height: 72px;
  }


  .occasion-benefit:nth-child(2)::after,
  .occasion-benefit:nth-child(4)::after {
    display: none;
  }


  /* =====================================================
     IMAGE AREA
  ====================================================== */

  .occasions-hero-visual {
    order: 2;

    width: 100%;

    min-height: 530px;

    position: relative;
  }


  .occasions-main-photo {
    top: 0;
    left: 0;
    right: auto;

    width: 100%;
    height: 360px;

    border-radius:
      35px
      35px
      20px
      20px;

    clip-path: polygon(
      8% 0,
      32% 2%,
      52% 0,
      74% 2%,
      100% 0,
      100% 100%,
      0 100%,
      0 18%
    );
  }


  .occasions-main-photo img {
    object-position: center center;
  }


  /* flower */
  .occasions-flower {
    left: -5px;
    top: 245px;

    width: 90px;
  }


  /* =====================================================
     GREEN STATS BAR - MAIN FIX
  ====================================================== */

  .occasion-stats-bar {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 10px;

    width: 100%;

    min-height: auto;

    padding:
      20px
      12px;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      22px
      0;

    border-radius: 20px;
  }


  .occasion-stat {
    width: 100%;
    min-width: 0;

    display: grid;

    grid-template-columns:
      40px
      minmax(0, 1fr);

    column-gap: 7px;

    padding:
      0
      10px;
  }


  .occasion-stat:first-child {
    padding-left: 10px;
  }


  /* icon */
  .occasion-stat-icon {
    width: 38px;
    height: 38px;

    font-size: 24px;
  }


  /* 30+, 100+, A-Z, Thousands */
  .occasion-stat strong {
    min-width: 0;

    font-size: 21px;

    line-height: 1;

    white-space: normal;

    overflow-wrap: anywhere;
  }


  /* Thousands is long */
  .occasion-stat:last-child strong {
    font-size: 18px;
  }


  .occasion-stat span {
    margin-top: 4px;

    font-size: 8px;

    line-height: 1.25;
  }


  /* vertical dividers */
  .occasion-stat::after {
    display: none !important;
  }


  .occasion-stat:nth-child(odd)::after {
    content: "";

    display: block !important;

    position: absolute;

    right: 0;
    top: 5%;

    width: 1px;
    height: 90%;

    background:
      linear-gradient(
        to bottom,
        transparent,
        rgba(214,165,66,.35),
        transparent
      );
  }

}

@media (max-width: 440px) {

  .occasions-hero-inner {
    width: calc(100% - 20px);
  }


  .occasions-title {
    font-size: 42px;
  }


  .occasions-description {
    font-size: 13px;
  }


  .occasions-hero-visual {
    min-height: 505px;
  }


  .occasions-main-photo {
    height: 325px;
  }


  .occasions-flower {
    top: 220px;

    width: 75px;
  }


  .occasion-stats-bar {
    padding:
      18px
      8px;

    gap:
      18px
      0;

    bottom: 8px;
  }


  .occasion-stat {
    grid-template-columns:
      34px
      minmax(0,1fr);

    padding:
      0
      7px;

    column-gap: 6px;
  }


  .occasion-stat:first-child {
    padding-left: 7px;
  }


  .occasion-stat-icon {
    width: 32px;
    height: 32px;

    font-size: 21px;
  }


  .occasion-stat strong {
    font-size: 19px;
  }


  .occasion-stat:last-child strong {
    font-size: 15px;

    line-height: 1.05;
  }


  .occasion-stat span {
    font-size: 7px;
  }

}


/* =========================================================
   ABOUT PAGE - FINAL MOBILE RESPONSIVE
   Paste at VERY BOTTOM of styles.css
========================================================= */

@media (max-width: 780px) {

  /* =====================================================
     01. ABOUT STORY
  ====================================================== */

  .about-story-premium {
    padding: 45px 0 40px;
    overflow: hidden;
  }

  .about-story-inner {
    width: calc(100% - 28px);
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .about-story-copy {
    width: 100%;
    text-align: center;
  }

  .about-story-eyebrow,
  .about-story-divider {
    justify-content: center;
  }

  .about-story-eyebrow {
    font-size: 10px;
    letter-spacing: .12em;
  }

  .about-story-title {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.02;
  }

  .about-story-title span {
    display: block;
  }

  .about-story-description {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;

    font-size: 14px;
    line-height: 1.65;
  }


  /* ABOUT STATS - 2 x 2 */

  .about-story-stats {
    width: 100%;
    max-width: 520px;

    margin:
      28px
      auto
      0;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      18px
      8px;
  }

  .story-stat {
    min-width: 0;

    grid-template-columns:
      42px
      minmax(0, 1fr);

    gap: 8px;

    padding:
      8px
      7px;
  }

  .story-stat::after {
    display: none;
  }

  .story-stat-icon {
    width: 40px;
    height: 40px;

    font-size: 20px;
  }

  .story-stat-text {
    min-width: 0;

    text-align: left;
  }

  .story-stat-text strong {
    font-size: 20px;

    white-space: normal;
    overflow-wrap: anywhere;
  }

  .story-stat-text small {
    font-size: 9px;

    line-height: 1.3;
  }

  /* Thousands long word */
  .story-stat:last-child
  .story-stat-text strong {
    font-size: 16px;
  }


  /* ABOUT IMAGE COLLAGE */

  .about-story-visual {
    width: 100%;

    min-height: 420px;

    margin-top: 0;
  }

  .story-main-photo {
    top: 0;
    left: 0;
    right: auto;

    width: 100%;
    height: 280px;
  }

  .story-main-photo img {
    object-position: center center;
  }

  .story-photo-card {
    padding: 3px;

    border-radius: 12px;
  }

  .story-photo-card-one {
    left: 0;
    bottom: 5px;

    width: 43%;
    height: 135px;
  }

  .story-photo-card-two {
    left: 34%;
    bottom: 0;

    width: 40%;
    height: 132px;
  }

  .story-photo-card-three {
    right: 0;
    bottom: 7px;

    width: 28%;
    height: 122px;
  }

  .story-leaf-left {
    width: 60px;

    left: -18px;
    top: 210px;
  }

  .story-leaf-right {
    width: 85px;

    right: -28px;
    bottom: 25px;
  }


  /* =====================================================
     02. OUR STORY TIMELINE
  ====================================================== */

  .our-story-section {
    padding: 35px 0;
  }

  .our-story-container {
    width: calc(100% - 28px);

    display: block;

    border-radius: 18px;

    overflow: hidden;
  }

  .our-story-visual {
    width: 100%;
    height: 300px;

    border-radius:
      18px
      18px
      0
      0;
  }

  .our-story-main-image {
    width: 100%;
    height: 100%;

    border-radius:
      18px
      18px
      0
      0;
  }

  .our-story-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  .our-story-badge {
    transform: scale(.85);
    transform-origin: left center;
  }

  .our-story-content {
    width: 100%;

    padding:
      28px
      18px
      32px;
  }

  .story-heading-area {
    position: relative;
    z-index: 5;
  }

  .story-heading-area h2 {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.05;
  }

  .story-heading-area p {
    font-size: 13px;
    line-height: 1.65;
  }

  .story-outline-leaf {
    width: 180px;
    height: 150px;

    top: -10px;
    right: -45px;

    opacity: .13;
  }


  /* TIMELINE VERTICAL */

  .story-timeline {
    position: relative;

    display: grid;
    grid-template-columns: 1fr;

    gap: 25px;

    margin-top: 32px;

    padding-left: 0;
  }

  .story-timeline-line {
    left: 34px;
    right: auto;

    top: 30px;
    bottom: 30px;

    width: 1px;
    height: auto;
  }

  .timeline-progress {
    width: 100%;
    height: 0;
  }

  .our-story-section.story-active
  .timeline-progress {
    width: 100%;
    height: 100%;
  }

  .story-timeline-item {
    width: 100%;

    display: grid;

    grid-template-columns:
      68px
      minmax(0, 1fr);

    align-items: center;

    column-gap: 16px;

    min-height: 90px;

    text-align: left;
  }

  .timeline-image-wrap {
    width: 62px;
    height: 62px;

    margin: 0;

    grid-column: 1;
  }

  .timeline-image {
    width: 51px;
    height: 51px;
  }

  .timeline-content {
    grid-column: 2;

    width: 100%;
    max-width: none;

    margin: 0;
  }

  .timeline-content strong {
    font-size: 13px;
  }

  .timeline-content h3 {
    min-height: 0;

    margin-bottom: 5px;

    font-size: 14px;
  }

  .timeline-content p {
    max-width: 100%;

    font-size: 11px;
    line-height: 1.5;
  }

  .timeline-dot {
    display: none !important;
  }


  /* =====================================================
     03. VALUES
  ====================================================== */

  .values-section {
    margin:
      40px
      0;

    padding:
      55px
      0;
  }

  .values-container {
    width: calc(100% - 30px);

    display: block;
  }

  .values-intro {
    width: 100%;

    text-align: center;
  }

  .values-eyebrow {
    justify-content: center;
  }

  .values-title {
    font-size: 35px;

    line-height: 1.06;
  }

  .values-description {
    max-width: 360px;

    margin-left: auto;
    margin-right: auto;

    font-size: 13px;
  }

  .values-description br {
    display: none;
  }

  .values-list {
    width: 100%;

    margin-top: 35px;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      24px
      0;
  }

  .value-item {
    min-width: 0;
    min-height: 165px;

    padding:
      10px
      12px;
  }

  .value-icon {
    font-size: 31px;
  }

  .value-item h3 {
    font-size: 14px;
  }

  .value-item p {
    font-size: 10px;

    line-height: 1.5;
  }

  .value-item:nth-child(2)::after,
  .value-item:nth-child(4)::after {
    display: none;
  }


  /* =====================================================
     04. STRENGTH / TEAM
  ====================================================== */

  .strength-section {
    padding: 45px 0;
  }

  .strength-shell {
    width: calc(100% - 28px);

    display: flex;
    flex-direction: column;

    gap: 30px;
  }

  .strength-content {
    width: 100%;
    max-width: none;

    padding: 0;

    text-align: center;
  }

  .strength-eyebrow {
    justify-content: center;
  }

  .strength-title {
    font-size: clamp(37px, 10vw, 48px);

    line-height: 1;
  }

  .strength-title span,
  .strength-title em {
    display: block;
  }

  .strength-description {
    max-width: 480px;

    margin-left: auto;
    margin-right: auto;

    font-size: 14px;
    line-height: 1.65;
  }

  .strength-button {
    margin-left: auto;
    margin-right: auto;
  }


  /* GALLERY */

  .strength-gallery {
    width: 100%;
    height: 440px;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-template-rows:
      1.18fr
      .82fr;

    gap: 7px;
  }

  .strength-photo-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .strength-photo-team {
    grid-column: 1;
    grid-row: 2;
  }

  .strength-photo-kitchen {
    grid-column: 2;
    grid-row: 2;
  }

  .strength-photo {
    border-radius: 12px;
  }

  .strength-badge {
    left: 50%;
    top: 57%;

    width: 95px;
    height: 95px;
  }

  .strength-badge strong {
    font-size: 25px;
  }

  .strength-badge span,
  .strength-badge b {
    font-size: 6px;
  }


  /* =====================================================
     05. COMMITMENT
  ====================================================== */

  .commitment-section {
    padding: 38px 0 45px;
  }

  .commitment-card {
    width: calc(100% - 28px);

    display: flex;
    flex-direction: column;

    min-height: auto;

    overflow: hidden;

    border-radius: 18px;
  }

  .commitment-food {
    width: 100%;
    height: 240px;

    min-height: 0;

    border-radius:
      18px
      18px
      0
      0;
  }

  .commitment-food img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
  }

  .commitment-food-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(3,61,48,.85),
        transparent 58%
      );
  }

  .commitment-center {
    width: 100%;

    padding:
      27px
      20px
      20px;

    text-align: center;
  }

  .commitment-eyebrow {
    text-align: center;
  }

  .commitment-title {
    font-size: clamp(32px, 9vw, 39px);

    line-height: 1.05;
  }

  .commitment-title span {
    display: block;
  }

  .commitment-divider {
    width: calc(100% - 40px);
    height: 1px;

    margin: 0 auto;
  }

  .commitment-right {
    width: 100%;

    padding:
      20px
      22px
      38px;
  }

  .commitment-description {
    font-size: 16px;
    line-height: 1.7;
  }

  .commitment-list {
    margin-top: 20px;
  }

  .commitment-list li {
    font-size: 12px;
  }

}


/* =========================================================
   EXTRA SMALL MOBILE - 430px AND BELOW
========================================================= */

@media (max-width: 430px) {

  .about-story-inner,
  .our-story-container,
  .strength-shell,
  .commitment-card {
    width: calc(100% - 20px);
  }


  /* ABOUT */

  .about-story-title {
    font-size: 36px;
  }

  .about-story-stats {
    gap:
      16px
      4px;
  }

  .story-stat {
    grid-template-columns:
      35px
      minmax(0, 1fr);

    padding:
      6px
      4px;
  }

  .story-stat-icon {
    width: 34px;
    height: 34px;

    font-size: 17px;
  }

  .story-stat-text strong {
    font-size: 18px;
  }

  .story-stat:last-child
  .story-stat-text strong {
    font-size: 14px;
  }

  .story-stat-text small {
    font-size: 8px;
  }

  .about-story-visual {
    min-height: 365px;
  }

  .story-main-photo {
    height: 245px;
  }

  .story-photo-card-one {
    height: 115px;
  }

  .story-photo-card-two {
    height: 112px;
  }

  .story-photo-card-three {
    height: 105px;
  }


  /* OUR STORY */

  .our-story-visual {
    height: 260px;
  }

  .our-story-content {
    padding:
      25px
      16px
      30px;
  }

  .story-heading-area h2 {
    font-size: 31px;
  }

  .story-timeline-item {
    grid-template-columns:
      58px
      minmax(0, 1fr);

    column-gap: 12px;
  }

  .timeline-image-wrap {
    width: 54px;
    height: 54px;
  }

  .timeline-image {
    width: 44px;
    height: 44px;
  }

  .story-timeline-line {
    left: 27px;
  }


  /* VALUES */

  .values-container {
    width: calc(100% - 26px);
  }

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

  .value-item {
    min-height: auto;

    padding:
      18px
      12px;
  }

  .value-item::after {
    display: none !important;
  }


  /* TEAM */

  .strength-title {
    font-size: 36px;
  }

  .strength-gallery {
    height: 370px;
  }

  .strength-badge {
    width: 82px;
    height: 82px;
  }

  .strength-badge strong {
    font-size: 21px;
  }


  /* COMMITMENT */

  .commitment-food {
    height: 210px;
  }

  .commitment-center {
    padding:
      24px
      17px
      18px;
  }

  .commitment-title {
    font-size: 32px;
  }

  .commitment-right {
    padding:
      18px
      17px
      32px;
  }

}

/* =========================================================
   SERVICE PAGE - FINAL MOBILE RESPONSIVE OVERRIDE
   PASTE AT VERY BOTTOM OF styles.css
========================================================= */

@media (max-width: 780px) {

  /* =====================================================
     01. SERVICES HERO
  ====================================================== */

  .services-hero {
    min-height: auto;
    overflow: hidden;
  }

  .services-hero-inner {
    width: calc(100% - 24px);

    min-height: auto;

    display: flex;
    flex-direction: column;

    margin-inline: auto;
  }


  /* MOBILE-LA CONTENT FIRST */

  .services-hero-copy {
    order: 1;

    width: 100%;

    padding:
      38px
      8px
      35px;

    text-align: left;
  }

  .services-eyebrow {
    font-size: 11px;

    letter-spacing: .12em;
  }

  .services-title {
    max-width: 100%;

    font-size: clamp(41px, 11vw, 55px);

    line-height: .98;
  }

  .services-title span,
  .services-title em {
    display: block;
  }

  .services-title em {
    margin-top: 8px;
  }

  .services-intro {
    max-width: 100%;

    margin:
      24px
      0
      28px;

    font-size: 14px;
    line-height: 1.65;
  }


  /* =====================================================
     HERO STATS - 2 X 2
  ====================================================== */

  .services-stats {
    width: 100%;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      18px
      0;
  }

  .service-stat {
    min-width: 0;

    display: grid;

    grid-template-columns:
      40px
      minmax(0, 1fr);

    gap: 8px;

    padding:
      4px
      10px;
  }

  .service-stat:first-child {
    padding-left: 10px;
  }

  .service-stat::after {
    display: none !important;
  }

  .service-stat:nth-child(odd) {
    border-right:
      1px solid
      rgba(205, 151, 52, .22);
  }

  .service-stat-icon {
    width: 38px;
    height: 38px;

    font-size: 22px;
  }

  .service-stat-copy {
    min-width: 0;
  }

  .service-stat-copy strong {
    font-size: 20px;

    white-space: normal;
    overflow-wrap: anywhere;
  }

  .service-stat:last-child
  .service-stat-copy strong {
    font-size: 15px;
  }

  .service-stat-copy span {
    font-size: 14px;

    line-height: 1.25;
  }


  /* =====================================================
     HERO IMAGE
  ====================================================== */

  .services-hero-visual {
    order: 2;

    position: relative;

    width: 100%;

    min-height: 440px;

    margin-top: 0;
  }

  .services-main-image {
    position: absolute;

    top: 0;
    left: 0;
    right: auto;

    width: 100%;
    height: 360px;

    overflow: hidden;

    border-radius:
      30px
      30px
      22px
      22px;

    clip-path: polygon(
      9% 0,
      100% 0,
      100% 100%,
      5% 100%,
      0 88%,
      2% 65%,
      0 40%
    );
  }

  .services-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
  }


  /* FLOATING LEAVES */

  .services-leaf-one {
    width: 60px;

    left: -12px;
    top: 95px;
  }

  .services-leaf-two {
    width: 55px;

    left: 5px;
    top: 225px;
  }


  /* PHONE CTA */

  .services-call-card {
    right: 12px;
    bottom: 18px;

    width: calc(100% - 24px);
    min-width: 0;

    min-height: 64px;

    padding:
      9px
      14px
      9px
      9px;

    border-radius: 15px;
  }

  .services-call-icon {
    width: 42px;
    height: 42px;

    flex:
      0
      0
      42px;

    font-size: 18px;
  }

  .services-call-copy small {
    font-size: 9px;
  }

  .services-call-copy strong {
    font-size: 18px;
  }


  /* =====================================================
     02. WHY CHOOSE MATHI
  ====================================================== */

  .why-mathi-strip {
    padding:
      45px
      0;

    overflow: hidden;
  }

  .why-mathi-inner {
    width: calc(100% - 26px);

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      28px
      0;

    margin-inline: auto;
  }


  /* HEADING FULL WIDTH */

  .why-mathi-heading {
    grid-column: 1 / -1;

    text-align: center;

    padding:
      0
      0
      12px;
  }

  .why-mathi-eyebrow {
    font-size: 10px;

    letter-spacing: .08em;
  }

  .why-mathi-heading h2 {
    font-size: 37px;

    line-height: 1;
  }

  .why-mathi-heading h2 span {
    display: block;
  }


  /* ITEMS */

  .why-mathi-item {
    min-width: 0;

    padding:
      5px
      12px
      16px;

    text-align: center;

    transform: none !important;
  }

  .why-mathi-item::after {
    display: none !important;
  }

  .why-mathi-item:nth-of-type(2),
  .why-mathi-item:nth-of-type(4) {
    border-right:
      1px solid
      rgba(216, 165, 63, .22);
  }

  .why-mathi-icon {
    width: 58px;
    height: 58px;

    margin:
      0
      auto
      12px;

    font-size: 26px;
  }

  .why-mathi-item h3 {
    font-size: 14px;
  }

  .why-mathi-item p {
    font-size: 10px;

    line-height: 1.5;
  }

  .why-mathi-item p span {
    display: block;
  }

  .why-mathi-leaf {
    width: 90px;

    right: -28px;
    top: -12px;
  }


  /* =====================================================
     03. 10 SERVICE CARDS
  ====================================================== */

  .service-grid-section {
    padding:
      45px
      0
      55px;
  }

  .service-grid-wrap {
    width: calc(100% - 26px);
  }

  .service-grid-head {
    margin-bottom: 28px;
  }

  .service-grid-eyebrow {
    font-size: 10px;
  }

  .service-grid-head h2 {
    font-size: clamp(31px, 8vw, 40px);

    line-height: 1.05;
  }

  .service-grid-head p {
    max-width: 330px;

    margin:
      10px
      auto
      0;

    font-size: 13px;

    line-height: 1.5;
  }


  /* 780 TO 521 = 2 CARDS */

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

    gap:
      18px
      12px;
  }

  .service-grid-card {
    min-width: 0;

    padding-bottom: 20px;

    border-radius: 14px;
  }

  .service-grid-image {
    height: 190px;
  }

  .service-grid-icon {
    width: 58px;
    height: 58px;

    margin:
      -29px
      auto
      11px;

    font-size: 25px;
  }

  .service-grid-content {
    padding:
      0
      14px;
  }

  .service-grid-content h3 {
    min-height: auto;

    margin-bottom: 9px;

    font-size: 16px;

    line-height: 1.15;
  }

  .service-grid-content > p {
    min-height: auto;

    margin-bottom: 12px;

    font-size: 10px;

    line-height: 1.5;
  }

  .service-grid-content ul {
    gap: 5px;
  }

  .service-grid-content li {
    font-size: 9px;

    line-height: 1.35;
  }


  /* REMOVE DESKTOP STRONG 3D ON TOUCH */

  .service-grid-card,
  .service-grid-card:hover {
    transform: none !important;
  }


  /* =====================================================
     04. OUR PROCESS
  ====================================================== */

  .process-section {
    padding:
      42px
      0
      48px;
  }

  .process-wrap {
    width: calc(100% - 26px);
  }

  .process-head {
    margin-bottom: 32px;
  }

  .process-eyebrow {
    font-size: 10px;
  }

  .process-head h2 {
    font-size: clamp(31px, 8vw, 39px);

    line-height: 1.05;
  }

  .process-track {
    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap:
      32px
      14px;

    padding-top: 0;
  }

  .process-line {
    display: none;
  }

  .process-step {
    min-width: 0;

    padding:
      0
      8px;

    transform: none;
  }

  .process-icon {
    width: 68px;
    height: 68px;

    margin-bottom: 8px;

    font-size: 27px;

    transform: none;
  }

  .process-number {
    font-size: 10px;
  }

  .process-step h3 {
    margin-bottom: 6px;

    font-size: 17px;
  }

  .process-step p {
    font-size: 11px;

    line-height: 1.5;
  }

  .process-mandala {
    width: 110px;
    height: 110px;
  }


  /* =====================================================
     05. FINAL CELEBRATION CTA
  ====================================================== */

  .celebration-cta {
    padding:
      40px
      0
      50px;
  }

  .celebration-cta-card {
    width: calc(100% - 26px);

    display: flex;
    flex-direction: column;

    margin-inline: auto;

    overflow: hidden;

    border-radius: 22px;

    transform: none !important;
  }


  /* IMAGE FIRST */

  .celebration-visual {
    order: 1;

    width: 100%;
    height: 280px;

    position: relative;
  }

  .celebration-image-frame {
    left: 50%;
    top: 40px;

    width: 220px;
    height: 280px;

    transform:
      translateX(-50%);
  }

  .celebration-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
  }


  /* CONTENT */

  .celebration-content {
    order: 2;

    width: 100%;

    padding:
      28px
      20px
      25px;

    text-align: center;

    transform: none !important;
  }

  .celebration-eyebrow {
    font-size: 10px;
  }

  .celebration-content h2 {
    font-size: clamp(31px, 9vw, 40px);

    line-height: 1.04;
  }

  .celebration-content h2 span {
    display: block;
  }

  .celebration-content p {
    max-width: 360px;

    margin-left: auto;
    margin-right: auto;

    font-size: 13px;
    line-height: 1.55;
  }


  /* BUTTONS */

  .celebration-actions {
    width: 100%;

    display: flex;

    justify-content: center;

    gap: 10px;
  }

  .celebration-btn {
    min-width: 0;

    flex: 1;

    padding:
      0
      12px;

    font-size: 10px;
  }


  /* DIVIDER */

  .celebration-divider {
    order: 3;

    width: calc(100% - 42px);
    height: 1px;

    margin:
      0
      auto;
  }


  /* FEATURES */

  .celebration-features {
    order: 4;

    width: 100%;

    padding:
      18px
      22px
      28px;
  }

  .celebration-feature {
    min-height: 65px;
  }

  .celebration-feature-icon {
    width: 43px;
    height: 43px;

    flex:
      0
      0
      43px;

    font-size: 19px;

    transform: none;
  }

  .celebration-feature span {
    font-size: 12px;
  }

}


/* =========================================================
   SMALL MOBILE
   520px AND BELOW
========================================================= */

@media (max-width: 520px) {

  /* HERO */

  .services-hero-inner {
    width: calc(100% - 20px);
  }

  .services-hero-copy {
    padding:
      32px
      5px
      30px;
  }

  .services-title {
    font-size: 39px;
  }

  .services-intro {
    font-size: 13px;
  }

  .service-stat {
    grid-template-columns:
      34px
      minmax(0,1fr);

    padding:
      4px
      5px;
  }

  .service-stat:first-child {
    padding-left: 5px;
  }

  .service-stat-icon {
    width: 32px;
    height: 32px;

    font-size: 19px;
  }

  .service-stat-copy strong {
    font-size: 18px;
  }

  .service-stat:last-child
  .service-stat-copy strong {
    font-size: 13px;
  }

  .service-stat-copy span {
    font-size: 7px;
  }

  .services-hero-visual {
    min-height: 390px;
  }

  .services-main-image {
    height: 310px;
  }

  .services-call-card {
    bottom: 12px;
  }


  /* WHY US */

  .why-mathi-inner {
    width: calc(100% - 20px);
  }

  .why-mathi-heading h2 {
    font-size: 34px;
  }


  /* =====================================================
     SERVICE CARDS - ONE COLUMN
  ====================================================== */

  .service-grid-wrap {
    width: calc(100% - 24px);
  }

  .service-grid {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .service-grid-card {
    width: 100%;
  }

  .service-grid-image {
    height: 225px;
  }

  .service-grid-icon {
    width: 62px;
    height: 62px;

    margin-top: -31px;

    font-size: 27px;
  }

  .service-grid-content {
    padding:
      0
      20px;
  }

  .service-grid-content h3 {
    font-size: 20px;
  }

  .service-grid-content > p {
    font-size: 12px;
  }

  .service-grid-content li {
    font-size: 11px;
  }


  /* PROCESS */

  .process-wrap {
    width: calc(100% - 20px);
  }

  .process-head h2 {
    font-size: 32px;
  }

  .process-track {
    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap:
      30px
      8px;
  }

  .process-icon {
    width: 62px;
    height: 62px;

    font-size: 24px;
  }

  .process-step {
    padding:
      0
      4px;
  }

  .process-step h3 {
    font-size: 16px;
  }

  .process-step p {
    font-size: 10px;
  }


  /* FINAL CTA */

  .celebration-cta-card {
    width: calc(100% - 20px);
  }

  .celebration-visual {
    height: 245px;
  }

  .celebration-image-frame {
    width: 195px;
    height: 245px;
  }

  .celebration-content {
    padding:
      25px
      16px
      22px;
  }

  .celebration-content h2 {
    font-size: 32px;
  }

  .celebration-actions {
    flex-direction: column;
  }

  .celebration-btn {
    width: 100%;

    min-height: 48px;

    flex: none;

    font-size: 11px;
  }

  .celebration-features {
    padding:
      15px
      17px
      26px;
  }

}


/* =========================================================
   EXTRA SMALL MOBILE
   390px AND BELOW
========================================================= */

@media (max-width: 390px) {

  .services-title {
    font-size: 36px;
  }

  .services-call-copy strong {
    font-size: 16px;
  }

  .why-mathi-heading h2 {
    font-size: 31px;
  }

  .why-mathi-item {
    padding:
      4px
      7px
      14px;
  }

  .why-mathi-icon {
    width: 52px;
    height: 52px;

    font-size: 23px;
  }

  .why-mathi-item h3 {
    font-size: 12px;
  }

  .why-mathi-item p {
    font-size: 9px;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-step {
    max-width: 280px;

    margin-inline: auto;
  }

}


/* =========================================================
   MENU PAGE - FINAL MOBILE RESPONSIVE
   PASTE AT VERY BOTTOM OF styles.css
========================================================= */

@media (max-width: 780px) {

  /* =====================================================
     01. MENU HERO
  ====================================================== */

  .menu-hero {
    min-height: auto;
    overflow: hidden;
  }

  .menu-hero-inner {
    width: calc(100% - 24px);

    min-height: auto;

    display: flex;
    flex-direction: column;

    margin-inline: auto;
  }


  /* CONTENT FIRST ON MOBILE */

  .menu-hero-copy {
    order: 1 !important;

    width: 100%;

    padding:
      34px
      7px
      32px !important;

    justify-content: flex-start !important;
  }

  .menu-eyebrow {
    margin-bottom: 10px;

    font-size: 10px;
  }

  .menu-hero-title {
    max-width: 100%;

    font-size:
      clamp(
        40px,
        11vw,
        54px
      );

    line-height: .98;
  }

  .menu-hero-title span,
  .menu-hero-title em {
    display: block;
  }

  .menu-hero-title em {
    margin-top: 8px;
  }

  .menu-hero-description {
    max-width: 100%;

    margin:
      23px
      0
      27px;

    font-size: 14px;

    line-height: 1.65;
  }


  /* =====================================================
     MINI FEATURES
  ====================================================== */

  .menu-mini-features {
    width: 100%;
    max-width: none;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap:
      18px
      0;
  }

  .menu-mini-item {
    min-width: 0;

    display: grid;

    grid-template-columns:
      39px
      minmax(0,1fr);

    gap: 8px;

    padding:
      5px
      10px;
  }

  .menu-mini-item:first-child {
    padding-left: 6px;
  }

  .menu-mini-item::after {
    display: none !important;
  }

  .menu-mini-item:nth-child(odd) {
    border-right:
      1px solid
      rgba(205,151,52,.22);
  }

  .menu-mini-icon {
    width: 37px;
    height: 37px;

    font-size: 22px;
  }

  .menu-mini-text {
    min-width: 0;
  }

  .menu-mini-text strong {
    font-size: 20px;
  }

  .menu-mini-text span {
    font-size: 9px;

    line-height: 1.25;
  }


  /* =====================================================
     HERO IMAGE
  ====================================================== */

  .menu-hero-visual {
    order: 2 !important;

    position: relative;

    width: 100%;

    min-height: 400px;

    margin-top: 0;
  }

  .menu-main-image {
    position: absolute;

    top: 0;
    left: 0;
    right: auto !important;

    width: 100% !important;
    height: 340px !important;

    overflow: hidden;

    border-radius:
      35px
      35px
      24px
      24px;

    clip-path: polygon(
      8% 0,
      100% 0,
      100% 100%,
      3% 100%,
      0 90%,
      1% 55%
    );
  }

  .menu-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
  }


  /* 30+ BADGE */

  .menu-years-badge {
    left: 12px !important;
    top: auto !important;
    bottom: 24px;

    width: 88px;
    height: 88px;
  }

  .menu-years-badge strong {
    font-size: 24px;
  }

  .menu-years-badge span,
  .menu-years-badge b {
    font-size: 7px;
  }


  /* LEAVES */

  .menu-leaf-one {
    width: 55px;

    left: -10px;
    top: 70px;
  }

  .menu-leaf-two {
    width: 62px;

    left: 5px;
    top: 215px;
  }

  .menu-gold-corner {
    font-size: 48px;
  }


  /* =====================================================
     02. CHOOSE YOUR DELIGHT
  ====================================================== */

  .menu-delight-section {
    padding:
      45px
      0
      52px;
  }

  .menu-delight-wrap {
    width: calc(100% - 24px);
  }

  .menu-delight-head {
    margin-bottom: 26px;
  }

  .menu-delight-eyebrow {
    gap: 8px;

    font-size: 9px;
  }

  .delight-line {
    width: 50px;
  }

  .menu-delight-head h2 {
    font-size:
      clamp(
        31px,
        9vw,
        41px
      );

    line-height: 1.05;
  }


  /* 2 COLUMNS */

  .menu-delight-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap: 15px 11px;
  }

  .menu-delight-card {
    min-width: 0;

    min-height: 285px;

    padding-bottom: 20px;

    transform-style: flat;
  }

  .menu-delight-image {
    height: 165px;
  }

  .menu-delight-icon {
    width: 53px;
    height: 53px;

    margin:
      -27px
      auto
      13px;

    font-size: 22px;

    transform: none;
  }

  .menu-delight-card h3 {
    padding:
      0
      8px;

    font-size: 16px;

    line-height: 1.12;

    transform: none;
  }


  /* REMOVE DESKTOP 3D BLUR ON TOUCH */

  .menu-delight-card:hover {
    transform: none !important;
  }

  .menu-delight-card:hover
  .menu-delight-icon {
    transform: none !important;
  }


  /* =====================================================
     03. SOUTH INDIAN MENU BOARD
  ====================================================== */

  .south-menu-board {
    padding:
      42px
      0
      50px;
  }

  .south-menu-inner {
    width: calc(100% - 24px);

    min-height: auto;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 20px;
  }


  /* INTRO */

  .south-menu-intro {
    order: 1;

    width: 100%;

    min-height: 520px !important;

    padding:
      32px
      20px
      0;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(215,166,70,.25);
  }

  .south-menu-eyebrow {
    font-size: 10px;
  }

  .south-menu-intro h2 {
    font-size:
      clamp(
        31px,
        9vw,
        40px
      );

    line-height: 1.04;
  }

  .south-menu-intro p {
    max-width: 100%;

    margin:
      19px
      0
      15px;

    font-size: 12px;

    line-height: 1.6;
  }

  .south-menu-ornament {
    width: 145px;

    margin-top: 16px;
  }


  /* IMAGE COLLAGE */

  .south-menu-collage {
    height: 270px;
  }

  .south-main-food {
    left: -12px;
    bottom: 45px;

    width: 82%;
    height: 245px;
  }

  .south-small-food-one {
    width: 100px;
    height: 100px;

    right: 80px;
    bottom: 0;
  }

  .south-small-food-two {
    width: 105px;
    height: 92px;

    right: 0;
    bottom: 5px;
  }


  /* MENU LIST */

  .south-menu-list {
    order: 2;

    width: 100%;

    padding:
      30px
      20px;
  }

  .south-menu-group {
    padding:
      0
      0
      22px;

    margin-bottom: 22px;
  }

  .south-menu-group h3 {
    font-size: 12px;
  }

  .south-menu-row {
    font-size: 12px;

    line-height: 1.45;
  }


  /* QUALITY CARD */

  .south-quality-card {
    order: 3;

    width: calc(100% - 32px) !important;

    min-height: auto;

    margin:
      5px
      auto
      20px !important;

    padding:
      27px
      20px;

    transform: none !important;

    border-radius: 22px;
  }

  .south-quality-card h3 {
    font-size: 31px;

    transform: none !important;
  }

  .south-quality-card h3 em {
    transform: none !important;
  }

  .quality-divider {
    transform: none !important;
  }

  .south-quality-card ul {
    margin-top: 22px;
  }

  .south-quality-card li {
    min-height: 58px;

    gap: 12px;

    transform: none !important;
  }

  .south-quality-card li > i {
    width: 36px;

    font-size: 23px;
  }

  .south-quality-card li span {
    font-size: 12px;

    transform: none !important;
  }


  /* =====================================================
     04. DELICIOUS TOGETHER CTA
  ====================================================== */

  .delicious-strip {
    padding:
      38px
      0
      48px;
  }

  .delicious-strip-inner {
    width: calc(100% - 24px);

    min-height: auto;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 20px;
  }


  /* LAMP */

  .delicious-strip-visual {
    order: 1;

    width: 100%;
    height: 215px;

    min-height: 0;
  }

  .delicious-lamp {
    left: 50%;

    bottom: -5px;

    width: 165px;

    transform:
      translateX(-50%);
  }


  /* COPY */

  .delicious-strip-copy {
    order: 2;

    width: 100%;

    padding:
      22px
      18px;

    text-align: center;
  }

  .delicious-kicker {
    margin-bottom: 9px;

    font-size: 11px;
  }

  .delicious-strip-copy h2 {
    font-size:
      clamp(
        29px,
        8vw,
        36px
      );

    line-height: 1.05;
  }


  /* DIVIDER */

  .delicious-strip-divider {
    order: 3;

    width: calc(100% - 40px);
    height: 1px;

    margin:
      5px
      auto
      0;
  }


  /* PROCESS */

  .delicious-strip-right {
    order: 4;

    width: 100%;

    padding:
      23px
      18px
      28px;
  }

  .delicious-process {
    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap:
      26px
      12px;

    margin-bottom: 25px;
  }

  .delicious-dotline {
    display: none;
  }

  .delicious-step-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 8px;

    font-size: 23px;
  }

  .delicious-step span {
    font-size: 10px;
  }

  .delicious-strip-btn {
    width: 100%;
    min-width: 0;

    min-height: 48px;

    margin-inline: auto;

    font-size: 11px;
  }

}


/* =========================================================
   SMALL MOBILE - 480PX
========================================================= */

@media (max-width: 480px) {

  /* HERO */

  .menu-hero-inner {
    width: calc(100% - 20px);
  }

  .menu-hero-copy {
    padding:
      30px
      4px
      28px !important;
  }

  .menu-hero-title {
    font-size: 38px;
  }

  .menu-hero-description {
    font-size: 13px;
  }


  /* MINI FEATURES */

  .menu-mini-item {
    grid-template-columns:
      32px
      minmax(0,1fr);

    gap: 6px;

    padding:
      4px
      5px;
  }

  .menu-mini-icon {
    width: 31px;
    height: 31px;

    font-size: 18px;
  }

  .menu-mini-text strong {
    font-size: 17px;
  }

  .menu-mini-text span {
    font-size: 8px;
  }


  /* HERO IMAGE */

  .menu-hero-visual {
    min-height: 350px;
  }

  .menu-main-image {
    height: 295px !important;
  }

  .menu-years-badge {
    width: 78px;
    height: 78px;

    bottom: 18px;
  }

  .menu-years-badge strong {
    font-size: 21px;
  }


  /* =====================================================
     DELIGHT CARDS
  ====================================================== */

  .menu-delight-wrap {
    width: calc(100% - 20px);
  }

  .menu-delight-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .menu-delight-card {
    min-height: 330px;
  }

  .menu-delight-image {
    height: 220px;
  }

  .menu-delight-icon {
    width: 60px;
    height: 60px;

    margin-top: -30px;

    font-size: 25px;
  }

  .menu-delight-card h3 {
    font-size: 20px;
  }


  /* SOUTH MENU */

  .south-menu-inner {
    width: calc(100% - 20px);
  }

  .south-menu-intro {
    min-height: 480px !important;

    padding:
      28px
      16px
      0;
  }

  .south-menu-intro h2 {
    font-size: 32px;
  }

  .south-menu-collage {
    height: 240px;
  }

  .south-main-food {
    height: 215px;

    bottom: 40px;
  }

  .south-small-food-one {
    width: 88px;
    height: 88px;

    right: 68px;
  }

  .south-small-food-two {
    width: 92px;
    height: 82px;
  }

  .south-menu-list {
    padding:
      27px
      16px;
  }

  .south-menu-row {
    font-size: 11px;
  }

  .south-quality-card {
    width: calc(100% - 22px) !important;

    padding:
      24px
      16px;
  }

  .south-quality-card h3 {
    font-size: 28px;
  }


  /* DELICIOUS STRIP */

  .delicious-strip-inner {
    width: calc(100% - 20px);
  }

  .delicious-strip-visual {
    height: 190px;
  }

  .delicious-lamp {
    width: 150px;
  }

  .delicious-strip-copy h2 {
    font-size: 30px;
  }

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

}


/* =========================================================
   EXTRA SMALL MOBILE - 380PX
========================================================= */

@media (max-width: 380px) {

  .menu-hero-title {
    font-size: 35px;
  }

  .menu-mini-text strong {
    font-size: 15px;
  }

  .menu-mini-text span {
    font-size: 7px;
  }

  .menu-delight-head h2 {
    font-size: 30px;
  }

  .south-menu-intro h2 {
    font-size: 29px;
  }

  .south-menu-intro {
    min-height: 455px !important;
  }

  .south-small-food-one {
    right: 62px;
  }

  .delicious-process {
    grid-template-columns: 1fr;
  }

  .delicious-step {
    max-width: 220px;

    margin-inline: auto;
  }

}


/* =========================================================
   OCCASIONS PAGE - FINAL MOBILE RESPONSIVE
   PASTE AT VERY BOTTOM OF styles.css
========================================================= */

@media (max-width: 780px) {

  /* =====================================================
     01. HERO SECTION
  ====================================================== */

  .occasions-hero {
    width: 100%;
    min-height: auto;

    overflow: hidden;
  }


  .occasions-hero-inner {
    width: calc(100% - 24px);

    min-height: auto;

    margin-inline: auto;

    display: flex;
    flex-direction: column;
  }


  /* =====================================================
     CONTENT FIRST
  ====================================================== */

  .occasions-hero-copy {
    order: 1;

    width: 100%;

    padding:
      35px
      7px
      34px;

    text-align: left;
  }


  .occasions-eyebrow {
    margin-bottom: 10px;

    font-size: 10px;

    letter-spacing: .10em;
  }


  .occasions-title {
    max-width: 100%;

    font-size:
      clamp(
        40px,
        11vw,
        54px
      );

    line-height: .98;

    letter-spacing: -.025em;
  }


  .occasions-title > span {
    display: block;

    margin-top: 6px;
  }


  .occasions-title small {
    font-size: 18px;
  }


  .occasions-description {
    max-width: 100%;

    margin:
      24px
      0
      28px;

    font-size: 14px;

    line-height: 1.65;
  }


  /* =====================================================
     BENEFITS - 2 X 2
  ====================================================== */

  .occasions-benefits {
    width: 100%;

    max-width: none;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      23px
      0;
  }


  .occasion-benefit {
    min-width: 0;

    padding:
      0
      10px;
  }


  .occasion-benefit:first-child {
    padding-left: 10px;
  }


  /* desktop divider remove */
  .occasion-benefit::after {
    display: none !important;
  }


  /* mobile column divider */

  .occasion-benefit:nth-child(odd) {
    border-right:
      1px solid
      rgba(201,153,65,.24);
  }


  .occasion-benefit-icon {
    width: 45px;
    height: 45px;

    margin:
      0
      auto
      6px;

    font-size: 29px;
  }


  .occasion-benefit strong {
    font-size: 12px;

    line-height: 1.3;
  }


  .occasion-benefit span {
    margin-top: 3px;

    font-size: 10px;

    line-height: 1.35;
  }


  /* =====================================================
     EVENT IMAGE AREA
  ====================================================== */

  .occasions-hero-visual {
    order: 2;

    position: relative;

    width: 100%;

    min-height: 525px;
  }


  .occasions-main-photo {
    position: absolute;

    top: 0;
    left: 0;
    right: auto;

    width: 100%;
    height: 360px;

    clip-path:
      polygon(
        8% 0,
        30% 2%,
        52% 0,
        76% 2%,
        100% 0,
        100% 100%,
        0 100%,
        0 17%
      );

    border-radius:
      34px
      34px
      20px
      20px;

    filter:
      drop-shadow(
        0 14px 24px
        rgba(53,38,13,.12)
      );
  }


  .occasions-main-photo::before {
    border-left: 0;
  }


  .occasions-main-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
  }


  /* =====================================================
     FLOWER
  ====================================================== */

  .occasions-flower {
    z-index: 15;

    left: -8px;
    top: 240px;

    width: 88px;
  }


  /* leaves */

  .occasion-leaf-one {
    width: 55px;
  }


  .occasion-leaf-two {
    width: 50px;
  }


  /* =====================================================
     STATS BAR - 2 X 2
  ====================================================== */

  .occasion-stats-bar {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 10px;

    width: 100%;

    min-height: auto;

    padding:
      19px
      10px;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap:
      22px
      0;

    border-radius: 20px;
  }


  .occasion-stat {
    position: relative;

    width: 100%;

    min-width: 0;

    display: grid;

    grid-template-columns:
      39px
      minmax(0,1fr);

    align-items: center;

    column-gap: 7px;

    padding:
      0
      10px;
  }


  .occasion-stat:first-child {
    padding-left: 10px;
  }


  /* desktop dividers remove */

  .occasion-stat::after {
    display: none !important;
  }


  /* center divider mobile */

  .occasion-stat:nth-child(odd) {
    border-right:
      1px solid
      rgba(214,165,66,.25);
  }


  .occasion-stat-icon {
    grid-row:
      1 / 3;

    width: 37px;
    height: 37px;

    font-size: 23px;
  }


  .occasion-stat strong {
    min-width: 0;

    font-size: 21px;

    line-height: 1.05;

    white-space: normal;

    overflow-wrap: anywhere;
  }


  .occasion-stat:last-child strong {
    font-size: 17px;
  }


  .occasion-stat span {
    margin-top: 3px;

    font-size: 8px;

    line-height: 1.25;
  }


  /* =====================================================
     02. CELEBRATIONS GRID
  ====================================================== */

  .celebrations-grid-section {
    padding:
      40px
      0
      50px;
  }


  .celebrations-grid-wrap {
    width:
      calc(100% - 24px);
  }


  /* HEADING */

  .celebrations-grid-heading {
    gap: 7px;

    margin-bottom: 25px;
  }


  .celebrations-grid-heading h2 {
    min-width: 0;

    font-size: 11px;

    letter-spacing: .05em;

    white-space: normal;

    text-align: center;
  }


  .celebration-heading-line {
    width: 35px;

    flex-shrink: 0;
  }


  .celebration-heading-ornament {
    font-size: 13px;

    flex-shrink: 0;
  }


  /* =====================================================
     CARDS - 2 COLUMN
  ====================================================== */

  .celebrations-card-grid {
    display: grid;

    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap:
      18px
      12px;
  }


  .celebration-card {
    min-width: 0;

    min-height: 310px;

    border-radius: 14px;

    transform: none !important;
  }


  .celebration-card:hover {
    transform: none !important;
  }


  .celebration-card-image {
    height: 155px;
  }


  .celebration-card-image img {
    object-position: center;
  }


  .celebration-card-icon {
    width: 50px;
    height: 50px;

    margin:
      -25px
      auto
      10px;

    font-size: 21px;

    transform: none !important;
  }


  .celebration-card-content {
    padding:
      0
      12px
      14px;
  }


  .celebration-card-content h3 {
    margin-bottom: 7px;

    font-size: 15px;

    line-height: 1.15;
  }


  .celebration-card-content p {
    max-width: 100%;

    min-height: auto;

    font-size: 9px;

    line-height: 1.5;
  }


  .celebration-card-ornament {
    width: 65px;

    margin-top: 8px;
  }

}


/* =========================================================
   SMALL MOBILE - 480PX
========================================================= */

@media (max-width: 480px) {

  .occasions-hero-inner {
    width: calc(100% - 20px);
  }


  .occasions-hero-copy {
    padding:
      30px
      4px
      30px;
  }


  .occasions-title {
    font-size: 38px;
  }


  .occasions-title small {
    font-size: 16px;
  }


  .occasions-description {
    font-size: 13px;
  }


  /* BENEFITS */

  .occasion-benefit {
    padding:
      0
      6px;
  }


  .occasion-benefit-icon {
    width: 40px;
    height: 40px;

    font-size: 26px;
  }


  .occasion-benefit strong {
    font-size: 11px;
  }


  .occasion-benefit span {
    font-size: 9px;
  }


  /* IMAGE */

  .occasions-hero-visual {
    min-height: 485px;
  }


  .occasions-main-photo {
    height: 320px;
  }


  .occasions-flower {
    top: 213px;

    width: 75px;
  }


  /* STATS */

  .occasion-stats-bar {
    bottom: 8px;

    padding:
      17px
      7px;

    gap:
      18px
      0;
  }


  .occasion-stat {
    grid-template-columns:
      32px
      minmax(0,1fr);

    column-gap: 6px;

    padding:
      0
      6px;
  }


  .occasion-stat:first-child {
    padding-left: 6px;
  }


  .occasion-stat-icon {
    width: 31px;
    height: 31px;

    font-size: 20px;
  }


  .occasion-stat strong {
    font-size: 18px;
  }


  .occasion-stat:last-child strong {
    font-size: 14px;
  }


  .occasion-stat span {
    font-size: 7px;
  }


  /* =====================================================
     OCCASION CARDS - ONE COLUMN
  ====================================================== */

  .celebrations-grid-wrap {
    width:
      calc(100% - 20px);
  }


  .celebrations-card-grid {
    grid-template-columns: 1fr;

    gap: 21px;
  }


  .celebration-card {
    width: 100%;

    min-height: 360px;
  }


  .celebration-card-image {
    height: 220px;
  }


  .celebration-card-icon {
    width: 58px;
    height: 58px;

    margin-top: -29px;

    font-size: 25px;
  }


  .celebration-card-content {
    padding:
      0
      20px
      18px;
  }


  .celebration-card-content h3 {
    font-size: 20px;
  }


  .celebration-card-content p {
    max-width: 290px;

    font-size: 15px;

    line-height: 1.55;
  }


  .celebration-card-ornament {
    width: 85px;
  }

}


/* =========================================================
   EXTRA SMALL MOBILE - 380PX
========================================================= */

@media (max-width: 380px) {

  .occasions-title {
    font-size: 35px;
  }


  .occasions-benefits {
    gap:
      20px
      0;
  }


  .occasion-benefit strong {
    font-size: 10px;
  }


  .occasion-benefit span {
    font-size: 8px;
  }


  .occasions-hero-visual {
    min-height: 455px;
  }


  .occasions-main-photo {
    height: 295px;
  }


  .occasions-flower {
    top: 195px;

    width: 68px;
  }


  .occasion-stat strong {
    font-size: 17px;
  }


  .occasion-stat:last-child strong {
    font-size: 13px;
  }


  .celebrations-grid-heading h2 {
    font-size: 10px;
  }


  .celebration-heading-line {
    width: 22px;
  }

}


/* =========================================================
   GALLERY PAGE - FINAL MOBILE RESPONSIVE
   PASTE AT VERY BOTTOM OF styles.css
========================================================= */

@media (max-width: 780px) {

  /* =====================================================
     01. GALLERY HERO
  ====================================================== */

  .gallery-hero {
    width: 100%;
    min-height: auto;
    overflow: hidden;
  }

  .gallery-hero-inner {
    width: calc(100% - 24px);
    min-height: auto;

    margin-inline: auto;

    display: flex;
    flex-direction: column;
  }


  /* =====================================================
     CONTENT FIRST
  ====================================================== */

  .gallery-hero-copy {
    order: 1;

    width: 100%;

    padding:
      34px
      7px
      30px;

    text-align: left;
  }


  .gallery-eyebrow {
    margin-bottom: 10px;

    font-size: 10px;
    letter-spacing: .12em;
  }


  .gallery-title {
    max-width: 100%;

    font-size:
      clamp(
        40px,
        11vw,
        54px
      );

    line-height: .98;

    letter-spacing: -.025em;
  }


  .gallery-title > span {
    display: block;
  }


  .gallery-title em {
    display: inline-block;

    font-size: .95em;
  }


  .gallery-description {
    max-width: 100%;

    margin:
      22px
      0
      0;

    font-size: 14px;

    line-height: 1.65;
  }


  /* =====================================================
     HERO IMAGE
  ====================================================== */

  .gallery-hero-visual {
    order: 2;

    position: relative;

    width: 100%;

    min-height: 390px;
  }


  .gallery-main-photo {
    position: absolute;

    top: 0;
    left: 0;
    right: auto;

    width: 100%;
    height: 350px;

    overflow: hidden;

    clip-path:
      polygon(
        8% 0,
        33% 2%,
        55% 0,
        78% 2%,
        100% 0,
        100% 100%,
        0 100%,
        0 15%
      );

    border-radius:
      32px
      32px
      20px
      20px;

    filter:
      drop-shadow(
        0 15px 25px
        rgba(48,35,13,.12)
      );
  }


  .gallery-main-photo::before {
    border-left: 0;
  }


  .gallery-main-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
  }


  /* =====================================================
     LEAVES
  ====================================================== */

  .gallery-leaf-one {
    left: -8px;
    top: 55px;

    width: 52px;
  }


  .gallery-leaf-two {
    left: 3px;
    top: 275px;

    width: 48px;
  }


  .gallery-leaf-three {
    right: -12px;
    top: -3px;

    width: 70px;
  }


  /* PETALS */

  .petal-one {
    left: 10px;
    top: 115px;
  }


  .petal-two {
    left: 25px;
    top: 175px;
  }


  .petal-three {
    left: 35px;
    top: 305px;
  }


  /* =====================================================
     02. FOOD GALLERY
  ====================================================== */

  .food-menu-section {
    padding:
      38px
      0
      50px;
  }


  .food-menu-container {
    width:
      calc(100% - 24px);
  }


  /* =====================================================
     CATEGORY TABS - 2 X 2
  ====================================================== */

  .food-menu-tabs {
    width: 100%;

    margin:
      0
      auto
      28px;

    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap: 10px;
  }


  .food-tab {
    min-width: 0;

    min-height: 56px;

    padding:
      0
      10px;

    gap: 9px;

    border-radius: 9px;

    font-size: 12px;
  }


  .food-tab i {
    font-size: 21px;
  }


  /* touch device-la strong hover remove */

  .food-tab:hover {
    transform: none;
  }


  /* =====================================================
     CATEGORY TITLE
  ====================================================== */

  .food-menu-title-wrap {
    gap: 7px;

    margin:
      5px
      auto
      22px;
  }


  .food-menu-title-wrap span {
    width: 55px;
  }


  .food-menu-title-wrap h2 {
    font-size: 25px;

    text-align: center;

    white-space: nowrap;
  }


  .food-menu-title-wrap i {
    font-size: 10px;
  }


  /* =====================================================
     FOOD GRID - 2 COLUMNS
  ====================================================== */

  .food-card-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap:
      15px
      11px;
  }


  .food-card {
    min-width: 0;

    border-radius: 11px;

    transform: none !important;
  }


  .food-card:hover {
    transform: none !important;
  }


  .food-card img {
    width: 100%;
    height: 165px;

    object-fit: cover;
  }


  .food-card:hover img {
    transform: none;
  }


  .food-card h3 {
    min-height: 52px;

    padding:
      11px
      7px;

    font-size: 14px;

    line-height: 1.2;
  }

}


/* =========================================================
   SMALL MOBILE - 480PX
========================================================= */

@media (max-width: 480px) {

  /* HERO */

  .gallery-hero-inner {
    width:
      calc(100% - 20px);
  }


  .gallery-hero-copy {
    padding:
      30px
      4px
      28px;
  }


  .gallery-title {
    font-size: 38px;
  }


  .gallery-title em {
    font-size: .93em;
  }


  .gallery-description {
    font-size: 13px;
  }


  /* IMAGE */

  .gallery-hero-visual {
    min-height: 340px;
  }


  .gallery-main-photo {
    height: 305px;
  }


  .gallery-leaf-one {
    width: 45px;
  }


  .gallery-leaf-two {
    top: 235px;

    width: 42px;
  }


  .gallery-leaf-three {
    width: 60px;
  }


  /* =====================================================
     FOOD SECTION
  ====================================================== */

  .food-menu-container {
    width:
      calc(100% - 20px);
  }


  /* TABS */

  .food-menu-tabs {
    gap: 8px;

    margin-bottom: 24px;
  }


  .food-tab {
    min-height: 52px;

    gap: 7px;

    font-size: 11px;
  }


  .food-tab i {
    font-size: 19px;
  }


  /* TITLE */

  .food-menu-title-wrap {
    gap: 5px;
  }


  .food-menu-title-wrap span {
    width: 35px;
  }


  .food-menu-title-wrap h2 {
    font-size: 22px;
  }


  /* =====================================================
     FOOD CARDS - 2 COLUMN STILL
  ====================================================== */

  .food-card-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap:
      13px
      8px;
  }


  .food-card img {
    height: 140px;
  }


  .food-card h3 {
    min-height: 48px;

    padding:
      10px
      5px;

    font-size: 12px;
  }

}


/* =========================================================
   EXTRA SMALL MOBILE - 380PX
========================================================= */

@media (max-width: 380px) {

  .gallery-title {
    font-size: 35px;
  }


  .gallery-description {
    font-size: 12px;
  }


  .gallery-hero-visual {
    min-height: 315px;
  }


  .gallery-main-photo {
    height: 280px;
  }


  /* TAB */

  .food-tab {
    min-height: 49px;

    font-size: 10px;
  }


  .food-tab i {
    font-size: 17px;
  }


  .food-menu-title-wrap h2 {
    font-size: 20px;
  }


  .food-menu-title-wrap span {
    width: 25px;
  }


  /* CARDS */

  .food-card img {
    height: 125px;
  }


  .food-card h3 {
    min-height: 44px;

    font-size: 11px;
  }

}


/* =========================================================
   CONTACT PAGE - FINAL MOBILE RESPONSIVE
   PASTE AT VERY BOTTOM OF styles.css
========================================================= */

@media (max-width: 780px) {

  /* =====================================================
     01. CONTACT HERO
  ====================================================== */

  .contact-hero-section {
    width: 100%;
    min-height: auto;

    overflow: hidden;
  }


  .contact-hero-inner {
    width: calc(100% - 24px);

    min-height: auto;

    margin-inline: auto;

    display: flex;
    flex-direction: column;
  }


  /* =====================================================
     TEXT FIRST
  ====================================================== */

  .contact-hero-copy {
    order: 1;

    width: 100%;

    padding:
      35px
      7px
      32px;

    text-align: left;
  }


  .contact-hero-eyebrow {
    margin-bottom: 10px;

    font-size: 10px;

    letter-spacing: .08em;
  }


  .contact-hero-eyebrow span {
    font-size: 14px;
  }


  .contact-hero-title {
    max-width: 100%;

    font-size:
      clamp(
        39px,
        10.5vw,
        53px
      );

    line-height: 1;

    letter-spacing: -.025em;
  }


  .contact-hero-title > span {
    display: block;

    margin-top: 4px;
  }


  .contact-hero-title em {
    margin-left: 3px;
  }


  .contact-hero-title small {
    font-size: 17px;
  }


  .contact-hero-description {
    max-width: 100%;

    margin:
      23px
      0
      28px;

    font-size: 14px;

    line-height: 1.65;
  }


  /* =====================================================
     HERO FEATURES - 2 X 2
  ====================================================== */

  .contact-hero-features {
    width: 100%;
    max-width: none;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      23px
      0;
  }


  .contact-feature {
    min-width: 0;

    padding:
      0
      9px;
  }


  .contact-feature:first-child {
    padding-left: 9px;
  }


  /* desktop divider off */

  .contact-feature::after {
    display: none !important;
  }


  /* mobile center divider */

  .contact-feature:nth-child(odd) {
    border-right:
      1px solid
      rgba(210,159,62,.25);
  }


  .contact-feature-icon {
    width: 46px;
    height: 46px;

    margin:
      0
      auto
      8px;

    font-size: 25px;
  }


  .contact-feature strong {
    font-size: 12px;

    line-height: 1.3;
  }


  .contact-feature span {
    font-size: 10px;

    line-height: 1.35;
  }


  /* =====================================================
     HERO IMAGE SECOND
  ====================================================== */

  .contact-hero-visual {
    order: 2;

    position: relative;

    width: 100%;

    min-height: 370px;
  }


  .contact-main-photo {
    position: absolute;

    top: 0;
    left: 0;
    right: auto;

    width: 100%;
    height: 340px;

    overflow: hidden;

    clip-path:
      polygon(
        8% 0,
        32% 2%,
        54% 0,
        78% 2%,
        100% 0,
        100% 100%,
        0 100%,
        0 16%
      );

    border-radius:
      32px
      32px
      20px
      20px;

    filter:
      drop-shadow(
        0 14px 24px
        rgba(48,37,14,.13)
      );
  }


  .contact-main-photo::before {
    border-left: 0;
  }


  .contact-main-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
  }


  /* LEAVES */

  .contact-leaf-one {
    width: 52px;

    left: -8px;
    top: 60px;
  }


  .contact-leaf-two {
    width: 55px;

    left: 2px;
    bottom: 25px;
  }


  /* PETALS */

  .contact-petal-one {
    left: 8px;
    top: 115px;
  }


  .contact-petal-two {
    left: 20px;
    top: 175px;
  }


  .contact-petal-three {
    left: 30px;
    bottom: 45px;
  }


  /* =====================================================
     02. CONTACT FORM SECTION
  ====================================================== */

  .contact-form-section {
    padding:
      35px
      0
      48px;
  }


  .contact-form-shell {
    width: calc(100% - 24px);

    margin-inline: auto;

    display: flex;
    flex-direction: column;

    gap: 28px;

    perspective: none !important;
  }


  /* IMPORTANT:
     DESKTOP 3D MOBILE-LA REMOVE
  */

  .contact-info-card,
  .contact-message-card,
  .contact-quote-card,
  .contact-info-card:hover,
  .contact-message-card:hover,
  .contact-quote-card:hover {
    width: 100%;

    min-height: auto;

    opacity: 1 !important;

    animation: none !important;

    transform: none !important;

    backface-visibility: visible;
  }


  .contact-form-shell > * {
    opacity: 1 !important;
  }


  /* =====================================================
     GET IN TOUCH CARD
  ====================================================== */

  .contact-info-card {
    padding:
      28px
      22px
      88px;

    border-radius: 20px;
  }


  .contact-info-card h3 {
    font-size: 27px;
  }


  .contact-small-divider {
    margin-bottom: 28px;
  }


  .contact-info-item {
    grid-template-columns:
      52px
      minmax(0, 1fr);

    gap: 13px;

    margin-bottom: 22px;
  }


  .contact-info-icon {
    width: 48px;
    height: 48px;

    font-size: 22px;
  }


  .contact-info-item strong {
    font-size: 15px;
  }


  .contact-info-item a,
  .contact-info-item span {
    max-width: 100%;

    font-size: 13px;

    overflow-wrap: anywhere;
  }


  .contact-whatsapp-btn {
    left: 20px;
    right: 20px;
    bottom: 25px;

    min-height: 48px;

    font-size: 10px;
  }


  /* =====================================================
     SEND US A MESSAGE
  ====================================================== */

  .contact-message-card {
    margin-top: 15px;

    padding:
      43px
      18px
      24px;

    border-radius:
      28px
      28px
      20px
      20px;
  }


  /* top ornamental bump */

  .contact-message-card::before {
    top: -23px;

    width: 155px;
    height: 50px;
  }


  .message-top-ornament {
    top: -12px;

    font-size: 19px;
  }


  .message-card-heading {
    gap: 7px;
  }


  .message-card-heading h2 {
    font-size: 20px;

    text-align: center;
  }


  .message-heading-line {
    margin-bottom: 19px;
  }


  /* =====================================================
     FORM FIELDS
  ====================================================== */

  .contact-message-form {
    gap: 12px;
  }


  .contact-field {
    width: 100%;

    min-height: 64px;

    grid-template-columns:
      44px
      minmax(0, 1fr);

    transform: none !important;
  }


  .contact-field:hover,
  .contact-field:focus-within {
    transform: none !important;
  }


  .contact-field-icon {
    font-size: 18px;

    transform: none !important;
  }


  .contact-field-input {
    min-width: 0;

    padding:
      8px
      10px
      8px
      0;
  }


  .contact-field-input label {
    font-size: 12px;

    margin-bottom: 4px;
  }


  .contact-field-input input,
  .contact-field-input select,
  .contact-field-input textarea {
    min-width: 0;

    font-size: 14px;
  }


  .contact-field-input input::placeholder,
  .contact-field-input textarea::placeholder {
    font-size: 13px;
  }


  /* Event date + guests */

  .contact-form-row {
    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;
  }


  /* textarea */

  .contact-field-message {
    min-height: 125px;

    padding: 12px;
  }


  .contact-field-message textarea {
    min-height: 76px;

    font-size: 13px;
  }


  /* SEND BUTTON */

  .contact-submit-btn {
    width: 100%;

    min-height: 50px;

    margin-top: 5px;

    font-size: 11px;

    transform: none !important;
  }


  /* =====================================================
     REQUEST QUOTE CARD
  ====================================================== */

  .contact-quote-card {
    padding:
      29px
      21px
      88px;

    border-radius: 20px;
  }


  .contact-quote-card h3 {
    font-size: 27px;
  }


  .quote-line {
    margin-bottom: 22px;
  }


  .contact-quote-card > p {
    max-width: 300px;

    margin-bottom: 27px;

    font-size: 14px;

    line-height: 1.6;
  }


  .quote-feature-list {
    width: 100%;
    max-width: none;

    display: flex;
    flex-direction: column;

    gap: 14px;
  }


  .quote-feature {
    grid-template-columns:
      43px
      minmax(0, 1fr);

    gap: 11px;

    transform: none !important;
  }


  .quote-feature-icon {
    width: 40px;
    height: 40px;

    font-size: 17px;

    transform: none !important;
  }


  .quote-feature span {
    font-size: 14px;

    line-height: 1.4;
  }


  .quote-btn {
    left: 20px;
    right: 20px;
    bottom: 25px;

    min-height: 49px;

    font-size: 10px;
  }


  /* =====================================================
     03. WHERE WE SERVE
  ====================================================== */

  .serve-location-section {
    padding:
      35px
      0
      48px;
  }


  .serve-location-shell {
    width: calc(100% - 24px);

    min-height: auto;

    margin-inline: auto;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 20px;
  }


  /* =====================================================
     LOCATION LEFT CONTENT
  ====================================================== */

  .serve-location-copy {
    width: 100%;

    min-height: 430px;

    padding:
      27px
      20px
      0;

    overflow: hidden;
  }


  .serve-location-heading {
    justify-content: center;

    text-align: center;
  }


  .serve-location-heading h2 {
    font-size: 30px;
  }


  .serve-location-description {
    max-width: 330px;

    margin:
      10px
      auto
      22px;

    text-align: center;

    font-size: 13px;
  }


  /* places */

  .serve-location-list {
    width: 100%;
    max-width: 360px;

    margin-inline: auto;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      14px
      12px;
  }


  .serve-place {
    min-width: 0;

    gap: 7px;

    font-size: 11px;
  }


  .serve-place span {
    overflow-wrap: anywhere;
  }


  .serve-place i {
    flex-shrink: 0;

    font-size: 14px;
  }


  /* =====================================================
     TEMPLE IMAGE
  ====================================================== */

  .serve-temple-image {
    left: 0;

    bottom: 0;

    width: 100%;
    height: 180px;

    object-fit: cover;

    object-position: center bottom;
  }


  /* =====================================================
     MAP AREA
  ====================================================== */

  .serve-map-area {
    width: 100%;

    min-height: 430px;

    border-radius:
      0
      0
      20px
      20px;
  }


  /* LOCATION CARD */

  .serve-location-card {
    left: 50%;
    top: 50%;

    width: calc(100% - 40px);
    max-width: 330px;

    padding:
      25px
      22px;

    transform:
      translate(-50%, -50%);
  }


  .serve-card-title {
    gap: 11px;
  }


  .serve-pin-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    font-size: 22px;
  }


  .serve-card-title h3 {
    font-size: 21px;
  }


  .serve-card-divider {
    margin:
      15px
      0
      17px
      53px;
  }


  .serve-card-address strong {
    font-size: 14px;
  }


  .serve-card-address p {
    font-size: 13px;
  }


  .serve-directions-btn {
    min-height: 48px;

    font-size: 11px;
  }


  /* map label mobile-la hide */

  .serve-map-marker {
    display: none;
  }

}


/* =========================================================
   SMALL MOBILE - 480PX
========================================================= */

@media (max-width: 480px) {

  /* =====================================================
     HERO
  ====================================================== */

  .contact-hero-inner {
    width: calc(100% - 20px);
  }


  .contact-hero-copy {
    padding:
      30px
      4px
      28px;
  }


  .contact-hero-eyebrow {
    font-size: 9px;
  }


  .contact-hero-title {
    font-size: 37px;
  }


  .contact-hero-description {
    font-size: 13px;
  }


  .contact-feature {
    padding:
      0
      5px;
  }


  .contact-feature:first-child {
    padding-left: 5px;
  }


  .contact-feature-icon {
    width: 41px;
    height: 41px;

    font-size: 22px;
  }


  .contact-feature strong {
    font-size: 11px;
  }


  .contact-feature span {
    font-size: 9px;
  }


  .contact-hero-visual {
    min-height: 330px;
  }


  .contact-main-photo {
    height: 300px;
  }


  .contact-leaf-one {
    width: 44px;
  }


  .contact-leaf-two {
    width: 47px;
  }


  /* =====================================================
     CONTACT CARDS
  ====================================================== */

  .contact-form-shell {
    width: calc(100% - 20px);

    gap: 26px;
  }


  .contact-info-card {
    padding:
      25px
      17px
      84px;
  }


  .contact-info-card h3 {
    font-size: 25px;
  }


  .contact-info-item {
    grid-template-columns:
      46px
      minmax(0,1fr);

    gap: 10px;
  }


  .contact-info-icon {
    width: 43px;
    height: 43px;

    font-size: 20px;
  }


  .contact-info-item strong {
    font-size: 14px;
  }


  .contact-info-item a,
  .contact-info-item span {
    font-size: 12px;
  }


  /* FORM */

  .contact-message-card {
    padding:
      41px
      14px
      20px;
  }


  .message-card-heading h2 {
    font-size: 18px;
  }


  .contact-field {
    grid-template-columns:
      39px
      minmax(0,1fr);

    min-height: 61px;
  }


  .contact-field-input label {
    font-size: 11px;
  }


  .contact-field-input input,
  .contact-field-input select,
  .contact-field-input textarea {
    font-size: 13px;
  }


  /* QUOTE */

  .contact-quote-card {
    padding:
      26px
      17px
      84px;
  }


  .contact-quote-card h3 {
    font-size: 25px;
  }


  .contact-quote-card > p {
    font-size: 13px;
  }


  .quote-feature span {
    font-size: 13px;
  }


  /* =====================================================
     LOCATION
  ====================================================== */

  .serve-location-shell {
    width:
      calc(100% - 20px);
  }


  .serve-location-copy {
    min-height: 410px;

    padding:
      25px
      15px
      0;
  }


  .serve-location-heading h2 {
    font-size: 27px;
  }


  .serve-location-description {
    font-size: 12px;
  }


  .serve-location-list {
    gap:
      12px
      8px;
  }


  .serve-place {
    font-size: 10px;
  }


  .serve-temple-image {
    height: 165px;
  }


  .serve-map-area {
    min-height: 400px;
  }


  .serve-location-card {
    width:
      calc(100% - 28px);

    padding:
      22px
      18px;
  }


  .serve-card-title h3 {
    font-size: 20px;
  }


  .serve-card-address p {
    font-size: 12px;
  }

}


/* =========================================================
   EXTRA SMALL MOBILE - 380PX
========================================================= */

@media (max-width: 380px) {

  .contact-hero-title {
    font-size: 34px;
  }


  .contact-feature strong {
    font-size: 10px;
  }


  .contact-feature span {
    font-size: 8px;
  }


  .contact-hero-visual {
    min-height: 305px;
  }


  .contact-main-photo {
    height: 275px;
  }


  .message-card-heading h2 {
    font-size: 17px;
  }


  .contact-info-item a,
  .contact-info-item span {
    font-size: 11px;
  }


  .serve-location-heading h2 {
    font-size: 25px;
  }


  .serve-place {
    font-size: 9px;
  }


  .serve-location-card {
    width:
      calc(100% - 22px);
  }

}

/* =========================================================
   GOOGLE MAP
========================================================= */

.serve-map-area {
  position: relative;
  overflow: hidden;
}

.serve-google-map {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;

  z-index: 1;
}

/* location card map-ku front-la */
.serve-location-card {
  position: absolute;
  z-index: 5;
}

/* custom Mathi Caterings marker */
.serve-map-marker {
  position: absolute;
  z-index: 6;
}

/* =========================================================
   SPECIALTIES CARD - GREEN + WHITE
========================================================= */

/* FULL CARD GREEN */
.spec-card {
  background: #0f3b2e;
}


/* CARD BOTTOM AREA GREEN */
.spec-card-body {
  background: #0f3b2e;
}


/* CARD TITLE WHITE */
.spec-card h3 {
  color: #ffffff;
}


/* ROUND ARROW */
.spec-card-arrow {
  color: #ffffff;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.75);
}


/* HOVER ARROW */
.spec-card:hover .spec-card-arrow {
  color: #0f3b2e;

  background: #ffffff;

  border-color: #ffffff;
}


/* HOVER TITLE WHITE-AH VE IRUKKATTUM */
.spec-card:hover h3 {
  color: #ffffff;
}


/* =========================================================
   GARLAND - 2 IMAGES PER RUNNING SLIDE
========================================================= */

.garland-slider {
  position: absolute;

  z-index: 6;

  top: 65px;
  left: 40%;
  right: 5%;
  bottom: 20px;

  overflow: hidden;

  display: flex;
  align-items: center;
}


/* =========================================================
   MOVING TRACK
========================================================= */

.garland-slider-track {
  display: flex;

  width: 300%;
  height: 100%;

  animation:
    garlandPairSlide
    12s
    ease-in-out
    infinite;

  will-change: transform;
}


/* =========================================================
   EACH SLIDE
========================================================= */

.garland-slide {
  flex:
    0 0
    33.333333%;

  width: 33.333333%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 85px;

  padding:
    10px
    50px;
}


/* =========================================================
   GARLAND IMAGE SIZE
========================================================= */

.garland-slide img {
  width: auto;

  height: 310px;

  max-width: 42%;

  object-fit: contain;

  flex-shrink: 0;

  filter:
    drop-shadow(
      0 18px 15px
      rgba(77, 46, 20, .16)
    );

  transform:
    translateY(0)
    scale(1);

  transition:
    transform .5s ease;
}


/* slight premium difference */

.garland-slide img:nth-child(1) {
  transform:
    translateY(-4px)
    rotate(-1deg);
}

.garland-slide img:nth-child(2) {
  transform:
    translateY(4px)
    rotate(1deg);
}


/* =========================================================
   RUNNING SLIDER
========================================================= */

@keyframes garlandPairSlide {

  /* SLIDE 01 */

  0% {
    transform:
      translateX(0);
  }

  25% {
    transform:
      translateX(0);
  }


  /* SLIDE 02 */

  33.333% {
    transform:
      translateX(-33.333333%);
  }

  58% {
    transform:
      translateX(-33.333333%);
  }


  /* SLIDE 03 */

  66.666% {
    transform:
      translateX(-66.666666%);
  }

  92% {
    transform:
      translateX(-66.666666%);
  }


  /* BACK TO FIRST */

  100% {
    transform:
      translateX(0);
  }

}


/* =========================================================
   HOVER - PAUSE
========================================================= */

.garland-slider:hover
.garland-slider-track {
  animation-play-state: paused;
}

/* GARLAND CUT FIX */

@media (min-width: 901px) {

  .garland-products {
    /* top-la extra breathing space */
    padding-top: -1px !important;

    /* height konjam increase */
    height: 380px !important;
  }

  .garland-running-track {
    height: 100%;
  }

  .garland-pair {
    align-items: flex-start;
  }

}


/* =========================================================
   GARLAND HOVER - NO BOTTOM CUT
========================================================= */

@media (min-width: 901px) {

  /* slider window-ku extra vertical space */
  .garland-products {
    height: 430px !important;
  }

  /* mala normal position */
  .garland-pair img {
    position: relative !important;
    top: 45px !important;

    transform-origin: center center !important;

    transition:
      transform .55s ease,
      filter .55s ease !important;
  }

  /* hover */
  .garland-products img:hover {
    z-index: 20 !important;

    transform:
      perspective(1000px)
      translateY(-5px)
      translateZ(40px)
      rotateX(3deg)
      rotateY(-5deg)
      scale(1.08) !important;

    filter:
      drop-shadow(
        0 20px 18px
        rgba(57, 36, 14, .20)
      ) !important;
  }

}


/* =========================================================
   NEW OCCASIONS SECTION
   6 SMALL CARDS + 1 BIG PREVIEW
========================================================= */

.occ-new {
  position: relative;

  padding:
    70px
    0
    85px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 48%,
      rgba(255,255,255,.95),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #fffaf0 0%,
      #fdf8ec 55%,
      #f7edd9 100%
    );
}


/* subtle texture */

.occ-new::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: .025;

  background-image:
    radial-gradient(
      circle,
      #9b7533 1px,
      transparent 1px
    );

  background-size:
    24px
    24px;
}


/* =========================================================
   CONTAINER
========================================================= */

.occ-new-container {
  position: relative;

  z-index: 3;
}


/* =========================================================
   TOP HEADING
========================================================= */

.occ-new-heading {
  max-width: 760px;

  margin:
    0
    auto
    48px;

  text-align: center;
}


.occ-new-eyebrow {
  display: inline-block;

  margin-bottom: 10px;

  color: #c28d2d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .30em;

  text-transform: uppercase;
}


.occ-new-heading h2 {
  margin: 0;

  color: #103d30;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      42px,
      4vw,
      62px
    );

  font-weight: 600;

  line-height: 1;

  letter-spacing: -.03em;
}


.occ-new-heading h2 span {
  color: #e8551f;

  font-family:
    "Yellowtail",
    cursive;

  font-weight: 400;
}


.occ-new-heading p {
  max-width: 610px;

  margin:
    18px
    auto
    0;

  color: #65685f;

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================================
   MAIN STRUCTURE
========================================================= */

.occ-new-layout {
  display: grid;

  grid-template-columns:
    minmax(360px, .82fr)
    minmax(0, 1.65fr);

  gap: 34px;

  align-items: stretch;
}


/* =========================================================
   LEFT 2 x 3 GRID
========================================================= */

.occ-thumb-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  grid-template-rows:
    repeat(3, 1fr);

  gap: 16px;

  min-height: 520px;
}


/* =========================================================
   SMALL CARD
========================================================= */

.occ-thumb {
  position: relative;

  min-height: 158px;

  padding: 0;

  overflow: hidden;

  border:
    1px solid
    rgba(199,154,65,.22);

  border-radius: 17px;

  background: #fff;

  cursor: pointer;

  box-shadow:
    0 10px 26px
    rgba(53,62,53,.08);

  transform:
    perspective(900px)
    translateZ(0);

  transition:
    transform .45s
    cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    border-color .35s ease;
}


/* IMAGE */

.occ-thumb > img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .7s
    cubic-bezier(.2,.8,.2,1);
}


/* SHADE */

.occ-thumb::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      180deg,
      transparent 25%,
      rgba(5,44,32,.86) 100%
    );

  transition:
    background .4s ease;
}


/* GOLD ACTIVE BORDER */

.occ-thumb::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 5;

  border:
    2px solid
    transparent;

  border-radius: inherit;

  pointer-events: none;

  transition:
    border-color .35s ease;
}


/* CARD CONTENT */

.occ-thumb-info {
  position: absolute;

  z-index: 4;

  left: 16px;
  right: 16px;
  bottom: 13px;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 10px;

  color: #fff;

  text-align: left;
}


.occ-thumb-number {
  color: #e1b14b;

  font-family:
    "Playfair Display",
    serif;

  font-size: 13px;
  font-weight: 700;
}


.occ-thumb h3 {
  margin: 0;

  color: #fff;

  font-family:
    "Jost",
    sans-serif;

  font-size: 14px;
  font-weight: 600;

  line-height: 1.2;

  text-align: right;
}


/* =========================================================
   SMALL CARD HOVER
========================================================= */

.occ-thumb:hover {
  z-index: 8;

  transform:
    perspective(900px)
    translateY(-5px)
    rotateX(2deg)
    scale(1.025);

  box-shadow:
    0 18px 35px
    rgba(35,60,48,.16);
}


.occ-thumb:hover > img {
  transform:
    scale(1.08);
}


/* ACTIVE */

.occ-thumb.active {
  transform:
    perspective(900px)
    translateY(-3px)
    scale(1.018);

  box-shadow:
    0 18px 38px
    rgba(30,62,48,.16);
}


.occ-thumb.active::after {
  border-color:
    #cfa03e;
}


.occ-thumb.active::before {
  background:
    linear-gradient(
      180deg,
      transparent 15%,
      rgba(4,51,37,.93) 100%
    );
}


/* =========================================================
   RIGHT BIG PREVIEW
========================================================= */

.occ-main-preview {
  min-width: 0;

  min-height: 520px;
}


/* BIG CARD */

.occ-main-image-wrap {
  position: relative;

  width: 100%;
  height: 100%;
  min-height: 520px;

  overflow: hidden;

  border-radius:
    32px
    32px
    32px
    8px;

  background: #0f3b2e;

  box-shadow:
    0 25px 60px
    rgba(39,55,45,.17);

  isolation: isolate;

  transform:
    perspective(1300px)
    translateZ(0);
}


/* BIG IMAGE */

#occMainImage {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 1;

  transform:
    scale(1.001);

  transition:
    opacity .30s ease,
    transform .8s
    cubic-bezier(.2,.8,.2,1);
}


/* DARK GRADIENT */

.occ-main-shade {
  position: absolute;

  z-index: 2;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4,39,29,.82) 0%,
      rgba(4,39,29,.40) 42%,
      rgba(4,39,29,.05) 72%
    ),
    linear-gradient(
      0deg,
      rgba(3,32,24,.62),
      transparent 45%
    );

  pointer-events: none;
}


/* LARGE NUMBER */

.occ-main-count {
  position: absolute;

  z-index: 3;

  top: 30px;
  right: 34px;

  color:
    rgba(255,255,255,.82);

  font-family:
    "Playfair Display",
    serif;

  font-size: 52px;

  line-height: 1;
}


/* BIG TEXT */

.occ-main-content {
  position: absolute;

  z-index: 4;

  left: 42px;
  bottom: 43px;

  max-width: 470px;

  color: #fff;
}


.occ-main-label {
  display: block;

  margin-bottom: 10px;

  color: #e1b14b;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .25em;

  text-transform: uppercase;
}


.occ-main-content h3 {
  margin:
    0
    0
    13px;

  color: #fff;

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(
      34px,
      3.2vw,
      54px
    );

  font-weight: 600;

  line-height: 1;
}


.occ-main-content p {
  max-width: 420px;

  margin:
    0
    0
    22px;

  color:
    rgba(255,255,255,.86);

  font-size: 15px;

  line-height: 1.65;
}


.occ-main-content a {
  min-height: 46px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 30px;

  padding:
    0
    20px;

  border:
    1px solid
    rgba(222,174,67,.70);

  border-radius: 6px;

  background:
    rgba(8,52,39,.82);

  color: #fff;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  transition:
    background .35s ease,
    transform .35s ease;
}


.occ-main-content a span {
  color: #e1b14b;

  font-size: 19px;

  transition:
    transform .35s ease;
}


.occ-main-content a:hover {
  background:
    #e8551f;

  transform:
    translateY(-2px);
}


.occ-main-content a:hover span {
  color: #fff;

  transform:
    translateX(5px);
}


/* =========================================================
   IMAGE CHANGE ANIMATION
========================================================= */

.occ-main-image-wrap.is-changing
#occMainImage {
  opacity: .15;

  transform:
    scale(1.06);
}


.occ-main-image-wrap.preview-pop {
  animation:
    occPreviewPop
    .55s
    cubic-bezier(.2,.8,.2,1);
}


@keyframes occPreviewPop {

  0% {
    transform:
      perspective(1300px)
      scale(.985)
      rotateY(1.5deg);
  }

  100% {
    transform:
      perspective(1300px)
      scale(1)
      rotateY(0);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .occ-new-layout {
    grid-template-columns:
      330px
      minmax(0,1fr);

    gap: 24px;
  }


  .occ-thumb-grid {
    min-height: 470px;

    gap: 12px;
  }


  .occ-main-preview,
  .occ-main-image-wrap {
    min-height: 470px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .occ-new {
    padding:
      55px
      0
      65px;
  }


  .occ-new-heading {
    margin-bottom: 32px;
  }


  .occ-new-heading h2 {
    font-size:
      clamp(
        37px,
        11vw,
        48px
      );
  }


  .occ-new-heading p {
    font-size: 14px;
  }


  .occ-new-layout {
    display: flex;

    flex-direction: column;

    gap: 22px;
  }


  /* BIG FIRST ON MOBILE */

  .occ-main-preview {
    order: 1;

    min-height: 390px;
  }


  .occ-thumb-grid {
    order: 2;

    min-height: auto;

    grid-template-columns:
      repeat(2,1fr);

    grid-template-rows:
      repeat(3,145px);

    gap: 12px;
  }


  .occ-main-image-wrap {
    min-height: 390px;

    border-radius: 22px;
  }


  .occ-main-content {
    left: 24px;
    right: 24px;

    bottom: 25px;
  }


  .occ-main-content h3 {
    font-size: 38px;
  }


  .occ-main-count {
    top: 22px;
    right: 24px;

    font-size: 40px;
  }


  .occ-thumb {
    min-height: 145px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .occ-thumb-grid {
    grid-template-rows:
      repeat(3,125px);

    gap: 10px;
  }


  .occ-thumb {
    min-height: 125px;

    border-radius: 13px;
  }


  .occ-thumb-info {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }


  .occ-thumb h3 {
    font-size: 12px;
  }


  .occ-main-preview,
  .occ-main-image-wrap {
    min-height: 350px;
  }


  .occ-main-content p {
    font-size: 13px;
  }

}


/* =========================================
   PLAN SECTION - TEXT SIZE CONTROL
========================================= */

/* LEFT SIDE SUB HEADING
   "Share your details and we'll get back..."
*/
.plan-copy p {
    font-size: 18px !important;   /* 👈 SIZE INGA CONTROL */
    line-height: 1.6 !important;
}


/* FORM PLACEHOLDER + SELECT TEXT */
.plan-field input,
.plan-field select,
.plan-field textarea {
    font-size: 16px !important;   /* 👈 SIZE INGA CONTROL */
}


/* INPUT PLACEHOLDER */
.plan-field input::placeholder,
.plan-field textarea::placeholder {
    font-size: 16px !important;   /* 👈 SIZE INGA CONTROL */
}


/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.floating-whatsapp {
  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 99999;

  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25D366;
  color: #fff;

  font-size: 31px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .22),
    0 0 0 6px rgba(37, 211, 102, .12);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


/* HOVER */

.floating-whatsapp:hover {
  color: #fff;

  transform:
    translateY(-5px)
    scale(1.07);

  box-shadow:
    0 16px 36px rgba(0, 0, 0, .28),
    0 0 0 9px rgba(37, 211, 102, .12);
}


/* SMALL PULSE */

.floating-whatsapp::before {
  content: "";

  position: absolute;

  inset: -7px;

  border-radius: 50%;

  border: 2px solid rgba(37, 211, 102, .45);

  animation: whatsappPulse 2s infinite;

  pointer-events: none;
}


@keyframes whatsappPulse {

  0% {
    transform: scale(.85);
    opacity: .8;
  }

  70% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .floating-whatsapp {
    width: 54px;
    height: 54px;

    right: 16px;
    bottom: 18px;

    font-size: 27px;
  }

}

/* ABOUT HERO - JOIN WITH HEADER */

@media (min-width: 1101px) {

  .about-story-premium {
    padding-top: 0 !important;
  }

  .about-story-inner {
    padding-top: 0 !important;
  }

  .about-story-visual {
    margin-top: 0 !important;
  }

  .story-main-photo {
    top: 0 !important;

    height: 560px !important;

    clip-path: polygon(
      10% 0,
      25% 0,
      42% 0,
      58% 0,
      75% 0,
      90% 0,
      100% 0,

      100% 100%,

      4% 100%,
      1% 86%,
      0% 68%,
      2% 48%,
      1% 28%,
      5% 12%
    ) !important;
  }

}




@media (min-width: 1101px) {

  .story-main-photo {
    position: absolute !important;

    top: 0 !important;
    right: -70px !important;

    width: 100% !important;
    height: 520px !important;

    overflow: hidden !important;

    /* old polygon remove */
    clip-path: none !important;

    border-radius:
      180px 0 0 180px !important;

    filter:
      drop-shadow(
        0 20px 35px
        rgba(36, 25, 11, .16)
      ) !important;
  }


  /* LEFT CREAM CUTOUT - reference maari inward curve */
  .story-main-photo::before {
    content: "";

    position: absolute;
    z-index: 5;

    top: -8%;
    left: -135px;

    width: 210px;
    height: 116%;

    border-radius: 50%;

    background: #fffaf0;

    pointer-events: none;

    box-shadow:
      10px 0 0 rgba(205, 157, 67, .45);
  }


  .story-main-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
  }

}

@media (min-width: 1101px) {

    /* unwanted white oval REMOVE */
    .story-main-photo::before {
        display: none !important;
    }

}

/* =========================================================
   SERVICES HERO IMAGE - SOFT ROUNDED CURVE
========================================================= */

@media (min-width: 1025px) {

  .services-main-image {
    top: 0 !important;
    right: -60px !important;

    width: 108% !important;
    height: 610px !important;

    overflow: hidden !important;

    /* OLD SHARP POLYGON REMOVE */
    clip-path: none !important;

    /* PREMIUM SMOOTH LEFT CURVE */
    border-radius:
      48% 0 0 38%
      /
      42% 0 0 46% !important;

    filter:
      drop-shadow(
        -14px 18px 28px
        rgba(53, 38, 13, .14)
      ) !important;
  }


  .services-main-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block;
  }

}

/* =========================================================
   30+ BADGE - ROTATING OUTER RING
   TEXT WILL STAY STATIC
========================================================= */

/* COMPLETE BADGE STATIC */
.strength-badge {
  animation: none !important;
}


/* OUTER ROTATING RING */
.strength-badge::before {
  content: "";

  position: absolute;

  inset: -9px;

  border-radius: 50%;

  border: 2px solid transparent;

  border-top-color: #d3a542;
  border-right-color: rgba(211, 165, 66, .25);
  border-bottom-color: #d3a542;
  border-left-color: rgba(211, 165, 66, .25);

  pointer-events: none;

  animation:
    strengthPremiumRingRotate
    6s
    linear
    infinite;
}


/* EXTRA SMALL GOLD DOT FOR PREMIUM LOOK */
.strength-badge::after {
  content: "";

  position: absolute;

  width: 9px;
  height: 9px;

  top: -8px;
  left: 50%;

  border-radius: 50%;

  background: #d3a542;

  box-shadow:
    0 0 0 4px rgba(211,165,66,.13),
    0 0 16px rgba(211,165,66,.65);

  transform:
    translateX(-50%);

  transform-origin:
    50% 71px;

  animation:
    strengthBadgeDotOrbit
    6s
    linear
    infinite;

  pointer-events: none;
}


/* TEXT + GREEN INNER CIRCLE STATIC */
.strength-badge-inner {
  position: relative;

  z-index: 3;

  transform: none !important;
  animation: none !important;
}


/* OUTER RING ROTATION */
@keyframes strengthPremiumRingRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


/* GOLD DOT ORBIT */
@keyframes strengthBadgeDotOrbit {

  from {
    transform:
      translateX(-50%)
      rotate(0deg);
  }

  to {
    transform:
      translateX(-50%)
      rotate(360deg);
  }

}

/* ABOUT PAGE STATS - TEXT SIZE */

.story-stat-text strong {
    font-size: 32px !important;
    line-height: 1 !important;
}

/* Years of / Complete / Menu / of Happy */
.story-stat-text small {
    font-size: 13px !important;
    line-height: 1.25 !important;
}

/* Experience / Catering Service / Varieties / Families */
.story-stat-text small b {
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* =========================================================
   WHY CHOOSE MATHI - WAVY TOP + BOTTOM EDGE
========================================================= */

.why-mathi-strip {
  position: relative !important;

  margin:
    28px
    0 !important;

  padding:
    58px
    0
    60px !important;

  overflow: visible !important;

  background:
    radial-gradient(
      circle at 65% 50%,
      rgba(14, 102, 79, .18),
      transparent 35%
    ),
    linear-gradient(
      105deg,
      #003b2e 0%,
      #00513f 55%,
      #003b2e 100%
    ) !important;

  /* MAIN WAVY SHAPE */
  clip-path: polygon(
    0 3%,
    4% 1.5%,
    8% 3%,
    12% 1.5%,
    16% 3%,
    20% 1.5%,
    24% 3%,
    28% 1.5%,
    32% 3%,
    36% 1.5%,
    40% 3%,
    44% 1.5%,
    48% 3%,
    52% 1.5%,
    56% 3%,
    60% 1.5%,
    64% 3%,
    68% 1.5%,
    72% 3%,
    76% 1.5%,
    80% 3%,
    84% 1.5%,
    88% 3%,
    92% 1.5%,
    96% 3%,
    100% 1.5%,

    100% 97%,
    96% 98.5%,
    92% 97%,
    88% 98.5%,
    84% 97%,
    80% 98.5%,
    76% 97%,
    72% 98.5%,
    68% 97%,
    64% 98.5%,
    60% 97%,
    56% 98.5%,
    52% 97%,
    48% 98.5%,
    44% 97%,
    40% 98.5%,
    36% 97%,
    32% 98.5%,
    28% 97%,
    24% 98.5%,
    20% 97%,
    16% 98.5%,
    12% 97%,
    8% 98.5%,
    4% 97%,
    0 98.5%
  ) !important;
}

/* SERVICE GRID - TEXT SIZE INCREASE */

.service-grid-head h2 {
  font-size: clamp(38px, 3.6vw, 54px) !important;
}

.service-grid-head p {
  font-size: 17px !important;
}

.service-grid-content h3 {
  font-size: 22px !important;
  line-height: 1.15 !important;
}

.service-grid-content > p {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.service-grid-content li {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

/* OUR PROCESS - TEXT SIZE INCREASE */

.process-head h2 {
  font-size: clamp(36px, 3.5vw, 50px) !important;
}

.process-step h3 {
  font-size: 23px !important;
}

.process-step p {
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.process-number {
  font-size: 12px !important;
}


/* FINAL CELEBRATION SECTION TEXT SIZE */

/* LET US MAKE YOUR CELEBRATION SPECIAL */
.celebration-eyebrow {
    font-size: 15px !important;
}

/* Great Food. Great Service. Unforgettable Memories */
.celebration-content h2 {
    font-size: 48px !important;
    line-height: 1.08 !important;
}

/* Memories orange text */
.celebration-content h2 em {
    font-size: 48px !important;
}

/* Contact us today... */
.celebration-content > p {
    font-size: 17px !important;
    line-height: 1.6 !important;
}

/* PLAN YOUR EVENT + VIEW MENU */
.celebration-btn {
    font-size: 14px !important;
}

/* Premium Ingredients / Hygienic & Safe / On-time Service */
.celebration-feature > span {
    font-size: 17px !important;
    font-weight: 600;
}

/* KUTHU VILAKKU - VERTICAL CENTER FIX */

.celebration-visual {
    position: relative;

    display: flex;
    align-items: center;      /* TOP / BOTTOM center */
    justify-content: center;  /* LEFT / RIGHT center */
}

.celebration-image-frame {
    position: relative !important;

    top: auto !important;
    left: auto !important;
    bottom: auto !important;

    margin: 0 !important;
}


/* =========================================
   MENU 30+ BADGE - ROTATING OUTER RING
   TEXT STATIC
========================================= */

.menu-years-badge {
  animation: none !important;
  position: absolute;
}

/* rotating gold ring */
.menu-years-badge::before {
  content: "";

  position: absolute;
  inset: -7px;

  border-radius: 50%;

  border: 2px solid transparent;

  border-top-color: #d3a542;
  border-right-color: rgba(211,165,66,.25);
  border-bottom-color: #d3a542;
  border-left-color: rgba(211,165,66,.25);

  pointer-events: none;

  animation: menuBadgeRingRotate 6s linear infinite;
}

/* orbit gold dot */
.menu-years-badge::after {
  content: "";

  position: absolute;

  width: 8px;
  height: 8px;

  top: -9px;
  left: 50%;

  border-radius: 50%;

  background: #d3a542;

  box-shadow:
    0 0 0 4px rgba(211,165,66,.14),
    0 0 14px rgba(211,165,66,.55);

  transform-origin: 50% 69px;

  animation: menuBadgeDotOrbit 6s linear infinite;

  pointer-events: none;
}

@keyframes menuBadgeRingRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes menuBadgeDotOrbit {
  from {
    transform:
      translateX(-50%)
      rotate(0deg);
  }

  to {
    transform:
      translateX(-50%)
      rotate(360deg);
  }
}

.menu-eyebrow {
  font-size: 13px !important;
}

.menu-hero-title {
  font-size: clamp(54px, 4.6vw, 72px) !important;
}

.menu-hero-description {
  font-size: 18px !important;
}

.menu-mini-text strong {
  font-size: 30px !important;
}

.menu-mini-text span,
.menu-mini-text b {
  font-size: 14px !important;
}

.menu-years-badge strong {
  font-size: 36px !important;
}

.menu-years-badge span,
.menu-years-badge b {
  font-size: 10px !important;
}

/* =========================================
   MENU DELIGHT CARDS - GREEN STYLE
========================================= */

.menu-delight-card {
    background: #0f3b2e !important;
    border-color: rgba(200, 162, 74, 0.25) !important;
}

/* CARD TITLE */
.menu-delight-card h3 {
    color: #ffffff !important;
}

/* SECOND LINE */
.menu-delight-card h3 span {
    color: #ffffff !important;
}

/* ICON CIRCLE - same premium look */
.menu-delight-icon {
    background: #0f3b2e !important;
    color: #d4a33b !important;

    border: 3px solid #ffffff !important;

    box-shadow:
        0 0 0 3px #d4a33b,
        0 10px 22px rgba(0,0,0,.18) !important;
}

/* =========================================================
   COMPLETE TAMIL MENU CATALOGUE
========================================================= */

.tamil-menu-section {
  position: relative;

  width: 100%;

  padding:
    55px
    0
    70px;

  background: #fffaf1;
}


/* MAIN SHELL */

.tamil-menu-shell {
  width:
    min(
      calc(100% - 70px),
      1550px
    );

  min-height: 760px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(310px, 32%)
    minmax(0, 68%);

  border-radius: 28px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(17, 112, 82, .18),
      transparent 30%
    ),
    linear-gradient(
      115deg,
      #043a2f,
      #07513f 55%,
      #03362c
    );

  box-shadow:
    0 28px 65px
    rgba(23, 46, 36, .14);
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.tamil-menu-visual {
  position: relative;

  min-height: 760px;

  padding:
    45px
    38px
    370px;

  border-right:
    1px solid
    rgba(211, 165, 66, .28);

  overflow: hidden;
}


.tamil-menu-kicker {
  margin-bottom: 13px;

  color: #e1a83b;

  font-family:
    "Noto Sans Tamil",
    sans-serif;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: .03em;
}


.tamil-menu-visual h2 {
  margin: 0;

  color: #fffaf0;

  font-family:
    "Noto Serif Tamil",
    serif;

  font-size:
    clamp(
      34px,
      2.6vw,
      48px
    );

  font-weight: 700;

  line-height: 1.3;
}


.tamil-menu-visual h2 span {
  display: block;

  color: #e9b34d;
}


.tamil-menu-visual > p {
  max-width: 330px;

  margin:
    23px
    0
    20px;

  color:
    rgba(255,255,255,.85);

  font-family:
    "Noto Sans Tamil",
    sans-serif;

  font-size: 15px;

  line-height: 1.9;
}


/* ORNAMENT */

.tamil-menu-line {
  width: 180px;

  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 20px;

  color: #d8a442;
}


.tamil-menu-line span {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #d8a442,
      transparent
    );
}


.tamil-menu-line i {
  font-style: normal;

  font-size: 10px;
}


/* MAIN FOOD */

.tamil-menu-main-image {
  position: absolute;

  left: -20px;
  bottom: 35px;

  width: 88%;
  height: 320px;

  overflow: hidden;

  border-radius:
    48% 48% 12% 0
    /
    28% 28% 10% 0;

  transform:
    rotate(-4deg);

  box-shadow:
    0 20px 40px
    rgba(0,0,0,.20);
}


.tamil-menu-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* SMALL IMAGES */

.tamil-menu-small-images {
  position: absolute;

  right: 8px;
  bottom: 4px;

  z-index: 4;

  display: flex;

  align-items: flex-end;

  gap: 7px;
}


.tamil-menu-small-images > div {
  width: 112px;
  height: 105px;

  overflow: hidden;

  border:
    3px solid
    #fffaf1;

  border-radius: 15px;

  box-shadow:
    0 13px 25px
    rgba(0,0,0,.22);
}


.tamil-menu-small-images > div:first-child {
  transform:
    rotate(-2deg);
}


.tamil-menu-small-images > div:last-child {
  transform:
    rotate(3deg);
}


.tamil-menu-small-images img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* 100+ BADGE */

.tamil-menu-count {
  position: absolute;

  right: 28px;
  top: 390px;

  z-index: 5;

  width: 110px;
  height: 110px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border:
    3px solid
    #f8e5ac;

  outline:
    2px solid
    #d5a343;

  background: #07513f;

  color: #fff;

  text-align: center;

  box-shadow:
    0 12px 30px
    rgba(0,0,0,.20);
}


.tamil-menu-count strong {
  font-family:
    "Playfair Display",
    serif;

  font-size: 30px;

  line-height: 1;
}


.tamil-menu-count span {
  margin-top: 5px;

  font-family:
    "Noto Sans Tamil",
    sans-serif;

  font-size: 9px;

  line-height: 1.3;
}


.tamil-menu-count b {
  display: block;
}


/* =========================================================
   RIGHT CATALOGUE
========================================================= */

.tamil-menu-catalogue {
  min-width: 0;

  padding:
    38px
    38px
    42px;
}


/* HEADER */

.tamil-menu-header {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 25px;

  padding-bottom: 25px;

  border-bottom:
    1px solid
    rgba(217,169,72,.25);
}


.tamil-menu-label {
  display: block;

  margin-bottom: 7px;

  color: #e3aa3d;

  font-family:
    "Noto Sans Tamil",
    sans-serif;

  font-size: 12px;

  font-weight: 700;
}


.tamil-menu-header h3 {
  margin: 0;

  color: #fffaf1;

  font-family:
    "Noto Serif Tamil",
    serif;

  font-size:
    clamp(
      25px,
      2vw,
      36px
    );

  line-height: 1.35;
}


.tamil-menu-header h3 em {
  color: #e6aa3a;

  font-style: normal;
}


/* SEARCH */

.tamil-menu-search {
  width: 260px;

  min-height: 46px;

  display: flex;
  align-items: center;

  gap: 10px;

  padding:
    0
    15px;

  flex-shrink: 0;

  border:
    1px solid
    rgba(217,169,72,.50);

  border-radius: 12px;

  background:
    rgba(255,255,255,.06);

  color: #e3aa3d;
}


.tamil-menu-search input {
  width: 100%;

  border: 0;

  outline: 0;

  background: transparent;

  color: #fff;

  font-family:
    "Noto Sans Tamil",
    sans-serif;

  font-size: 12px;
}


.tamil-menu-search input::placeholder {
  color:
    rgba(255,255,255,.55);
}


/* =========================================================
   CATEGORY TABS
========================================================= */

.tamil-menu-tabs {
  display: flex;

  align-items: center;

  gap: 8px;

  margin:
    25px
    0
    24px;

  padding-bottom: 8px;

  overflow-x: auto;

  scrollbar-width: none;
}


.tamil-menu-tabs::-webkit-scrollbar {
  display: none;
}


.tamil-menu-tab {
  min-width: max-content;

  border:
    1px solid
    rgba(217,169,72,.36);

  border-radius: 50px;

  padding:
    9px
    15px;

  background:
    rgba(255,255,255,.045);

  color:
    rgba(255,255,255,.83);

  font-family:
    "Noto Sans Tamil",
    sans-serif;

  font-size: 11px;

  font-weight: 600;

  cursor: pointer;

  transition:
    .28s ease;
}


.tamil-menu-tab:hover,
.tamil-menu-tab.active {
  background: #e6aa3a;

  color: #063b30;

  border-color: #e6aa3a;

  transform:
    translateY(-2px);
}


/* =========================================================
   MENU GRID
========================================================= */

.tamil-menu-grid {
  max-height: 560px;

  padding-right: 8px;

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0,1fr)
    );

  gap: 14px;

  overflow-y: auto;

  scrollbar-width: thin;

  scrollbar-color:
    #dba53d
    rgba(255,255,255,.05);
}


.tamil-menu-grid::-webkit-scrollbar {
  width: 6px;
}


.tamil-menu-grid::-webkit-scrollbar-thumb {
  background: #dba53d;

  border-radius: 20px;
}


/* CATEGORY CARD */

.tamil-menu-card {
  position: relative;

  padding:
    19px
    19px
    18px;

  overflow: hidden;

  border:
    1px solid
    rgba(218,170,72,.20);

  border-radius: 17px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.075),
      rgba(255,255,255,.025)
    );

  transition:
    transform .28s ease,
    border-color .28s ease,
    background .28s ease;
}


.tamil-menu-card:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(225,172,63,.62);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.11),
      rgba(255,255,255,.04)
    );
}


.tamil-menu-card::before {
  content: "";

  position: absolute;

  top: -50px;
  right: -50px;

  width: 100px;
  height: 100px;

  border-radius: 50%;

  border:
    1px solid
    rgba(215,166,70,.13);
}


/* CARD TITLE */

.tamil-menu-card h4 {
  position: relative;

  margin:
    0
    0
    14px;

  padding-bottom: 11px;

  color: #e8ae40;

  font-family:
    "Noto Serif Tamil",
    serif;

  font-size: 17px;

  font-weight: 700;

  line-height: 1.4;
}


.tamil-menu-card h4::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 35px;
  height: 2px;

  border-radius: 5px;

  background: #dba53d;
}


/* ITEMS */

.tamil-menu-items {
  display: grid;

  gap: 8px;
}


.tamil-menu-item {
  position: relative;

  padding-left: 15px;

  color:
    rgba(255,255,255,.88);

  font-family:
    "Noto Sans Tamil",
    sans-serif;

  font-size: 12px;

  line-height: 1.55;
}


.tamil-menu-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: .67em;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #e6aa3a;

  box-shadow:
    0 0 0 3px
    rgba(230,170,58,.10);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .tamil-menu-shell {
    width:
      calc(100% - 34px);

    grid-template-columns:
      34%
      66%;
  }


  .tamil-menu-catalogue {
    padding:
      30px
      24px;
  }


  .tamil-menu-header {
    align-items: flex-start;

    flex-direction: column;
  }


  .tamil-menu-search {
    width: 100%;
  }


  .tamil-menu-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 780px) {

  .tamil-menu-section {
    padding:
      32px
      0
      45px;
  }


  .tamil-menu-shell {
    width:
      calc(100% - 22px);

    display: block;

    min-height: auto;

    border-radius: 22px;
  }


  .tamil-menu-visual {
    min-height: 560px;

    padding:
      30px
      20px
      300px;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(215,166,70,.28);
  }


  .tamil-menu-kicker {
    font-size: 11px;
  }


  .tamil-menu-visual h2 {
    font-size: 31px;
  }


  .tamil-menu-visual > p {
    font-size: 13px;

    line-height: 1.8;
  }


  .tamil-menu-main-image {
    left: -10px;
    bottom: 25px;

    width: 83%;
    height: 250px;
  }


  .tamil-menu-small-images > div {
    width: 90px;
    height: 85px;
  }


  .tamil-menu-count {
    top: auto;

    right: 18px;
    bottom: 225px;

    width: 90px;
    height: 90px;
  }


  .tamil-menu-count strong {
    font-size: 25px;
  }


  .tamil-menu-catalogue {
    padding:
      28px
      17px
      30px;
  }


  .tamil-menu-header {
    padding-bottom: 20px;
  }


  .tamil-menu-header h3 {
    font-size: 25px;
  }


  .tamil-menu-tabs {
    margin:
      20px
      0;
  }


  .tamil-menu-tab {
    padding:
      8px
      13px;

    font-size: 10px;
  }


  .tamil-menu-grid {
    max-height: 620px;

    grid-template-columns: 1fr;

    padding-right: 4px;
  }


  .tamil-menu-card {
    padding:
      17px
      16px;
  }


  .tamil-menu-card h4 {
    font-size: 16px;
  }


  .tamil-menu-item {
    font-size: 12px;
  }


  /* =========================================
   OCCASION STATS - DESKTOP CENTER FINAL
========================================= */

@media (min-width: 781px) {

    .occasion-stats-bar {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        align-items: center !important;

        padding: 18px 22px !important;
    }


    .occasion-stat {
        position: relative !important;

        width: 100% !important;
        min-width: 0 !important;

        display: grid !important;

        grid-template-columns:
            46px
            max-content !important;

        grid-template-rows:
            auto
            auto !important;

        justify-content: center !important;
        align-content: center !important;
        align-items: center !important;

        column-gap: 14px !important;
        row-gap: 3px !important;

        padding: 0 12px !important;

        height: 82px !important;
    }


    /* ICON */
    .occasion-stat-icon {
        grid-column: 1 !important;
        grid-row: 1 / 3 !important;

        width: 46px !important;
        height: 46px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;

        font-size: 29px !important;
    }


    /* 30+ / 100+ / A-Z / Thousands */
    .occasion-stat > strong {
        grid-column: 2 !important;
        grid-row: 1 !important;

        margin: 0 !important;

        font-size: 30px !important;
        line-height: 1 !important;

        white-space: nowrap !important;
        text-align: left !important;
    }


    /* Years of / Menu / Complete */
    .occasion-stat > span {
        grid-column: 2 !important;
        grid-row: 2 !important;

        margin: 0 !important;

        font-size: 10px !important;
        line-height: 1.2 !important;

        text-align: left !important;
    }


    .occasion-stat > span b {
        display: block !important;
    }


    .occasion-stat:last-child > strong {
        font-size: 29px !important;
    }


    /* DIVIDERS */
    .occasion-stat:not(:last-child)::after {
        right: 0 !important;
        top: 50% !important;

        height: 62px !important;

        transform: translateY(-50%) !important;
    }

}

/* =========================================
   FINAL HEADER FONT SIZE FIX
========================================= */

header.topbar .nav a {
    font-size: 24px !important;
    font-weight: 500 !important;
}

header.topbar .header-cta {
    font-size: 19px !important;
}

/* =========================================================
   GARLAND MOBILE RESPONSIVE RUNNING SLIDER - FINAL FIX
========================================================= */

@media (max-width: 650px) {

    /* COMPLETE SECTION */
    .garland-banner {
        position: relative !important;

        height: 760px !important;
        min-height: 760px !important;

        overflow: hidden !important;
    }


    /* CONTENT */
    .garland-copy {
        position: relative !important;

        top: auto !important;
        left: auto !important;

        width: calc(100% - 40px) !important;

        margin: 0 auto !important;
        padding-top: 135px !important;

        text-align: center !important;

        transform: none !important;

        z-index: 20 !important;
    }


    /* =====================================
       GARLAND SLIDER WINDOW
    ===================================== */

    .garland-products {
        position: absolute !important;

        top: 455px !important;
        bottom: auto !important;

        left: 0 !important;
        right: auto !important;

        width: 100% !important;
        height: 230px !important;

        overflow: hidden !important;

        display: block !important;

        z-index: 8 !important;
    }


    /* =====================================
       MOVING TRACK
    ===================================== */

    .garland-running-track {
        display: flex !important;

        width: 400% !important;
        height: 100% !important;

        align-items: center !important;

        animation:
            garlandMobileRun
            14s
            ease-in-out
            infinite !important;

        will-change: transform;
    }


    /* =====================================
       EACH PAIR = ONE MOBILE SCREEN
    ===================================== */

    .garland-pair {
        flex: 0 0 25% !important;

        width: 25% !important;
        height: 100% !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        gap: 28px !important;

        padding: 5px 22px !important;
    }


    /* =====================================
       GARLAND IMAGE
    ===================================== */

    .garland-pair img,
    .garland-products img {
        position: relative !important;

        top: 0 !important;

        width: auto !important;
        max-width: none !important;

        height: 190px !important;

        object-fit: contain !important;

        flex-shrink: 0 !important;

        transform: none !important;

        filter:
            drop-shadow(
                0 10px 10px
                rgba(70, 45, 20, 0.14)
            ) !important;
    }


    /* first garland slight difference */
    .garland-pair img:nth-child(1) {
        height: 195px !important;
    }

    /* second garland */
    .garland-pair img:nth-child(2) {
        height: 200px !important;
    }


    /* decorations safe */
    .garland-lotus {
        z-index: 25 !important;
    }

    .garland-left-leaves,
    .garland-right-leaves {
        z-index: 4 !important;
    }

}


/* =========================================================
   MOBILE GARLAND RUNNING ANIMATION
========================================================= */

@keyframes garlandMobileRun {

    /* pair 01 */
    0%,
    20% {
        transform: translate3d(0, 0, 0);
    }

    /* pair 02 */
    27%,
    47% {
        transform: translate3d(-25%, 0, 0);
    }

    /* pair 03 */
    54%,
    74% {
        transform: translate3d(-50%, 0, 0);
    }

    /* duplicate pair 01 */
    81%,
    100% {
        transform: translate3d(-75%, 0, 0);
    }
}

/* =========================================================
   GARLAND MOBILE - NO TEXT OVERLAP FINAL FIX
========================================================= */

@media (max-width: 650px) {

  /* COMPLETE SECTION */
  .garland-banner{
    position: relative !important;

    height: 790px !important;
    min-height: 790px !important;

    overflow: hidden !important;
  }


  /* TEXT ALWAYS FRONT */
  .garland-copy{
    position: relative !important;

    top: auto !important;
    left: auto !important;

    width: calc(100% - 36px) !important;

    margin: 0 auto !important;

    padding-top: 17px !important;

    text-align: center !important;

    transform: none !important;

    z-index: 30 !important;
  }


  /* HEADING */
  .garland-copy h2{
    position: relative !important;
    z-index: 31 !important;
  }


  /* DESCRIPTION */
  .garland-copy p{
    position: relative !important;

    z-index: 31 !important;

    margin-top: 20px !important;
    margin-bottom: 28px !important;
  }


  /* BUTTON */
  .garland-button{
    position: relative !important;

    z-index: 35 !important;
  }


  /* =========================================
     GARLAND IMAGE AREA
  ========================================= */

  .garland-products{
    position: absolute !important;

    /* MAIN CONTROL */
    top: 500px !important;

    bottom: auto !important;

    left: 0 !important;
    right: auto !important;

    width: 100% !important;
    height: 230px !important;

    overflow: hidden !important;

    z-index: 10 !important;
  }


  .garland-running-track{
    height: 100% !important;

    align-items: center !important;
  }


  .garland-pair{
    height: 100% !important;

    display: flex !important;

    align-items: flex-start !important;
    justify-content: center !important;

    gap: 30px !important;
  }


  /* GARLAND IMAGES */
  .garland-pair img,
  .garland-products img{
    position: relative !important;

    top: 0 !important;

    width: auto !important;
    max-width: none !important;

    height: 195px !important;

    object-fit: contain !important;

    transform: none !important;
  }


  .garland-pair img:nth-child(1){
    height: 200px !important;
  }

  .garland-pair img:nth-child(2){
    height: 205px !important;
  }

}

/* =========================================================
   FINAL CTA - MOBILE CLEAN RESPONSIVE
   HIDE KUTHU VILAKKU
========================================================= */

@media (max-width: 650px) {

    .celebration-cta {
        padding: 35px 0 !important;
    }

    .celebration-cta-card {
        width: calc(100% - 24px) !important;
        min-height: auto !important;

        display: flex !important;
        flex-direction: column !important;

        border-radius: 22px !important;

        overflow: hidden !important;
    }


@media (max-width: 650px) {

    .celebration-visual {
        display: flex !important;
        width: 100% !important;
        height: 260px !important;

        align-items: center !important;
        justify-content: center !important;

        position: relative !important;
    }

    .celebration-image-frame {
        display: block !important;

        position: relative !important;

        top: auto !important;
        left: auto !important;

        width: 190px !important;
        height: 245px !important;

        margin: 0 auto !important;

        transform: none !important;
    }

    .celebration-image-frame img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }

}


    /* =====================================
       CONTENT
    ===================================== */

    .celebration-content {
        order: 1 !important;

        width: 100% !important;

        padding:
            42px
            24px
            32px !important;

        text-align: center !important;

        transform: none !important;
    }


    /* SMALL HEADING */

    .celebration-eyebrow {
        font-size: 12px !important;

        line-height: 1.5 !important;

        letter-spacing: 1.8px !important;

        margin-bottom: 22px !important;
    }


    /* MAIN TITLE */

    .celebration-content h2 {
        font-size: 38px !important;
        line-height: 1.08 !important;

        margin: 0 !important;
    }

    .celebration-content h2 span {
        display: block !important;
    }

    .celebration-content h2 em {
        display: block !important;

        font-size: 40px !important;

        margin-top: 8px !important;
    }


    /* DESCRIPTION */

    .celebration-content > p {
        width: 100% !important;
        max-width: 310px !important;

        margin:
            24px
            auto
            28px !important;

        font-size: 15px !important;
        line-height: 1.7 !important;
    }


    /* =====================================
       BUTTONS
    ===================================== */

    .celebration-actions {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 12px !important;

        margin: 0 !important;
    }

    .celebration-btn {
        width: 100% !important;

        min-height: 54px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        font-size: 14px !important;
    }


    /* =====================================
       DIVIDER
    ===================================== */

    .celebration-divider {
        display: none !important;
    }


    /* =====================================
       FEATURES
    ===================================== */

    .celebration-features {
        order: 2 !important;

        width: 100% !important;

        padding:
            5px
            24px
            30px !important;

        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 0 !important;
    }

    .celebration-feature {
        min-height: 72px !important;

        display: flex !important;
        align-items: center !important;

        gap: 16px !important;

        padding: 14px 0 !important;
    }

    .celebration-feature-icon {
        width: 48px !important;
        height: 48px !important;

        flex: 0 0 48px !important;
    }

    .celebration-feature > span {
        font-size: 16px !important;
    }

}

/* =========================================================
   HERO VIDEO
========================================================= */

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    display: block;
}

@media (max-width: 760px) {

    .hero-video {
        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center center !important;

        display: block !important;
    }

}

/* HERO VIDEO - FINAL FIX */

.hero-media {
    position: relative !important;
    min-height: 650px !important;
    overflow: hidden !important;
}

.hero-video {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;

    z-index: 0 !important;
}

.hero-media::before {
    z-index: 1 !important;
}

/* =========================================================
   HERO VIDEO - FINAL MOBILE RESPONSIVE
========================================================= */

@media (max-width: 760px) {

    /* HERO FULL SECTION */
    .hero {
        width: 100% !important;
        overflow: hidden !important;
    }

    /* VIDEO FIRST + CONTENT SECOND */
    .hero-grid {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;
        min-height: auto !important;
    }


    /* =========================================
       VIDEO
    ========================================= */

    .hero-media {
        order: 1 !important;

        position: relative !important;

        width: 100% !important;
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;

        overflow: hidden !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-video {
        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        display: block !important;

        object-fit: cover !important;

        /* video-la எந்த பகுதி தெரியணும்னு control */
        object-position: center center !important;
    }


    /* DESKTOP LEFT FADE MOBILE-LA BOTTOM FADE */
    .hero-media::before {
        content: "" !important;

        position: absolute !important;
        z-index: 2 !important;

        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: 0 !important;

        width: 100% !important;
        height: 75px !important;

        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(253, 248, 236, 0.35) 50%,
            #fdf8ec 100%
        ) !important;

        pointer-events: none !important;
    }


    /* =========================================
       CONTENT
    ========================================= */

    .hero-copy {
        order: 2 !important;

        width: 100% !important;

        padding:
            35px
            22px
            45px !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;

        text-align: center !important;
    }


    /* 30 YEARS */

    .badge30 {
        margin:
            0
            auto
            24px !important;

        justify-content: center !important;

        font-size: 10px !important;

        line-height: 1.45 !important;

        letter-spacing: 2px !important;
    }


    /* MAIN HEADING */

    .hero h1 {
        width: 100% !important;
        max-width: 350px !important;

        margin: 0 auto !important;

        font-size: 41px !important;

        line-height: 1.02 !important;

        text-align: center !important;

        letter-spacing: -1px !important;
    }


    /* ORANGE SCRIPT */

    .hero h1 .script {
        margin-top: 10px !important;

        font-size: 36px !important;

        line-height: 1 !important;
    }


    /* DESCRIPTION */

    .hero-copy > p {
        width: 100% !important;
        max-width: 345px !important;

        margin:
            28px
            auto
            28px !important;

        font-size: 15px !important;

        line-height: 1.75 !important;

        text-align: center !important;
    }


    /* =========================================
       BUTTONS
    ========================================= */

    .hero-actions {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 12px !important;

        align-items: stretch !important;
    }

    .btn-primary,
    .btn-secondary {
        width: 100% !important;

        min-height: 54px !important;

        justify-content: center !important;
    }


    /* LOCATION */

    .hero-loc {
        justify-content: center !important;

        margin-top: 24px !important;

        font-size: 13px !important;
    }

}

/* =========================================================
   FINAL DESKTOP - ALL 6 GARLANDS BIG SIZE
========================================================= */

@media (min-width: 901px) {

    /* GARLAND DISPLAY AREA */
    .garland-products {
        left: 40% !important;
        right: 1% !important;

        height: 450px !important;

        overflow: hidden !important;
    }


    /* EACH SLIDE / PAIR */
    .garland-pair {
        height: 100% !important;

        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;

        gap: 45px !important;
    }


    /* ALL 6 GARLAND IMAGES */
    .garland-products .garland-pair img {
        width: auto !important;

        height: 400px !important;

        max-width: none !important;
        min-width: 0 !important;

        object-fit: contain !important;

        flex-shrink: 0 !important;

        position: relative !important;
        top: 20px !important;
    }


    /* FORCE FIRST IMAGE SAME BIG SIZE */
    .garland-products .garland-pair img:nth-child(1) {
        height: 400px !important;
        max-width: none !important;
    }


    /* FORCE SECOND IMAGE SAME BIG SIZE */
    .garland-products .garland-pair img:nth-child(2) {
        height: 400px !important;
        max-width: none !important;
    }

}


/* FINAL GARLAND SIZE FIX */

@media (min-width: 901px) {

  .garland-products .garland-pair img {
    height: 350px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
  }

  .garland-products .garland-pair img:nth-child(1),
  .garland-products .garland-pair img:nth-child(2) {
    height: 350px !important;
    max-width: none !important;
  }

}


/* =========================================================
   HERO DYNAMIC TEXT - PREMIUM ANIMATION
========================================================= */

.hero-changing-text {
    display: block;

    min-height: 1.15em;

    margin-top: 14px;

    color: var(--orange);

    will-change: transform, opacity, filter;
}


/* TEXT OUT */

.hero-changing-text.text-out {
    animation: heroTextOut .45s ease forwards;
}


/* TEXT IN */

.hero-changing-text.text-in {
    animation: heroTextIn .65s cubic-bezier(.22,1,.36,1) forwards;
}


@keyframes heroTextOut {

    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-18px) scale(.96);
        filter: blur(5px);
    }

}


@keyframes heroTextIn {

    0% {
        opacity: 0;
        transform: translateY(22px) scale(.96);
        filter: blur(6px);
    }

    60% {
        opacity: 1;
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

/* =========================================================
   GARLAND SECTION - BRIDE & GROOM
========================================================= */

.garland-banner {
    position: relative;
    overflow: hidden;
}






/* =========================================================
   HERO 2026 - PREMIUM CINEMATIC UPGRADE
========================================================= */

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}


/* subtle luxury background */

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 23% 38%,
            rgba(200, 162, 74, .10),
            transparent 30%
        ),
        radial-gradient(
            circle at 8% 85%,
            rgba(232, 85, 31, .05),
            transparent 26%
        );
}


.hero-grid {
    position: relative;
    z-index: 1;
}


/* =========================================================
   LEFT CONTENT - PREMIUM DEPTH
========================================================= */

.hero-copy {
    position: relative;
    overflow: hidden;
}


/* moving thin gold light */

.hero-copy::after {
    content: "";

    position: absolute;

    left: -30%;
    bottom: 70px;

    width: 50%;
    height: 1px;

    opacity: .45;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    animation:
        heroGoldSweep 7s linear infinite;

    pointer-events: none;
}


@keyframes heroGoldSweep {

    0% {
        left: -55%;
    }

    100% {
        left: 110%;
    }

}


/* =========================================================
   DECORATIVE ORBITS
========================================================= */

.hero-orbit {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    border:
        1px solid
        rgba(200, 162, 74, .16);

    animation:
        heroOrbitFloat
        7s
        ease-in-out
        infinite;
}


.hero-orbit::after {
    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 7px
        rgba(232, 85, 31, .08);
}


.hero-orbit-one {
    width: 140px;
    height: 140px;

    right: 50px;
    top: 100px;
}


.hero-orbit-one::after {
    right: 13px;
    top: 18px;
}


.hero-orbit-two {
    width: 80px;
    height: 80px;

    left: -20px;
    bottom: 100px;

    animation-delay: -3s;
}


.hero-orbit-two::after {
    left: 8px;
    bottom: 12px;
}


@keyframes heroOrbitFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-14px)
            rotate(10deg);
    }

}


/* =========================================================
   BADGE ENTRANCE
========================================================= */

.badge30 {
    animation:
        heroBadgeEnter
        .9s
        cubic-bezier(.22,1,.36,1)
        both;
}


@keyframes heroBadgeEnter {

    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   MAIN TITLE PREMIUM REVEAL
========================================================= */

.hero-dynamic-title {
    animation:
        heroTitleEnter
        1.1s
        .12s
        cubic-bezier(.22,1,.36,1)
        both;

    text-shadow:
        0 15px 40px
        rgba(15, 59, 46, .06);
}


@keyframes heroTitleEnter {

    from {
        opacity: 0;

        transform:
            translateY(35px);

        filter: blur(8px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);

        filter: blur(0);
    }

}


/* =========================================================
   ORANGE DYNAMIC TEXT
========================================================= */

.hero-changing-text {
    position: relative;

    display: block;

    width: max-content;
    max-width: 100%;

    overflow: visible;
}


.hero-changing-text::after {
    content: "";

    position: absolute;

    left: 3px;
    bottom: -7px;

    width: 45%;
    height: 3px;

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--gold),
            transparent
        );

    transform-origin: left;

    animation:
        heroScriptUnderline
        2.8s
        ease-in-out
        infinite;
}


@keyframes heroScriptUnderline {

    0%,
    100% {
        width: 20%;
        opacity: .55;
    }

    50% {
        width: 72%;
        opacity: 1;
    }

}


/* =========================================================
   DESCRIPTION ENTRANCE
========================================================= */

.hero-copy > p {
    animation:
        heroTextEnter
        .9s
        .30s
        ease
        both;
}


.hero-actions {
    animation:
        heroTextEnter
        .9s
        .44s
        ease
        both;
}


.hero-loc {
    animation:
        heroTextEnter
        .9s
        .58s
        ease
        both;
}


@keyframes heroTextEnter {

    from {
        opacity: 0;

        transform:
            translateY(18px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   BUTTON MODERN HOVER
========================================================= */

.btn-primary,
.btn-secondary {
    position: relative;

    overflow: hidden;

    isolation: isolate;
}


.btn-primary::before,
.btn-secondary::before {
    content: "";

    position: absolute;

    top: -30%;
    left: -60%;

    width: 45%;
    height: 170%;

    transform:
        rotate(20deg);

    background:
        rgba(255,255,255,.22);

    transition:
        left .55s ease;

    z-index: -1;
}


.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 125%;
}


/* =========================================================
   VIDEO SIDE - CINEMATIC
========================================================= */

.hero-media {
    position: relative;

    overflow: hidden;

    isolation: isolate;
}


.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform:
        scale(1.03);

    animation:
        heroVideoBreath
        14s
        ease-in-out
        infinite alternate;

    will-change: transform;
}


@keyframes heroVideoBreath {

    from {
        transform:
            scale(1.03)
            translate3d(0,0,0);
    }

    to {
        transform:
            scale(1.10)
            translate3d(-1.2%, -.6%, 0);
    }

}


/* image/video left blend modern */

.hero-media::before {
    width: 130px !important;

    background:
        linear-gradient(
            90deg,
            var(--cream) 0%,
            rgba(253,248,236,.95) 18%,
            rgba(253,248,236,.62) 48%,
            rgba(253,248,236,.18) 75%,
            transparent 100%
        ) !important;
}


/* dark cinematic depth */

.hero-media::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.04),
            transparent 45%,
            rgba(5,35,26,.12)
        );
}


/* =========================================================
   FLOATING VIDEO GLASS BADGE
========================================================= */

.hero-video-badge {
    position: absolute;

    z-index: 4;

    right: 28px;
    bottom: 30px;

    min-width: 300px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding:
        15px
        18px;

    border:
        1px solid
        rgba(255,255,255,.38);

    border-radius: 16px;

    color: #fff;

    background:
        rgba(6, 49, 37, .62);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.15);

    animation:
        videoBadgeFloat
        4s
        ease-in-out
        infinite;
}


.hero-video-badge-icon {
    width: 44px;
    height: 44px;

    flex:
        0 0
        44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--green);

    background:
        linear-gradient(
            135deg,
            #f6cd61,
            var(--gold)
        );

    box-shadow:
        0 8px 25px
        rgba(200,162,74,.28);
}


.hero-video-badge small {
    display: block;

    margin-bottom: 3px;

    color:
        rgba(255,255,255,.7);

    font-size: 9px;

    letter-spacing: 1.6px;
}


.hero-video-badge strong {
    display: block;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 17px;

    font-weight: 600;
}


@keyframes videoBadgeFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }

}


/* =========================================================
   VIDEO LIGHT SWEEP
========================================================= */

.hero-media .hero-video-badge::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent 30%,
            rgba(255,255,255,.10) 48%,
            transparent 65%
        );

    background-size:
        220% 100%;

    animation:
        heroGlassShine
        5s linear infinite;
}


@keyframes heroGlassShine {

    from {
        background-position:
            200% 0;
    }

    to {
        background-position:
            -200% 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .hero-orbit {
        display: none;
    }


    .hero-video {
        position: absolute;

        inset: 0;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover;

        animation:
            heroVideoBreathMobile
            12s
            ease-in-out
            infinite alternate;
    }


    @keyframes heroVideoBreathMobile {

        from {
            transform:
                scale(1.02);
        }

        to {
            transform:
                scale(1.08);
        }

    }


    .hero-video-badge {
        right: 14px;
        bottom: 15px;

        min-width: 0;

        width:
            calc(100% - 28px);

        padding:
            12px 14px;
    }


    .hero-video-badge strong {
        font-size: 14px;
    }


    .hero-video-badge small {
        font-size: 8px;
    }


    .hero-changing-text::after {
        bottom: -4px;
        height: 2px;
    }

}


/* accessibility */

@media (prefers-reduced-motion: reduce) {

    .hero *,
    .hero *::before,
    .hero *::after {
        animation:
            none !important;

        transition:
            none !important;
    }

}




/* TEXT FRONT-LA IRUKKANUM */

.garland-copy {
    position: relative !important;
    z-index: 10 !important;
}




.garland-copy{
    position:relative !important;
    z-index:10 !important;
}



/* =========================================================
   FOOTER - TWO ADDRESS FIX
========================================================= */

.footer-address {
    display: flex !important;
    align-items: flex-start !important;

    gap: 14px !important;

    margin-top: 10px;
}


/* LOCATION ICON */

.footer-address .contact-icon {
    flex: 0 0 auto;

    margin-top: 3px;
}


/* ADDRESS CONTENT */

.footer-address .address-text {
    display: flex;
    flex-direction: column;

    gap: 3px;

    line-height: 1.55;
}


/* MATHI CATERINGS / OFFICE */

.footer-address .address-text strong {
    display: block;

    margin-bottom: 2px;

    color: #fff;

    font-weight: 600;
}


/* ADDRESS EACH LINE */

.footer-address .address-text span {
    display: block;
}

@media (max-width: 600px) {

    .footer-address {
        gap: 12px !important;
    }

    .footer-address .address-text {
        font-size: 14px;
        line-height: 1.55;
    }

}


/* =========================================================
   CONTACT CARD - ADDRESS
========================================================= */

.contact-address-item {
    align-items: flex-start !important;
    margin-bottom: 24px !important;
}

.contact-address-content {
    min-width: 0;
}

.contact-address-content strong {
    margin-bottom: 7px !important;
}

.contact-address-content span {
    display: block;
    margin-bottom: 2px !important;
    line-height: 1.45 !important;
}


/* MOBILE */

@media (max-width: 600px) {

    .contact-address-item {
        grid-template-columns: 46px minmax(0, 1fr) !important;
        gap: 11px !important;
    }

    .contact-address-content span {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

}

/* =========================================================
   HERO VIDEO - CLEAN SOFT MERGE FINAL OVERRIDE
========================================================= */

.hero-media {
    position: relative !important;
    overflow: hidden !important;
}


/* VIDEO CLEAR-A IRUKKANUM */
.hero-media .hero-video {
    filter: none !important;
    opacity: 1 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
}


/* LEFT CREAM BACKGROUND → VIDEO SMOOTH MERGE */
.hero-media::before {
    content: "" !important;

    position: absolute !important;

    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: auto !important;

    width: 150px !important;

    z-index: 3 !important;
    pointer-events: none !important;

    background: linear-gradient(
        90deg,
        #fdf8ec 0%,
        rgba(253, 248, 236, 0.80) 15%,
        rgba(253, 248, 236, 0.78) 35%,
        rgba(253, 248, 236, 0.50) 55%,
        rgba(253, 248, 236, 0.22) 75%,
        rgba(253, 248, 236, 0.06) 90%,
        transparent 100%
    ) !important;
}


/* OLD DARK OVERLAY REMOVE */
.hero-media::after {
    display: none !important;
}