/* =========================================
   GLOBAL FOUNDATION
========================================= */

@font-face {
  font-family: 'Glacial Indifference';
  src: url('../fonts/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('../fonts/GlacialIndifference-Bold.otf') format('opentype');
  font-weight: 700;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('../fonts/GlacialIndifference-Italic.otf') format('opentype');
  font-style: italic;
}

@font-face {
  font-family: 'Aboreto';
  src: url('../fonts/Aboreto-Regular.ttf') format('truetype');
}
body {
  cursor: url('../images/coffee_bean.png') 16 16, auto;
}

a,
button,
.theme-btn,
input[type="submit"] {
  cursor: url('../images/coffee_bean.png') 16 16, pointer;
}
:root {
  --maroon: #52181e;
  --maroon-dark: #3d1016;
  --maroon-soft: #6a242d;
  --cream: #fff3da;
  --cream-soft: #f7eed9;
  --white: #ffffff;
  --text: #4d3032;
  --text-soft: rgba(82, 24, 30, 0.74);
  --border: rgba(82, 24, 30, 0.10);
  --shadow: 0 18px 45px rgba(32, 8, 12, 0.10);
  --heading: 'Aboreto', serif;
  --body: 'Glacial Indifference', sans-serif;

  --container: 1280px;
  --transition: 0.35s ease;

  --section-space: 110px;
  --section-space-tablet: 88px;
  --section-space-mobile: 72px;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 34px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading);
  font-weight: 400;
  letter-spacing: 0.6px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container-custom {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section-padding {
  padding: var(--section-space) 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(82, 24, 30, 0.55);
  margin-bottom: 16px;
  font-weight: 600;
}
.eyebrow.eyebrow-light{
  color:var(--cream);
}
.section-title {
  font-family: var(--heading);
  font-size: clamp(38px, 3vw, 60px);
  line-height: 1.02;
  font-weight: 500;
  color: var(--maroon);
  margin-bottom: 18px;
}

.section-title em,
.hero-title em {
  font-style: normal;
  font-weight: 400;
}

.section-text {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 670px;
  margin: 0 auto;
  line-height: 1.8;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn-cream {
  background: var(--cream);
  color: var(--maroon);
}

.btn-cream:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid rgba(255, 243, 218, 0.36);
  color: var(--cream);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--cream);
  background: rgba(255, 243, 218, 0.08);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-maroon {
  background: var(--maroon);
  color: var(--white);
}

.btn-maroon:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
}

.leaf-pattern-light,
.leaf-pattern-dark {
  position: relative;
  overflow: hidden;
}

.leaf-pattern-light::before,
.leaf-pattern-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-repeat: repeat;
}

.leaf-pattern-light > *,
.leaf-pattern-dark > * {
  position: relative;
  z-index: 1;
}

/* Light sections - soft maroon leaf pattern */
.leaf-pattern-light::before {
  background-image: url("../images/latte-pattern.webp");
  background-size: 340px auto;
  opacity: 0.035;
  filter: invert(13%) sepia(29%) saturate(2102%) hue-rotate(322deg) brightness(84%) contrast(94%);
}

/* Dark sections / footer - client gold leaf pattern */
.leaf-pattern-dark::before {
  background-image: url("../images/leaf-pattern.png");
  background-size: 360px auto;
  opacity: 0.36;
}

    /* Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
      padding: 18px 0;
      transition: var(--transition);
    }

    .site-header.scrolled {
      background: rgba(61, 16, 22, 0.94);
      backdrop-filter: blur(14px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      padding: 12px 0;
    }

    .navbar-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-height: 60px;
    }
    .brand {
        display: flex;
        align-items: center;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .nav-menu a {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: rgba(255, 243, 218, 0.85);
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 0;
      height: 1px;
      background: var(--cream);
      transition: var(--transition);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: var(--cream);
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
      width: 100%;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle i {
  font-size: 11px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 170px;
  padding: 14px 0;
  background: #fffaf5;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 99;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--maroon);
  font-size: 12px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: #4b1f26;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

/* Mobile submenu */
.mobile-submenu li a {
  font-size: 14px;
  padding: 6px 0;
  display: block;
  color: #fff3da;
}

/* FORCE HIDE MOBILE SUBMENU */
.mobile-panel .mobile-submenu {
  display: none !important;
}

/* SHOW ONLY WHEN ACTIVE */
.mobile-panel .has-dropdown.active .mobile-submenu {
  display: block !important;
}

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255, 243, 218, 0.35);
      background: transparent;
      color: var(--cream);
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      padding: 150px 0 90px;
      /* background:
        linear-gradient(rgba(16, 6, 7, 0.55), rgba(16, 6, 7, 0.62)),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      color: var(--cream); */
    }
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* video background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 0;
}

/* dark overlay (VERY IMPORTANT for readability) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(16, 6, 7, 0.65),
        rgba(16, 6, 7, 0.75)
    );
    z-index: 1;
}

/* keep content above video */
.hero-grid {
    position: relative;
    z-index: 2;
}
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 75% 40%, rgba(255, 191, 117, 0.16), transparent 32%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 50px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      max-width: 660px;
    }
/* =========================
   HERO MOBILE FIX ONLY
========================= */

@media (max-width: 1199px) and (min-width: 768px) {
  .hero {
    padding: 120px 0 70px;
  }

  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.32);
    z-index: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: end;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-card {
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .hero {
    padding: 110px 0 60px;
    align-items: flex-end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-card {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 90px 0 30px;
    align-items: flex-end;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 52px);
    line-height: 0.95;
  }

  .hero-text {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .theme-btn {
    width: 100%;
  }

  .hero-points li {
    width: 100%;
    text-align: center;
  }

  .hero-card {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 80px 0 25px;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 42px);
  }

  .hero-text {
    font-size: 13px;
  }
}
    
    .hero-eyebrow {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: rgba(255, 223, 186, 0.72);
      margin-bottom: 18px;
      font-weight: 600;
    }

    .hero-title {
      font-family: var(--heading);
      font-size: clamp(50px, 7vw, 72px);
      line-height: 0.95;
      font-weight: 500;
      margin-bottom: 20px;
      color: var(--cream);
    }

    .hero-text {
      max-width: 520px;
      color: rgba(255, 243, 218, 0.78);
      font-size: 15px;
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 42px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-points li {
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 243, 218, 0.18);
      background: rgba(255, 243, 218, 0.06);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(255, 243, 218, 0.86);
      font-weight: 600;
    }

    .hero-card {
      margin-left: auto;
      max-width: 380px;
      background: rgba(82, 24, 30, 0.72);
      border: 1px solid rgba(255, 243, 218, 0.16);
      border-radius: 34px;
      padding: 28px;
      backdrop-filter: blur(12px);
      box-shadow: 0 20px 50px rgba(7, 4, 4, 0.16);
    }

    .hero-card-title {
      font-family: var(--heading);
      font-size: 32px;
      color: var(--cream);
      margin-bottom: 10px;
      font-weight: 500;
    }

    .hero-card p {
      color: rgba(255, 243, 218, 0.70);
      font-size: 14px;
      margin-bottom: 22px;
    }

    .hero-meta {
      display: grid;
      gap: 12px;
    }

    .hero-meta-item {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 243, 218, 0.12);
      color: rgba(255, 243, 218, 0.83);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* Hours + reservation */
    .hours-reservation {
      padding: 95px 0;
      background: var(--white);
    }

    .hours-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 60px;
      align-items: start;
    }

    .hours-box h2 {
      font-family: var(--heading);
      color: var(--maroon);
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1;
      font-weight: 500;
      margin-bottom: 14px;
    }

    .hours-box > p {
      max-width: 620px;
      color: var(--text-soft);
      margin-bottom: 34px;
      font-size: 15px;
    }

    .hours-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px 40px;
    }

    .hours-block {
      border-top: 1px solid var(--border);
      padding-top: 18px;
    }

    .hours-block h4 {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      color: rgba(82, 24, 30, 0.56);
      margin-bottom: 16px;
      font-weight: 700;
      font-style: var(--body);
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 10px;
      font-size: 14px;
      color: var(--text-soft);
    }

    .hours-row strong {
      color: var(--maroon);
      font-weight: 600;
    }

    .hours-note {
      grid-column: 1 / -1;
      color: rgba(82, 24, 30, 0.52);
      font-family: var(--heading);
      font-size: 20px;
      margin-top: 8px;
    }
.reservation-highlights {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 3px 0;
  border-top: 1px solid rgba(82, 24, 30, 0.12);
}

.highlight-item span {
  font-family: var(--heading);
  font-size: 18px;
  color: #52181e;
  line-height: 1;
  min-width: 28px;
}

.highlight-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(60, 35, 28, 0.78);
}
 .arch-card {
  width: 100%;
  max-width: 430px;
  min-height: 600px;
  margin: 0 auto;
  background: #52181e;
  border-radius: 200px 200px 0px 0px;
  overflow: hidden;
  position: relative;
  padding: 64px 16px 18px;
  box-shadow: 0 18px 45px rgba(32, 8, 12, 0.12);
}

/* inner border arch */
.arch-card::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(255, 243, 218, 0.12);
  border-radius: 185px 185px 10px 10px;
  pointer-events: none;
  z-index: 0;
}

.arch-card > * {
  position: relative;
  z-index: 1;
}

.arch-card .eyebrow-small {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 243, 218, 0.42);
  margin-bottom: 10px;
  font-weight: 600;
}

.arch-card h3 {
  font-family: var(--heading);
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: 0.6px;
  color: var(--cream);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 500;
  font-style: normal;
}

.arch-card p {
  text-align: center;
  color: rgba(255, 243, 218, 0.66);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 24px;
  padding: 0 12px;
}

.booking-form {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.booking-form .field {
  width: 100%;
  margin-bottom: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 0;
}

.arch-card .field input,
.arch-card .field select,
.arch-card .field textarea,
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 243, 218, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff3da;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.arch-card .field textarea,
.booking-form textarea {
  min-height: 120px;
  height: auto;
  padding: 14px 16px;
  resize: vertical;
}

.arch-card .field input::placeholder,
.arch-card .field textarea::placeholder,
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 243, 218, 0.68);
  opacity: 1;
}

.arch-card .field select,
.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: rgba(255, 243, 218, 0.78);
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 48px;
}

.arch-card .field select:valid,
.booking-form select:valid {
  color: #fff3da;
}

.arch-card .field select option,
.booking-form select option {
  color: #4b1f26;
  background: #fffaf2;
}

.arch-card .field input:focus,
.arch-card .field select:focus,
.arch-card .field textarea:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(255, 243, 218, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.arch-card .field input[type="date"],
.arch-card .field input[type="time"] {
  color: #fff3da;
}

.arch-card .field input[type="date"]::-webkit-calendar-picker-indicator,
.arch-card .field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(92%) sepia(18%) saturate(319%) hue-rotate(327deg) brightness(103%) contrast(97%);
  cursor: pointer;
}
.arch-card .dt-placeholder {
  display: none;
}
@media (max-width: 520px) {

  .arch-card .date-time-field {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: none;
    overflow: hidden;
  }

  .arch-card .date-time-field input[type="date"],
  .arch-card .date-time-field input[type="time"] {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .arch-card .dt-placeholder {
    display: block;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 243, 218, 0.7);
    pointer-events: none;
    z-index: 2;
  }

  .arch-card .date-time-field:focus-within .dt-placeholder,
  .arch-card .date-time-field.has-value .dt-placeholder {
    display: none;
  }

}
.arch-card .theme-btn.btn-cream {
  width: 100%;
  min-height: 40px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-top: 12px !important;
}

/* mobile */
@media (max-width: 575px) {

  .arch-card::before {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 145px 145px 8px 8px;
  }

  .arch-card h3 {
    font-size: 28px;
    line-height: 1.2;
  }

  .arch-card p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 8px;
  }

  .booking-form {
    padding: 0 4px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .booking-form .field {
    margin-bottom: 12px;
  }

  .booking-form .field-row{
    margin-bottom: 0px;
  }
  
  .arch-card .field input,
  .arch-card .field select,
  .arch-card .field textarea,
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    height: 46px;
    font-size: 14px;
    padding: 0 14px;
    border-radius: 12px;
  }

  .arch-card .field textarea,
  .booking-form textarea {
    min-height: 110px;
    height: auto;
    padding: 12px 14px;
  }

  .arch-card .theme-btn.btn-cream {
    min-height: 50px;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-top: 10px !important;
  }
}
    /* About */
    .about-section {
      background: var(--cream-soft);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: center;
    }

    .about-images {
      display: grid;
      grid-template-columns: 0.9fr;
      gap: 20px;
      align-items: end;
      justify-content: center;
    }

    .about-image-main,
    .about-image-arch,
    .feature-card-image,
    .gallery-card,
    .contact-image {
      overflow: hidden;
      position: relative;
    }

    .about-image-main img,
    .about-image-arch img,
    .feature-card-image img,
    .gallery-card img,
    .contact-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.6s ease;
    }

    .about-image-main:hover img,
    .about-image-arch:hover img,
    .feature-card:hover .feature-card-image img,
    .gallery-card:hover img,
    .contact-image:hover img {
      transform: scale(1.06);
    }

    .about-image-main {
      width:100%;
      max-width: 460px;
      height: 560px;
      border-radius: 250px 250px 30px 30px;
      box-shadow: var(--shadow);
    }

    .about-image-arch {
      height: 440px;
      border-radius: 30px;
      box-shadow: var(--shadow);
    }

    .about-copy h3 {
      font-family: var(--heading);
      font-size: clamp(38px, 3vw, 58px);
      line-height: 0.98;
      color: var(--maroon);
      margin-bottom: 18px;
      font-weight: 500;
    }

    .about-copy p {
      color: var(--text-soft);
      margin-bottom: 18px;
      font-size: 15px;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .stat-box {
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(82, 24, 30, 0.08);
      border-radius: 22px;
      padding: 22px 18px;
      text-align: center;
    }

    .stat-box strong {
      display: block;
      font-family: var(--heading);
      font-size: 36px;
      color: var(--maroon);
      line-height: 1;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .stat-box span {
      display: block;
      font-size: 11px;
      color: rgba(82, 24, 30, 0.58);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 600;
    }

    /* Signature offerings */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .feature-card {
      background: var(--white);
      border: 1px solid rgba(82, 24, 30, 0.08);
      border-radius: 30px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-6px);
    }

    .feature-card-image {
      height: 290px;
    }

    .feature-card-body {
      padding: 24px 22px 24px;
    }

    .feature-kicker {
      display: inline-block;
      margin-bottom: 10px;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(82, 24, 30, 0.52);
      font-weight: 700;
    }

    .feature-card h4 {
      font-family: var(--heading);
      font-size: 32px;
      color: var(--maroon);
      line-height: 1;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .feature-card p {
      color: var(--text-soft);
      font-size: 14px;
      margin-bottom: 16px;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--maroon);
    }

    /* Philosophy */
    .philosophy-section {
      background: var(--white);
    }

    .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .philosophy-card {
      position: relative;
      min-height: 470px;
      border-radius: 34px;
      overflow: hidden;
      color: var(--cream);
      box-shadow: var(--shadow);
    }

    .philosophy-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(18, 6, 7, 0.92), rgba(18, 6, 7, 0.16));
      z-index: 1;
    }

    .philosophy-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.6s ease;
    }

    .philosophy-card:hover img {
      transform: scale(1.06);
    }

    .philosophy-content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      padding: 26px;
    }

    .philosophy-tag {
      display: inline-block;
      margin-bottom: 10px;
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(255, 219, 181, 0.72);
      font-weight: 700;
    }

    .philosophy-content h4 {
      font-family: var(--heading);
      font-size: 34px;
      line-height: 1;
      margin-bottom: 10px;
      color: var(--cream);
      font-weight: 500;
    }

    .philosophy-content p {
      color: rgba(255, 243, 218, 0.74);
      font-size: 14px;
    }

    /* Gallery */
    .gallery-section {
  background: var(--cream-soft);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 10px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}
@media (max-width: 767.98px) {
  .gallery-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-card,
  .gallery-card.large {
    flex: 0 0 82%;
    height: 380px;
    scroll-snap-align: start;
  }

  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

    /* Newsletter */
    .newsletter-section {
      color: var(--cream);
      background: var(--white);
    }

    .newsletter-wrap {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      padding: 95px 0;
    }

    .newsletter-wrap .section-title,
    .newsletter-wrap .section-text {
      color: var(--maroon);
    }

    .newsletter-wrap .section-text {
      color: var(--text-soft);
    }

    .newsletter-form {
      margin-top: 30px;
      display: flex;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
       justify-content: center;  
  align-items: center;
  gap: 15px;                 
  flex-wrap: wrap;           
  margin-top: 20px;
    }

    .newsletter-form input {
      flex: 1;
      min-height: 56px;
      border-radius: 999px;
      border: 1px solid rgba(255, 243, 218, 0.20);
      background: rgba(255, 243, 218, 0.06);
      color: var(--cream);
      padding: 0 22px;
      outline: none;
    }

    .newsletter-form input::placeholder {
      color: rgba(255, 243, 218, 0.34);
    }
    /* Amenities */
    .amenities {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      padding: 28px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--white);
    }

    .amenity {
      text-align: center;
      padding: 18px 16px;
    }

    .amenity i {
      font-size: 22px;
      color: var(--maroon);
      margin-bottom: 10px;
      display: inline-block;
    }

    .amenity h5 {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--maroon);
      margin-bottom: 6px;
      font-weight: 700;
    }

    .amenity p {
      font-size: 13px;
      color: rgba(82, 24, 30, 0.56);
      font-family: var(--heading);
    }

    /* Find us */
 .contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.contact-form-left {
  max-width: 420px;
  width: 100%;
  justify-self: center;
  padding: 58px 42px 46px;
  min-height: auto;
}

.contact-form-left.arch-card {
  height: auto;
}

.contact-form-left .booking-form {
  margin-top: 26px;
}

.contact-form-left .field{
  margin-bottom: 12px;
}

.contact-form-left input,
.contact-form-left select {
  height: 46px;
}

.contact-form-left h3 {
  font-size: 34px;
}

.contact-form-left p {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-left {
    max-width: 350px;
    padding: 45px 12px 16px;
  }
}


    .contact-info {
      background: var(--cream);
      padding: 40px 70px;
    }

    .contact-heading {
      font-family: var(--heading);
      font-size: clamp(40px, 4vw, 60px);
      color: var(--maroon);
      line-height: 0.98;
      font-weight: 500;
      margin-bottom: 16px;
    }

    .contact-lead {
      color: var(--text-soft);
      font-size: 15px;
      max-width: 560px;
      margin-bottom: 34px;
    }

    .contact-block {
      padding-top: 20px;
      border-top: 1px solid rgba(82, 24, 30, 0.08);
      margin-bottom: 22px;
    }

    .contact-label {
      display: inline-block;
      margin-bottom: 12px;
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(82, 24, 30, 0.50);
      font-weight: 700;
    }

    .contact-block h5 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 6px;
      color: var(--maroon);
      font-weight: 700;
    }

    .contact-block p,
    .contact-block a {
      font-size: 15px;
      color: var(--text-soft);
    }

    .contact-hour {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 8px;
    }

    .upcoming-cafe-slider {
  max-width: 1050px;
  margin: 45px auto 0;
}

.upcoming-cafe-card {
  position: relative;
  height: 500px;
  border-radius: 34px;
  overflow: hidden;
}

.upcoming-cafe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upcoming-cafe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 10, 14, 0.88), rgba(35, 10, 14, 0.28), transparent);
}

.upcoming-cafe-content {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 45px;
  z-index: 2;
  color: var(--cream);
}

.upcoming-cafe-content h3 {
  font-family: var(--heading);
  font-size: var(--fs-section);
  color: var(--cream);
  margin: 12px 0;
}

.upcoming-cafe-content p {
  max-width: 560px;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}
    /* Footer */
.footer-col h6 {
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
    .site-footer {
      background: var(--maroon);
      color: var(--cream);
      padding: 64px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 38px;
      margin-bottom: 26px;
      border-bottom: 1px solid rgba(255, 243, 218, 0.12);
    }

    .footer-brand-sub {
      display: inline-block;
      margin-bottom: 16px;
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255, 243, 218, 0.55);
    }

    .footer-brand p,
    .footer-col a,
    .footer-copy {
      color: rgba(255, 243, 218, 0.68);
      font-size: 14px;
    }

    .footer-col h6 {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      margin-bottom: 16px;
      color: rgba(255, 243, 218, 0.46);
      font-weight: 700;
    }

    .footer-col li + li {
      margin-top: 10px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 243, 218, 0.18);
      display: grid;
      place-items: center;
      font-size: 14px;
      color: rgba(255, 243, 218, 0.72);
      transition: var(--transition);
    }

    .footer-social a:hover {
      color: var(--cream);
      border-color: var(--cream);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 1199px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 280px; }
      .gallery-card.large { grid-row: 1 / span 2; }
      .philosophy-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .contact-section { grid-template-columns: 1fr; }
      .contact-image { min-height: 380px; }
      .hours-grid,
      .about-grid,
      .hero-grid { grid-template-columns: 1fr; }
      .about-copy { order: -1; }
      .hero-card { margin-left: 0; max-width: 100%; }
    }

    .logo-img {
      height: 45px;
      transform: scale(1.4);
      transform-origin: left center;
    }

    @media (min-width: 992px) {
      .mobile-panel {
        display: none;
      }
    }

    @media (max-width: 991px) {
      .logo-img { height: 35px; }

      .section-padding { padding: var(--section-space-tablet) 0; }

      .nav-menu,
      .nav-right .theme-btn { display: none; }

      .menu-toggle { display: inline-flex; }

      .mobile-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(92vw, 360px);
        height: 100vh;
        background: rgba(61, 16, 22, 0.98);
        backdrop-filter: blur(14px);
        z-index: 1000;
        padding: 90px 24px 24px;
        transition: 0.35s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
      }

      .mobile-panel.open { right: 0; }

      .mobile-panel ul { display: grid; gap: 8px; }

      .mobile-panel a {
        display: block;
        padding: 14px 0;
        color: var(--cream);
        border-bottom: 1px solid rgba(255,243,218,0.10);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-weight: 600;
      }

      .mobile-panel .theme-btn {
        width: 100%;
        margin-top: 20px;
        color: var(--maroon);
        text-align: center;
      }

      .mobile-close {
        position: absolute;
        top: 20px;
        right: 18px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(255,243,218,0.20);
        background: transparent;
        color: var(--cream);
        cursor: pointer;
        font-size: 18px;
      }

      .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 998;
      }

      .overlay.show {
        opacity: 1;
        visibility: visible;
      }

      .hero {
        min-height: auto;
        padding: 110px 0 60px;
        align-items: flex-end;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .hours-list,
      .about-stats,
      .amenities,
      .contact-hour {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 767px) {
      .container-custom { width: min(var(--container), calc(100% - 24px)); }
      .section-padding { padding: var(--section-space-mobile) 0; }

      .hero {
        padding: 90px 0 30px;
        align-items: flex-end;
      }

      .hero-title { font-size: clamp(38px, 10vw, 52px); line-height: 1; }
      .hero-text { font-size: 14px; margin-bottom: 18px; }

      .hero-actions { flex-direction: column; gap: 10px; }
      .hero-actions .theme-btn { width: 100%; }
      .hero-points li { width: 100%; text-align: center; }
      .hero-card { display: none; }

      .hours-list,
      .features-grid,
      .amenities,
      .contact-hour,
      .about-stats,
      .field-row,
      .footer-grid,
      .gallery-grid,
      .grid-2,
      .grid-3 {
        grid-template-columns: 1fr;
      }

      .gallery-grid { grid-auto-rows: auto; }
      .gallery-card.large { grid-row: auto; }
      .gallery-card { min-height: 280px; }

      .about-images { grid-template-columns: 1fr; }
      .about-image-main { height: 340px; }
      .about-image-arch { height: 340px; }

      .contact-info { padding: 60px 22px; }
      .newsletter-form { flex-direction: column; }
      .newsletter-form .theme-btn { width: 100%; }
      .footer-bottom { flex-direction: column; }
      .hero-card { padding: 22px; }
    }

    @media (max-width: 575px) {
      .site-header { padding: 12px 0; }
      .logo-img { height: 30px; }

      .hero { padding: 80px 0 25px; }
      .hero-title,
      .section-title,
      .about-copy h3,
      .contact-heading,
      .hours-box h2 { line-height: 1.05; }
      .about-copy {text-align: center;}
      .hero-title { font-size: clamp(34px, 9vw, 42px); }
      .section-title { font-size: 36px; }

      .philosophy-card { min-height: 380px; }
      .feature-card-image { height: 240px; }
      .hours-reservation { padding: 72px 0; }
    }

 /* Inner hero */
    .inner-hero {
      position: relative;
      min-height: 86vh;
      display: flex;
      align-items: flex-end;
      padding: 170px 0 90px;
      color: var(--cream);
      background:
        linear-gradient(rgba(16, 6, 7, 0.56), rgba(16, 6, 7, 0.72)),
        url('https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      overflow: hidden;
    }

    .inner-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 78% 35%, rgba(255, 191, 117, 0.15), transparent 28%);
      pointer-events: none;
    }

    .inner-hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
    }
    .inner-hero-content .eyebrow{
      color: rgba(255, 243, 218, 0.82);
    }
    .inner-hero-title {
      font-family: var(--heading);
      font-size: clamp(50px, 7vw, 86px);
      line-height: 0.95;
      font-weight: 500;
      margin-bottom: 18px;
      color: var(--cream);
    }
    .inner-hero-title em, em{
      font-style: normal;
    }
    .inner-hero-text {
      font-size: 16px;
      color: rgba(255, 243, 218, 0.82);
      max-width: 560px;
    }

    /* Shared grids */
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
    }
    /* Tablet */
    @media (max-width: 991px) {
      .grid-2 {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    /* Mobile */
    @media (max-width: 767px) {
      .grid-2 {
        gap: 24px;
      }
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    /* Mobile */
    @media (max-width: 767px) {
      .grid-3 {
        grid-template-columns: 1fr;
        gap: 18px;
      }
    }
    .image-card,
    .image-arch,
    .story-photo,
    .story-arch,
    .team-card,
    .arch-gallery-card {
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
    }

    .image-card img,
    .image-arch img,
    .story-photo img,
    .story-arch img,
    .team-card img,
    .arch-gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.6s ease;
    }

    .image-card:hover img,
    .image-arch:hover img,
    .story-photo:hover img,
    .story-arch:hover img,
    .team-card:hover img,
    .arch-gallery-card:hover img { transform: scale(1.06); }

    /* Story */
    .story-photo {
      height: 560px;
      border-radius: 30px;
    }

    .story-arch {
      height: 440px;
      border-radius: 30px;
    }
        @media (max-width: 767px) {
      .story-photo {
        height: 440px;
      }
    }
    .story-images {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 20px;
      align-items: end;
    }

    .story-copy h2,
    .values-copy h2,
    .experience-copy h2,
    .craft-copy h2,
    .cta-box h2 {
      font-family: var(--heading);
      font-size: clamp(36px, 4vw, 58px);
      line-height: 0.98;
      color: var(--maroon);
      margin-bottom: 18px;
      font-weight: 500;
    }

    .story-copy p,
    .values-copy p,
    .experience-copy p,
    .craft-copy p {
      color: var(--text-soft);
      margin-bottom: 18px;
      font-size: 15px;
    }

    .story-highlights {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .story-stat {
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(82, 24, 30, 0.08);
      border-radius: 22px;
      padding: 22px 16px;
      text-align: center;
    }

    .story-stat strong {
      display: block;
      font-family: var(--heading);
      font-size: 36px;
      color: var(--maroon);
      line-height: 1;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .story-stat span {
      display: block;
      font-size: 11px;
      color: rgba(82, 24, 30, 0.58);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 600;
    }

     .global-cuisine-grid {
      align-items: center;
      gap: 70px;
      padding: 50px 0;
    }

    .global-cuisine-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .global-cuisine-arch {
      width: 100%;
      max-width: 460px;
      height: 560px;
      overflow: hidden;
      border-radius: 230px 230px 24px 24px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
      transform: translateY(-20px);
    }

    .global-cuisine-arch img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

    .global-cuisine-arch:hover img {
        transform: scale(1.05);
    }

    @media (max-width: 991px) {
      .global-cuisine-grid {
        gap: 45px;
        padding: 80px 0;
      }

      .global-cuisine-image img {
        height: 440px;
      }
    }
    
    @media (max-width: 767px) {
      .global-cuisine-arch {
        max-width: 320px;
        height: 340px;
        transform: none;
      }
      .global-cuisine-grid {
        padding: 65px 0;
      }

      .global-cuisine-image img {
        height: 340px;
      }
    } 


    /* Experience */
    .experience-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 52px;
      align-items: center;
    }

    .experience-copy .feature-list {
      margin-top: 26px;
      display: grid;
      gap: 14px;
    }

    .feature-line {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(82, 24, 30, 0.08);
    }

    .feature-line i {
      color: var(--maroon);
      font-size: 18px;
      margin-top: 2px;
    }

    .feature-line h5 {
      font-size: 14px;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--maroon);
      margin-bottom: 4px;
      font-weight: 700;
    }

    .feature-line p {
      font-size: 14px;
      color: var(--text-soft);
      margin: 0;
    }

    .image-card.large-visual {
      height: 560px;
      border-radius: 30px;
    }

    /* Architecture section */
    .arch-showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
      align-items: end;
    }

  .arch-frame-card {
    background: var(--maroon);
    border-radius: 30px;
    padding: 60px 30px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
      box-shadow: var(--shadow);
    }

    .arch-frame-card::before {
      content: "";
      position: absolute;
      top: 16px;
      left: 16px;
      right: 16px;
      bottom: 16px;
      border: 1px solid rgba(255,243,218,0.12);
      border-radius: 182px 182px 10px 10px;
      pointer-events: none;
    }

    .arch-frame-card h3 {
      font-family: var(--heading);
      font-size: 48px;
      line-height: 0.96;
      color: var(--cream);
      margin-bottom: 14px;
      font-weight: 500;
    }

    .arch-frame-card p {
      color: rgba(255,243,218,0.74);
      font-size: 15px;
      margin-bottom: 26px;
      max-width: 500px;
    }

    .arch-points {
      display: grid;
      gap: 14px;
    }

    .arch-points li {
      display: flex;
      gap: 12px;
      color: rgba(255,243,218,0.82);
      font-size: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,243,218,0.10);
    }

    .arch-points i { margin-top: 3px; }

    .arch-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: end;
    }

    .arch-gallery-card:nth-child(2) {
      height: 260px;
      border-radius: 30px;
    }

    .arch-gallery-card:nth-child(1) {
      height: 340px;
      border-radius:30px;
      align-self: end;
    }
@media screen and (max-width:576px) {
  .arch-showcase {
      display: grid;
      grid-template-columns: 1fr;
      gap: 26px;
      align-items: end;
    }
  .arch-frame-card{
        padding: 70px 40px 30px;

  } 
  .arch-frame-card h3{
    font-size: 36px;
  } 
  .arch-gallery-card:nth-child(1) {
    height: 260px;
  }
}
    /* Craft & team */
    .craft-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2px;
      align-items: center;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top:2px;
    }

    .team-card {
      background: var(--white);
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(82, 24, 30, 0.08);
      box-shadow: var(--shadow);
    }

    .team-card .team-image {
      height: 320px;
    }

    .team-card-body {
      padding: 20px 20px 22px;
    }

    .team-card h5 {
      font-family: var(--heading);
      font-size: 32px;
      color: var(--maroon);
      line-height: 1;
      margin-bottom: 6px;
      font-weight: 500;
    }

    .team-role {
      display: inline-block;
      margin-bottom: 8px;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(82, 24, 30, 0.50);
      font-weight: 700;
    }

    .team-card p {
      font-size: 14px;
      color: var(--text-soft);
      margin: 0;
    }
    @media screen and (max-width:576px) {
      .craft-grid {
       grid-template-columns: 1fr;
       gap: 5px;
      }
      .team-grid{
       grid-template-columns: repeat(1, 1fr);

      }

    }
    /* CTA */
    .cta-box {
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
      padding: 76px 48px;
      border-radius: 36px;
      background: linear-gradient(180deg, rgba(82,24,30,0.96), rgba(61,16,22,0.98));
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      color: var(--cream);
      margin-bottom: 12px;
    }

    .cta-box p {
      color: rgba(255,243,218,0.76);
      font-size: 15px;
      max-width: 560px;
      margin: 0 auto 24px;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }
/* OUR PHILOSOPHY SECTION */
.philosophy-section {
  background: var(--white);
}

.philosophy-section .section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.philosophy-section .eyebrow {
  color: rgba(82, 24, 30, 0.45);
}

.philosophy-section .section-title {
  color: var(--maroon);
}

.philosophy-section .section-text {
  color: rgba(82, 24, 30, 0.62);
}

/* cards */
.value-card {
  background: var(--white);
  border: 1px solid rgba(82, 24, 30, 0.08);
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow: 0 12px 30px rgba(32, 8, 12, 0.06);
  transition: 0.35s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(32, 8, 12, 0.10);
}

.value-card i {
  font-size: 24px;
  color: var(--maroon);
  margin-bottom: 16px;
  display: inline-block;
}

.value-card h4 {
  font-family: var(--heading);
  font-size: 34px;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 500;
}

.value-card p {
  color: rgba(82, 24, 30, 0.70);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}


  .reservation-hero {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
  }

  .reservation-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(63, 20, 28, 0.76), rgba(63, 20, 28, 0.72)),
      url('../images/bg/reserve_your_table.png') center/cover no-repeat;
    z-index: 0;
  }

  .reservation-hero .container-custom {
    position: relative;
    z-index: 2;
  }

  .reservation-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: #fff7ef;
  }

  .reservation-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f0d1bc;
    margin-bottom: 14px;
    font-weight: 500;
  }

  .reservation-hero-content h1 {
    font-family: var(--heading);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    margin-bottom: 18px;
    color: #fff7ef;
  }

  .reservation-hero-content p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 247, 239, 0.88);
    font-size: 16px;
    line-height: 1.9;
  }

  .reservation-main {
    padding: 90px 0 100px;
    position: relative;
  }

  .reservation-wrap {
    margin-top: -70px;
    position: relative;
    z-index: 3;
  }

  .reservation-card {
    background: #fffaf5;
    border: 1px solid rgba(122, 49, 59, 0.08);
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(74, 20, 32, 0.12);
    overflow: hidden;
  }

  .reservation-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 100%;
  }

  .reservation-form-side {
    padding: 42px;
  }

  .reservation-info-side {
    background: linear-gradient(180deg, #5a232c 0%, #6d2c36 100%);
    color: #fff7ef;
    padding: 42px 34px;
    position: relative;
    overflow: hidden;
  }

  .reservation-info-side::before,
  .reservation-info-side::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 240px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 180px 180px 0 0;
    opacity: 0.55;
  }

  .reservation-info-side::before {
    top: -30px;
    right: -60px;
  }

  .reservation-info-side::after {
    bottom: -40px;
    left: -60px;
  }

  .reservation-head {
    margin-bottom: 30px;
  }

  .reservation-head h2 {
    font-family: var(--heading);
    font-size: clamp(34px, 4vw, 54px);
    color: #5a232c;
    margin-bottom: 12px;
  }

  .reservation-head p {
    margin: 0;
    color: #746669;
    line-height: 1.9;
    font-size: 15px;
  }

  .reservation-form .form-group {
    margin-bottom: 18px;
  }

  .reservation-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #5a232c;
    letter-spacing: 0.3px;
  }

  .reservation-form .form-control,
  .reservation-form .form-select,
  .reservation-form textarea {
    width: 100%;
    border: 1px solid rgba(90, 35, 44, 0.14);
    background: #fff;
    color: #5a232c;
    border-radius: 16px;
    padding: 14px 16px;
    min-height: 54px;
    font-size: 14px;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  .reservation-form textarea {
    min-height: 130px;
    resize: vertical;
  }

  .reservation-form .form-control:focus,
  .reservation-form .form-select:focus,
  .reservation-form textarea:focus {
    border-color: #7a313b;
    box-shadow: 0 0 0 0.2rem rgba(122, 49, 59, 0.10);
  }

  .reservation-note {
    margin-top: 6px;
    font-size: 12px;
    color: #8a7c80;
    line-height: 1.7;
  }

  .reservation-submit {
    margin-top: 10px;
  }

  .reservation-submit .theme-btn {
    min-width: 220px;
  }

  .reservation-info-top {
    position: relative;
    z-index: 2;
  }

  .reservation-info-top h3 {
    font-family: var(--heading);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    margin-bottom: 14px;
    color: #fff7ef;
  }

  .reservation-info-top p {
    color: rgba(255,247,239,0.84);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 28px;
  }

  .reservation-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 2;
  }

  .reservation-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    backdrop-filter: blur(4px);
  }

  .reservation-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,247,239,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #fff7ef;
  }

  .reservation-info-text h6 {
    margin: 0 0 5px;
    font-size: 15px;
    color: #fff7ef;
    font-weight: 600;
  }

  .reservation-info-text p,
  .reservation-info-text a {
    margin: 0;
    color: rgba(255,247,239,0.82);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
  }

  .reservation-hours {
    margin-top: 30px;
    position: relative;
    z-index: 2;
  }

  .reservation-hours h5 {
    font-family: var(--heading);
    font-size: 28px;
    color: #fff7ef;
    margin-bottom: 14px;
  }

  .reservation-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .reservation-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,247,239,0.86);
    font-size: 14px;
  }

  .reservation-bottom-note {
    margin-top: 30px;
    padding: 18px 20px;
    background: #fbf1eb;
    border: 1px solid rgba(122, 49, 59, 0.08);
    border-radius: 18px;
    color: #765d62;
    font-size: 13px;
    line-height: 1.8;
  }

  .reservation-bottom-note strong {
    color: #5a232c;
  }

  @media (max-width: 1199.98px) {
    .reservation-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 991.98px) {
    .reservation-hero {
      padding: 135px 0 80px;
    }

    .reservation-form-side,
    .reservation-info-side {
      padding: 32px 24px;
    }
  }

  @media (max-width: 767.98px) {
    .reservation-main {
      padding: 70px 0 80px;
    }

    .reservation-wrap {
      margin-top: -50px;
    }

    .reservation-form-side,
    .reservation-info-side {
      padding: 26px 18px;
    }

    .reservation-submit .theme-btn {
      width: 100%;
      min-width: auto;
    }
  }
  
  .experience-hero {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
  }

  .experience-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(63, 20, 28, 0.78), rgba(63, 20, 28, 0.72)),
      url('../images/bg/chocolate-hero.webp') center/cover no-repeat;
    z-index: 0;
  }
  .experience-hero.cuisine::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(63, 20, 28, 0.78), rgba(63, 20, 28, 0.72)),
      url('../images/bg/global-cuisine-hero.webp') center/cover no-repeat !important;
    z-index: 0;
  }
  .experience-hero .container-custom {
    position: relative;
    z-index: 2;
  }

  .experience-hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: #fff7ef;
  }

  .experience-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f0d1bc;
    margin-bottom: 14px;
    font-weight: 500;
  }

  .experience-hero-content h1 {
    font-family: var(--heading);
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    margin-bottom: 18px;
    color: #fff7ef;
  }

  .experience-hero-content p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 247, 239, 0.88);
    font-size: 16px;
    line-height: 1.9;
  }

  .experience-intro-card {
    max-width: 980px;
    background: #fffaf5;
    border-radius: 34px;
    padding: 42px 38px;
    margin: -70px auto 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 24px 70px rgba(74, 20, 32, 0.12);
    border: 1px solid rgba(122, 49, 59, 0.08);
    text-align: center;
    margin-bottom: 34px;
  }

  .experience-intro-card h2 {
    font-family: var(--heading);
    font-size: clamp(34px, 4vw, 56px);
    color: #5a232c;
    margin-bottom: 12px;
  }

  .experience-intro-card p {
    max-width: 780px;
    margin: 0 auto;
    color: #746669;
    line-height: 1.9;
    font-size: 15px;
  }

  .experience-block {
    background: #fffaf5;
    border: 1px solid rgba(122, 49, 59, 0.08);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(74, 20, 32, 0.08);
    margin-bottom: 28px;
  }

  .experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .experience-grid.reverse .experience-image-side {
    order: 2;
  }

  .experience-grid.reverse .experience-content-side {
    order: 1;
  }

  .experience-image-side {
    position: relative;
    min-height: 100%;
    height:400px;

   }

  .experience-image-side img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
  }

  .experience-content-side {
    padding: 48px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .experience-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fbefe8;
    border: 1px solid rgba(122, 49, 59, 0.10);
    color: #7a313b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 18px;
  }

  .experience-content-side h3 {
    font-family: var(--heading);
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.05;
    color: #5a232c;
    margin-bottom: 14px;
  }

  .experience-content-side p {
    color: #75676a;
    font-size: 15px;
    line-height: 1.95;
    margin-bottom: 20px;
  }

  .experience-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
  }

  .experience-features span {
    background: #fbf1eb;
    color: #7a313b;
    border: 1px solid rgba(122, 49, 59, 0.12);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .experience-main{
    background-image: url("../images/leaf-pattern.png");
    background-repeat: repeat;
    background-size: 420px;
    padding: 0 0 100px;
  }
  .experience-btn-wrap {
    margin-top: 4px;
  }

  .experience-highlight {
    margin-top: 60px;
    background: linear-gradient(135deg, #5a232c, #7a313b);
    border-radius: 34px;
    padding: 54px 28px;
    text-align: center;
    color: #fff7ef;
    position: relative;
    overflow: hidden;
  }

  .experience-highlight::before,
  .experience-highlight::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 240px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 180px 180px 0 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .experience-highlight::before {
    left: -40px;
  }

  .experience-highlight::after {
    right: -40px;
  }

  .experience-highlight h3 {
    font-family: var(--heading);
    font-size: clamp(32px, 4vw, 54px);
    margin-bottom: 14px;
    color: #fff7ef;
    position: relative;
    z-index: 2;
  }

  .experience-highlight p {
    max-width: 760px;
    margin: 0 auto 24px;
    color: rgba(255,247,239,0.88);
    line-height: 1.9;
    font-size: 15px;
    position: relative;
    z-index: 2;
  }

  .experience-highlight .theme-btn {
    position: relative;
    z-index: 2;
  }

  @media (max-width: 991.98px) {
    .experience-hero {
      padding: 135px 0 80px;
    }

    .experience-grid,
    .experience-grid.reverse {
      grid-template-columns: 1fr;
    }

    .experience-grid.reverse .experience-image-side,
    .experience-grid.reverse .experience-content-side {
      order: unset;
    }

    .experience-image-side img {
      min-height: 340px;
    }

    .experience-content-side {
      padding: 32px 24px;
    }
  }

  @media (max-width: 767.98px) {
    .experience-main {
      padding: 70px 0 80px;
    }

    .experience-intro-card {
      padding: 30px 20px;
      margin-top: -50px;
    }

    .experience-highlight::before,
    .experience-highlight::after {
      display: none;
    }
  }
.experience-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.experience-card {
  background: #fffaf5;
  border-radius: 16px;
  overflow: hidden;
  padding: 15px;
  transition: 0.3s ease;
}

.experience-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.experience-card h3 {
  margin-top: 12px;
}

.experience-card a {
  color: -var(--cream);
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}
 @media (max-width: 992px) {
  .experience-grid-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .experience-grid-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}  

  /* Hero */
  .latte-gallery-hero {
    position: relative;
    background:
    linear-gradient(rgba(57,16,24,0.72), rgba(57,16,24,0.72)),
    url("../images/bg/gallery-banner.png") center/cover no-repeat;
    color: #fff7ef;    padding: 160px 0 120px;
    overflow: hidden;
  }

  .latte-gallery-hero::before,
  .latte-gallery-hero::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 320px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 220px 220px 0 0;
    opacity: 0.5;
  }

  .latte-gallery-hero::before {
    left: -50px;
    top: 40px;
  }

  .latte-gallery-hero::after {
    right: -50px;
    bottom: 20px;
  }

  .latte-gallery-hero .container-custom {
    position: relative;
    z-index: 2;
  }

  .latte-gallery-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: #fff7ef;
  }

  .latte-gallery-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f1d0bc;
    margin-bottom: 14px;
    font-weight: 500;
  }

  .latte-gallery-hero-content h1 {
    font-family: var(--heading);
    font-size: clamp(44px, 6vw, 86px);
    line-height: 0.98;
    margin-bottom: 18px;
    color: #fff7ef;
  }

  .latte-gallery-hero-content p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,247,239,0.88);
  }

  /* Intro strip */
  .latte-gallery-intro-wrap {
    margin-top: -70px;
    position: relative;
    z-index: 3;
  }

  .latte-gallery-intro {
    background: #fffaf5;
    border: 1px solid rgba(122,49,59,0.08);
    box-shadow: 0 20px 55px rgba(74,20,32,0.10);
    border-radius: 28px;
    padding: 28px 28px;
    text-align: center;
  }

  .latte-gallery-intro h2 {
    font-family: var(--heading);
    font-size: clamp(30px, 4vw, 50px);
    color: #5a232c;
    margin-bottom: 10px;
  }

  .latte-gallery-intro p {
    max-width: 760px;
    margin: 0 auto;
    color: #746669;
    font-size: 15px;
    line-height: 1.9;
  }

 /* Gallery wall */
.latte-gallery-wall-section {
  padding: 50px 0 90px;
}

.latte-gallery-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.latte-gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  border-radius: 0;
  margin: 0;
  border: 0;
  box-shadow: none;
}

.latte-gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.latte-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* optional hover */
.latte-gallery-item:hover {
  transform: none;
  box-shadow: none;
}

.latte-gallery-item:hover img {
  transform: scale(1.04);
}

.latte-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 8, 12, 0.72),
    rgba(30, 8, 12, 0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.latte-gallery-item:hover .latte-gallery-overlay {
  opacity: 1;
}

  .latte-gallery-meta span {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f2d2bc;
    margin-bottom: 8px;
  }

  .latte-gallery-meta h4 {
    font-family: var(--heading);
    font-size: 30px;
    line-height: 1.05;
    color: #fff7ef;
    margin: 0;
  }


  /* Bottom story block */
  .latte-gallery-story {
    padding: 0 0 100px;
  }

  .latte-gallery-story-box {
    background: linear-gradient(135deg, #5a232c, #7a313b);
    border-radius: 34px;
    padding: 56px 34px;
    text-align: center;
    color: #fff7ef;
    position: relative;
    overflow: hidden;
  }

  .latte-gallery-story-box::before,
  .latte-gallery-story-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 240px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 180px 180px 0 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .latte-gallery-story-box::before { left: -40px; }
  .latte-gallery-story-box::after { right: -40px; }

  .latte-gallery-story-box h3 {
    font-family: var(--heading);
    font-size: clamp(32px, 4vw, 56px);
    margin-bottom: 14px;
    color: #fff7ef;
    position: relative;
    z-index: 2;
  }

  .latte-gallery-story-box p {
    max-width: 760px;
    margin: 0 auto 24px;
    color: rgba(255,247,239,0.88);
    font-size: 15px;
    line-height: 1.9;
    position: relative;
    z-index: 2;
  }

  .latte-gallery-story-box .theme-btn {
    position: relative;
    z-index: 2;
  }

  /* =========================================
   GALLERY RESPONSIVE LAYOUT
========================================= */

/* Tablet */
@media (max-width: 991.98px) {
  .latte-gallery-hero {
    padding: 135px 0 90px;
  }

  .latte-gallery-wall-section {
    padding-inline: 14px;
  }

  .latte-gallery-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  /* Remove desktop masonry spans */
  .latte-gallery-item,
  .latte-gallery-item.large,
  .latte-gallery-item.tall {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .latte-gallery-item img {
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
  }

  /* Selected featured images */
  .latte-gallery-item:first-child,
  .latte-gallery-item:nth-child(8),
  .latte-gallery-item:nth-child(11) {
    grid-column: 1 / -1 !important;
    aspect-ratio: 16 / 10;
  }
}


/* Mobile */
@media (max-width: 767.98px) {
  .latte-gallery-hero {
    padding: 125px 0 80px;
  }

  .latte-gallery-intro-wrap {
    margin-top: -30px;
  }

  .latte-gallery-intro {
    padding: 24px 18px;
  }

  .latte-gallery-wall-section {
    padding-inline: 10px;
  }

  .latte-gallery-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  /* Hide hover text on touch screens */
  .latte-gallery-overlay {
    display: none;
  }

  .latte-gallery-story {
    padding: 50px 0;
  }

  .latte-gallery-story-box::before,
  .latte-gallery-story-box::after,
  .latte-gallery-hero::before,
  .latte-gallery-hero::after {
    display: none;
  }
}


/* Very small phones */
@media (max-width: 380px) {
  .latte-gallery-wall-section {
    padding-inline: 7px;
  }

  .latte-gallery-wall {
    gap: 4px;
  }
}
/* ===============================
   COFFEE PAGE
================================ */

.coffee-page {
  background: #f8efe7;
}

/* Hero */
.coffee-hero {
  position: relative;
  padding: 160px 0 120px;
  background:
    linear-gradient(rgba(57,16,24,0.76), rgba(57,16,24,0.78)),
    url("../images/bg/coffee_bg.jpg") center/cover no-repeat;
  color: #fff7ef;
  text-align: center;
}

.coffee-hero-content {
  max-width: 780px;
  margin: 0 auto;
}

.coffee-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 243, 218, 0.72);
  margin-bottom: 16px;
  font-weight: 600;
}

.coffee-hero h1 {
  font-family: var(--heading);
  font-size: var(--fs-hero);
  line-height: 1;
  color: #fff7ef;
  margin-bottom: 18px;
  font-weight: 500;
}

.coffee-hero p {
  font-size: var(--fs-body-lg);
  line-height: 1.8;
  color: rgba(255, 247, 239, 0.88);
  max-width: 700px;
  margin: 0 auto;
}

/* Intro */
.coffee-intro-section {
  padding: 0 0 70px;
}

.coffee-intro-card {
  max-width: 980px;
  margin: -85px auto 0;
  background: #fffaf5;
  border: 1px solid rgba(82, 24, 30, 0.08);
  border-radius: 34px;
  padding: 44px 38px;
  text-align: center;
  position: relative;
  z-index: 3;
  box-shadow: 0 24px 70px rgba(74, 20, 32, 0.12);
}

.coffee-intro-card h2 {
  font-family: var(--heading);
  font-size: var(--fs-section);
  color: var(--maroon);
  line-height: 1.08;
  margin-bottom: 14px;
}

.coffee-intro-card p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: var(--fs-body);
  line-height: 1.8;
}

/* Story - Full Background Image Chapters */
.coffee-story-section {
  padding: 0;
  background: #f8efe7;
  margin-top: -175px;
  position: relative;
  z-index: 1;
}

.coffee-bg-chapter {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.coffee-bg-chapter.first-chapter {
  padding-top: 130px;
  min-height: 720px;
}

.coffee-slide-card .overlay {
  
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(35, 10, 14, 0.82),
    rgba(35, 10, 14, 0.35),
    rgba(35, 10, 14, 0.08)
  );
  z-index: 1;

}


.coffee-bg-chapter .container-custom {
  position: relative;
  z-index: 2;
}

.coffee-bg-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
}

.coffee-bg-content span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 243, 218, 0.72);
  margin-bottom: 16px;
  font-weight: 700;
}

.coffee-bg-content h3 {
  font-family: var(--heading);
  font-size: var(--fs-section);
  line-height: 1.08;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 18px;
}

.coffee-bg-content p {
  max-width: 620px;
  margin: 0 auto;
  font-size: var(--fs-body);
  line-height: 1.85;
  color: rgba(255, 243, 218, 0.84);
}

@media (max-width: 991px) {
  .coffee-story-section {
    margin-top: -90px;
  }

  .coffee-bg-chapter {
    min-height: 520px;
  }

  .coffee-bg-chapter.first-chapter {
    padding-top: 110px;
    min-height: 620px;
  }
}

@media (max-width: 575px) {
  .coffee-story-section {
    margin-top: -70px;
  }

  .coffee-bg-chapter {
    min-height: 430px;
    padding: 70px 0;
  }

  .coffee-bg-chapter.first-chapter {
    padding-top: 100px;
    min-height: 520px;
  }

  .coffee-bg-content {
    max-width: 100%;
  }
}

/* Final dark section */
.coffee-final-section {
  background-color: var(--maroon);
  padding: 95px 0;
  color: var(--cream);
  text-align: center;
}

.coffee-final-content {
  max-width: 820px;
  margin: 0 auto;
}

.coffee-final-content h2 {
  font-family: var(--heading);
  font-size: var(--fs-section);
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 18px;
}

.coffee-final-content p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: var(--fs-body);
  line-height: 1.8;
  color: rgba(255, 243, 218, 0.78);
}

/* Responsive */
@media (max-width: 991px) {
  .coffee-hero {
    padding: 135px 0 100px;
  }

  .coffee-intro-card {
    margin-top: -60px;
    padding: 34px 24px;
  }

  .coffee-story-row,
  .coffee-story-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 70px;
  }

  .coffee-story-row.reverse .coffee-story-image,
  .coffee-story-row.reverse .coffee-story-content {
    order: unset;
    text-align: left;
    margin-left: 0;
  }

  .coffee-story-content {
    max-width: 100%;
  }

  .coffee-story-image {
    height: 340px;
  }
}

@media (max-width: 575px) {
  .coffee-hero {
    padding: 125px 0 90px;
  }

  .coffee-intro-section {
    padding-bottom: 50px;
  }

  .coffee-intro-card {
    margin-top: -50px;
    border-radius: 26px;
    padding: 28px 20px;
  }

  .coffee-story-section {
    padding: 20px 0 70px;
  }

  .coffee-story-row {
    margin-bottom: 54px;
  }

  .coffee-story-image {
    height: 260px;
    border-radius: 24px;
  }

  .coffee-final-section {
    padding: 72px 0;
  }
}
.coffee-varieties-section {
  background: #fdf8f3;
  padding: 100px 0;
}

.coffee-varieties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.coffee-variety-card {
  background: #fffaf5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(82, 24, 30, 0.08);
  box-shadow: 0 14px 40px rgba(74, 20, 32, 0.06);
  text-align: center;
}

.coffee-variety-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.coffee-variety-card h4 {
  font-family: var(--heading);
  font-size: 28px;
  color: var(--maroon);
  margin: 20px 0 10px;
}

.coffee-variety-card p {
  font-size: var(--fs-body);
  color: var(--text-soft);
  line-height: 1.7;
  padding: 0 18px 24px;
  margin: 0;
}

@media (max-width: 991px) {
  .coffee-varieties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .coffee-varieties-section {
    padding: 70px 0;
  }

  .coffee-varieties-grid {
    grid-template-columns: 1fr;
  }

  .coffee-variety-card img {
    height: 220px;
  }
}
@media (max-width: 767.98px) {
  .coffee-varieties-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .coffee-varieties-grid::-webkit-scrollbar {
    display: none;
  }

  .coffee-variety-card {
    flex: 0 0 82%;
  }
  .coffee-variety-card:nth-child(1) {
    order: 2;
  }

  .coffee-variety-card:nth-child(2) {
    order: 3;
  }

  .coffee-variety-card:nth-child(3) {
    order: 4;
  }

  .coffee-variety-card:nth-child(4) {
    order: 1;
  }
}

.coffee-intro-section {
  padding: 0;
  position: relative;
  z-index: 5;
  background: transparent;
}

/* Coffee Slider */
.coffee-mid-slider-section {
  background: #f8f3ee;
  padding: 75px 0;
  position: relative;
  overflow: hidden;
}
.coffee-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(38, 13, 16, 0.62),
    rgba(38, 13, 16, 0.72)
  );
  z-index: 1;
}
.coffeeSwiper {
  position: relative;
  padding: 0 55px;
}

.coffee-slide-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}

.coffee-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.coffee-slide-card:hover img {
  transform: scale(1.06);
}

.coffee-slide-card .coffee-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 5, 8, 0.95),
    rgba(15, 5, 8, 0.85),
    rgba(15, 5, 8, 0.55),
    rgba(15, 5, 8, 0.20),
    transparent
  );
}

.coffee-slide-card .content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 32px;
  z-index: 2;
  text-align: center;
  color: #fff7ef;
}

.coffee-slide-card .content h4 {
  font-family: var(--heading);
  font-size: 32px;
  line-height: 1.08;
  color: #fff7ef;
  margin-bottom: 8px;
}

.coffee-slide-card .content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* Swiper Arrows */
.coffeeSwiper .swiper-button-prev,
.coffeeSwiper .swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(57, 16, 24, 0.92);
  border-radius: 50%;
  color: #fff7ef;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.coffeeSwiper .swiper-button-prev::after,
.coffeeSwiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 991px) {
  .coffeeSwiper {
    padding: 0 45px;
  }

  .coffee-slide-card {
    height: 380px;
  }

  .coffee-slide-card .content h4 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .coffee-mid-slider-section {
    padding: 55px 0;
  }

  .coffeeSwiper {
    padding: 0 34px;
  }

  .coffee-slide-card {
    height: 350px;
    border-radius: 18px;
  }

  .coffee-slide-card .content {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  .coffee-slide-card .content h4 {
    font-size: 28px;
  }

  .coffee-slide-card .content p {
    font-size: 15px;
  }
}
.about-wall-img{
  object-position: 50% 22% !important;
}

.about-founder-section {
  background: #fffaf5;
  text-align: center;
}

.founder-content {
  max-width: 820px;
  margin: 40px auto 0;
}

.founder-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #6d5a52;
  margin-bottom: 22px;
}

.founder-sign {
  margin-top: 20px;
  color: var(--maroon);
}

.founder-sign strong {
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

.founder-sign span {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

  /* our story - about-us */

.sk-about-section {
  background: #fffaf5;
  padding: 0;
  overflow: hidden;
}

.sk-about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  align-items: stretch;
}

.sk-about-row.reverse .sk-about-image {
  order: 2;
}

.sk-about-row.reverse .sk-about-copy {
  order: 1;
}

.sk-about-image {
  height: 620px;
  overflow: hidden;
}

.sk-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sk-about-copy {
  padding: 90px 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fffaf5;
}

.sk-about-copy h2 {
  font-family: var(--heading);
  font-size: var(--fs-section);
  line-height: 1.08;
  color: var(--maroon);
  margin-bottom: 24px;
}

.sk-about-copy p {
  font-size: var(--fs-body);
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.sk-about-copy p:last-child {
  margin-bottom: 0;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .sk-about-row,
  .sk-founder-row {
    grid-template-columns: 1fr;
  }

  .sk-about-row.reverse .sk-about-image,
  .sk-about-row.reverse .sk-about-copy {
    order: unset;
  }

  .sk-about-image,
  .sk-founder-image {
    height: 420px;
  }

  .sk-about-copy,
  .sk-founder-copy {
    padding: 60px 34px;
  }
}

@media (max-width: 575px) {
  .sk-about-image,
  .sk-founder-image {
    height: 320px;
  }

  .sk-about-copy,
  .sk-founder-copy {
    padding: 46px 22px;
  }

  .sk-about-copy h2,
  .sk-founder-copy h2 {
    font-size: 32px;
  }

}
/* our story - about-us end*/

/* ---------contact-us  start----------*/

    .contact-hero {
      position: relative;
      padding: 160px 0 120px;
      overflow: hidden;
    }

    .contact-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(57, 16, 24, 0.74), rgba(57, 16, 24, 0.72)),
        url('../images/bg/contact.png') center/cover no-repeat;
      z-index: 0;
    }

    .contact-hero .container-custom {
      position: relative;
      z-index: 2;
    }

    .contact-hero-content {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      color: #fff7ef;
    }

    .contact-kicker {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #f2d2bc;
      margin-bottom: 14px;
    }

    .contact-hero-content h1 {
      font-family: var(--heading);
      font-size: clamp(42px, 6vw, 76px);
      line-height: 1;
      margin-bottom: 18px;
      color: #fff7ef;
    }

    .contact-hero-content p {
      font-size: 16px;
      line-height: 1.9;
      color: rgba(255, 247, 239, 0.88);
      max-width: 700px;
      margin: 0 auto;
    }

    .contact-main {
      padding: 90px 0 100px;
      position: relative;
      margin: -70px auto 0;
    }

    .contact-shell {
      background: #fffaf5;
      border-radius: 34px;
      padding: 40px;
      margin-top: -70px;
      position: relative;
      z-index: 4;
      box-shadow: 0 24px 70px rgba(74, 20, 32, 0.12);
      border: 1px solid rgba(122, 49, 59, 0.08);
    }

    .contact-intro {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 42px;
    }

    .contact-intro h2 {
      font-family: var(--heading);
      font-size: clamp(34px, 4vw, 56px);
      color: #5a232c;
      margin-bottom: 14px;
    }

    .contact-intro p {
      color: #6d5b5f;
      line-height: 1.9;
      font-size: 15px;
      margin: 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      align-items: start;
    }

    .contact-form-wrap,
    .contact-info-wrap {
      background: #fff;
      border: 1px solid rgba(90, 35, 44, 0.08);
      border-radius: 28px;
      padding: 30px;
      box-shadow: 0 12px 32px rgba(90, 35, 44, 0.05);
    }

    .contact-form-head,
    .contact-info-head {
      margin-bottom: 24px;
    }

    .contact-form-head h3,
    .contact-info-head h3 {
      font-family: var(--heading);
      font-size: clamp(28px, 3vw, 40px);
      color: #5a232c;
      margin-bottom: 10px;
    }

    .contact-form-head p,
    .contact-info-head p {
      color: #746669;
      font-size: 14px;
      line-height: 1.85;
      margin: 0;
    }

    .contact-form .form-label {
      font-size: 13px;
      font-weight: 600;
      color: #5a232c;
      margin-bottom: 8px;
    }

    .contact-form .form-control,
    .contact-form .form-select,
    .contact-form textarea {
      border: 1px solid rgba(90, 35, 44, 0.12);
      border-radius: 16px;
      padding: 14px 16px;
      min-height: 54px;
      box-shadow: none;
      font-size: 14px;
      color: #5a232c;
      background: #fff;
    }

    .contact-form textarea {
      min-height: 140px;
      resize: vertical;
    }

    .contact-form .form-control:focus,
    .contact-form .form-select:focus,
    .contact-form textarea:focus {
      border-color: #8a4d57;
      box-shadow: 0 0 0 0.18rem rgba(138, 77, 87, 0.12);
    }

    .contact-submit {
      margin-top: 8px;
    }

    .contact-submit .theme-btn {
      min-width: 220px;
    }

    .contact-card-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 22px;
    }

    .contact-card {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 18px;
      border-radius: 22px;
      background: #fbf3ec;
      border: 1px solid rgba(122, 49, 59, 0.08);
    }

    .contact-card-icon {
      width: 46px;
      height: 46px;
      min-width: 46px;
      border-radius: 50%;
      background: #5a232c;
      color: #fff7ef;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .contact-card-copy h4 {
      font-size: 16px;
      color: #5a232c;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .contact-card-copy p,
    .contact-card-copy a {
      margin: 0;
      color: #746669;
      font-size: 14px;
      line-height: 1.8;
      text-decoration: none;
    }

    @media screen and (max-width:576px) {
      .contact-card{
        padding: 14px;
      }
      .contact-card-icon{
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 12px;
      }
    }
 .contact-hours {
  margin-top: 24px;
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #5a232c, #7a313b);
  color: #fff7ef;
  position: relative;
  overflow: hidden;

  display: grid !important;
  grid-template-columns: 220px 1fr !important;
  gap: 28px;
  align-items: start;
}

.contact-hours::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 160px 160px 0 0;
  right: -30px;
  bottom: -70px;
}

.contact-hours h4 {
  font-family: var(--heading);
  font-size: 30px;
  line-height: 1.1;
  color: #fff7ef;
  margin: 0 !important;
  position: relative;
  z-index: 2;
}

.contact-hours ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  z-index: 2;
}

.contact-hours li {
  display: block !important;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.contact-hours li:last-child {
  border-bottom: 0;
}

.contact-hours li span {
  display: block !important;
}

.contact-hours li span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: #fff7ef;
  margin-bottom: 6px;
}

.contact-hours li span:last-child {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 767.98px) {
  .contact-hours {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
}
    .contact-cta {
      margin-top: 36px;
      background: #fff;
      border: 1px solid rgba(90, 35, 44, 0.08);
      border-radius: 30px;
      padding: 32px 26px;
      text-align: center;
      box-shadow: 0 12px 30px rgba(90, 35, 44, 0.05);
    }

    .contact-cta h3 {
      font-family: var(--heading);
      font-size: clamp(28px, 3vw, 42px);
      color: #5a232c;
      margin-bottom: 12px;
    }

    .contact-cta p {
      max-width: 700px;
      margin: 0 auto 20px;
      color: #746669;
      font-size: 15px;
      line-height: 1.9;
    }

    @media (max-width: 991.98px) {
      .contact-hero {
        padding: 135px 0 80px;
      }

      .contact-shell {
        padding: 30px 22px;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767.98px) {
      .contact-main {
        padding: 70px 0 80px;
      }

      .contact-form-wrap,
      .contact-info-wrap,
      .contact-cta {
        padding: 22px 18px;
        border-radius: 24px;
      }

      .contact-submit .theme-btn {
        width: 100%;
        min-width: auto;
      }

      .contact-hours li {
        flex-direction: column;
        gap: 4px;
      }
    }
  /* ----contact-us end------- */

  /* -----bakery start------- */
  .overlay {
    display: none !important;
  }

  .bakery-hero {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
    z-index: 1;
  }

  .bakery-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(57,16,24,0.60), rgba(57,16,24,0.76)),
      url('../images/bg/artisan_bakery.png') center/cover no-repeat;
    transform: scale(1.03);
  }

  .bakery-hero .container-custom {
    position: relative;
    z-index: 2;
  }

  .bakery-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: #fff7ef;
  }

  .bakery-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f2d2bc;
    margin-bottom: 16px;
  }

  .bakery-hero-content h1 {
    font-family: var(--heading);
    font-size: clamp(50px, 6vw, 84px);
    line-height: 0.98;
    margin-bottom: 16px;
    color: #fff7ef;
  }

  .bakery-hero-content p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,247,239,0.90);
  }

  .bakery-main {
    position: relative;
    z-index: 2;
    padding: 0 0 50px;
    background: transparent;
  }

  .bakery-shell {
    max-width: 1220px;
    margin: -70px auto 0;
    background: #fffaf5;
    border: 1px solid rgba(122, 49, 59, 0.08);
    border-radius: 34px;
    padding: 56px;
    box-shadow: 0 24px 70px rgba(74, 20, 32, 0.10);
  }

  .bakery-intro {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
  }

  .bakery-mini-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a4d57;
    margin-bottom: 14px;
  }

  .bakery-intro h2 {
    font-family: var(--heading);
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    color: #5a232c;
    margin-bottom: 12px;
  }

  .bakery-intro p {
    margin: 0;
    color: #75676a;
    font-size: 15px;
    line-height: 1.9;
  }

  /* =========================================
   BAKERY CATEGORY SWIPERS
========================================= */

.bakery-category-section {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
}

.bakery-category-dark {
  background: var(--maroon);
  color: var(--cream);
}

.bakery-category-light {
  background: var(--cream-soft);
  color: var(--maroon);
}

.bakery-category-head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.bakery-category-head h2 {
  font-family: var(--heading);
  font-size: var(--fs-section);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 16px;
}

.bakery-category-dark .bakery-category-head h2 {
  color: var(--cream);
}

.bakery-category-light .bakery-category-head h2 {
  color: var(--maroon);
}

.bakery-category-head p {
  max-width: 820px;
  margin: 0 auto;
  font-size: var(--fs-body);
  line-height: 1.8;
}

.bakery-category-dark .bakery-category-head p {
  color: rgba(255, 243, 218, 0.78);
}

.bakery-category-light .bakery-category-head p {
  color: var(--text-soft);
}

.bakery-category-swiper {
  position: relative;
  padding: 0 50px;
  overflow: hidden;
}

.bakery-slide-card {
  position: relative;
  height: 390px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(32, 8, 12, 0.14);
}

.bakery-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.bakery-slide-card:hover img {
  transform: scale(1.06);
}

.bakery-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 7, 10, 0.82) 0%,
    rgba(27, 7, 10, 0.18) 58%,
    transparent 100%
  );
}

.bakery-slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px 22px;
}

.bakery-slide-content h4 {
  font-family: var(--heading);
  font-size: 27px;
  line-height: 1.12;
  font-weight: 500;
  color: var(--cream);
  margin: 0;
}

.bakery-category-swiper .swiper-button-next,
.bakery-category-swiper .swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-top: -22px;
  transition: 0.3s ease;
}

.bakery-category-swiper .swiper-button-next::after,
.bakery-category-swiper .swiper-button-prev::after {
  font-size: 17px;
  font-weight: 700;
}

.bakery-category-dark .swiper-button-next,
.bakery-category-dark .swiper-button-prev {
  background: rgba(255, 243, 218, 0.14);
  border: 1px solid rgba(255, 243, 218, 0.24);
  color: var(--cream);
}

.bakery-category-light .swiper-button-next,
.bakery-category-light .swiper-button-prev {
  background: rgba(82, 24, 30, 0.08);
  border: 1px solid rgba(82, 24, 30, 0.14);
  color: var(--maroon);
}

.bakery-category-swiper .swiper-button-next:hover,
.bakery-category-swiper .swiper-button-prev:hover {
  transform: scale(1.06);
}

.bakery-category-swiper .swiper-button-prev {
  left: 0;
}

.bakery-category-swiper .swiper-button-next {
  right: 0;
}

@media (max-width: 991px) {
  .bakery-category-section {
    padding: 82px 0;
  }

  .bakery-category-swiper {
    padding: 0 42px;
  }

  .bakery-slide-card {
    height: 340px;
  }
}

@media (max-width: 575px) {
  .bakery-category-section {
    padding: 68px 0;
  }

  .bakery-category-head {
    margin-bottom: 32px;
  }

  .bakery-category-swiper {
    padding: 0 32px;
  }

  .bakery-slide-card {
    height: 300px;
    border-radius: 22px;
  }

  .bakery-slide-content {
    padding: 20px 18px;
  }

  .bakery-slide-content h4 {
    font-size: 23px;
  }

  .bakery-category-swiper .swiper-button-next,
  .bakery-category-swiper .swiper-button-prev {
    width: 38px;
    height: 38px;
    margin-top: -19px;
  }
}

  .bakery-cta {
    margin: 60px 120px;
    background: linear-gradient(135deg, #5a232c, #7a313b);
    color: #fff7ef;
    padding: 58px 30px;
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .bakery-cta::before,
  .bakery-cta::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 240px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 180px 180px 0 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .bakery-cta::before {
    left: -40px;
  }

  .bakery-cta::after {
    right: -40px;
  }

  .bakery-cta h3 {
    position: relative;
    z-index: 2;
    font-family: var(--heading);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.06;
    margin-bottom: 12px;
    color: #fff7ef;
  }

  .bakery-cta p {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 22px;
    color: rgba(255,247,239,0.88);
    line-height: 1.9;
  }

  .bakery-cta .theme-btn {
    position: relative;
    z-index: 2;
  }

  @media (max-width: 991.98px) {
    .bakery-shell {
      padding: 32px 24px;
      margin-top: -36px;
    }

    .bakery-gallery-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bakery-item {
      height: 320px;
    }
  }

  @media (max-width: 576px) {
    .bakery-cta{
      margin: 30px 20px;
    }
    .bakery-hero {
      padding: 128px 0 88px;
    }

    .bakery-shell {
      padding: 24px 18px;
      border-radius: 24px;
    }

    .bakery-gallery-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .bakery-item {
      height: 260px;
      border-radius: 20px;
    }

    .bakery-cta::before,
    .bakery-cta::after {
      display: none;
    }
  }
/* -----bakery end------ */

/* ------terms-and-conditions-------- */
  
    .terms-hero {
      position: relative;
      padding: 150px 0 90px;
      overflow: hidden;
    }

    .terms-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(57, 16, 24, 0.78), rgba(57, 16, 24, 0.74)),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      z-index: 0;
    }

    .terms-hero .container-custom {
      position: relative;
      z-index: 2;
    }

    .terms-hero-content {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      color: #fff7ef;
    }

    .terms-kicker {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #f2d2bc;
      margin-bottom: 14px;
    }

    .terms-hero-content h1 {
      font-family: var(--heading);
      font-size: clamp(42px, 6vw, 76px);
      line-height: 1;
      margin-bottom: 18px;
      color: #fff7ef;
    }

    .terms-hero-content p {
      font-size: 16px;
      line-height: 1.9;
      color: rgba(255, 247, 239, 0.88);
      max-width: 680px;
      margin: 0 auto;
    }

    .terms-main {
      padding: 90px 0 100px;
      position: relative;
    }

    .terms-shell {
      background: #fffaf5;
      border-radius: 34px;
      padding: 44px;
      margin-top: -70px;
      position: relative;
      z-index: 4;
      box-shadow: 0 24px 70px rgba(74, 20, 32, 0.12);
      border: 1px solid rgba(122, 49, 59, 0.08);
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .terms-intro {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 36px;
    }

    .terms-intro h2 {
      font-family: var(--heading);
      font-size: clamp(34px, 4vw, 54px);
      color: #5a232c;
      margin-bottom: 14px;
    }

    .terms-intro p {
      color: #6d5b5f;
      line-height: 1.9;
      font-size: 15px;
      margin: 0;
    }

    .terms-meta {
      background: #fbf3ec;
      border: 1px solid rgba(122, 49, 59, 0.08);
      border-radius: 24px;
      padding: 18px 22px;
      margin-bottom: 34px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: space-between;
      align-items: center;
    }

    .terms-meta span {
      color: #7a313b;
      font-size: 14px;
    }

    .terms-content {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .terms-block {
      padding-bottom: 26px;
      border-bottom: 1px solid rgba(90, 35, 44, 0.08);
    }

    .terms-block:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .terms-block h3 {
      font-family: var(--heading);
      font-size: clamp(28px, 3vw, 40px);
      color: #5a232c;
      margin-bottom: 10px;
    }

    .terms-block p,
    .terms-block li {
      color: #746669;
      font-size: 15px;
      line-height: 1.95;
    }

    .terms-block p {
      margin-bottom: 10px;
    }

    .terms-block ul {
      margin: 0;
      padding-left: 18px;
    }

    .terms-cta {
      margin-top: 42px;
      background: linear-gradient(135deg, #5a232c, #7a313b);
      border-radius: 30px;
      padding: 44px 24px;
      text-align: center;
      color: #fff7ef;
      position: relative;
      overflow: hidden;
    }

    .terms-cta::before,
    .terms-cta::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 210px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 160px 160px 0 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .terms-cta::before { left: -36px; }
    .terms-cta::after { right: -36px; }

    .terms-cta h3 {
      font-family: var(--heading);
      font-size: clamp(28px, 4vw, 46px);
      margin-bottom: 12px;
      color: #fff7ef;
      position: relative;
      z-index: 2;
    }

    .terms-cta p {
      max-width: 700px;
      margin: 0 auto 18px;
      color: rgba(255,247,239,0.88);
      line-height: 1.9;
      position: relative;
      z-index: 2;
    }

    .terms-cta .theme-btn {
      position: relative;
      z-index: 2;
    }

    @media (max-width: 991.98px) {
      .terms-hero {
        padding: 135px 0 80px;
      }

      .terms-shell {
        padding: 30px 22px;
      }

      .terms-meta {
        align-items: flex-start;
      }
    }

    @media (max-width: 767.98px) {
      .terms-main {
        padding: 70px 0 80px;
      }

      .terms-shell {
        border-radius: 24px;
      }

      .terms-meta {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 575.98px) {
      .terms-cta::before,
      .terms-cta::after {
        display: none;
      }
    }
  /* --------terms-and-conditions end------ */

   /* ---------privacy-and-policy-------- */
    .policy-hero {
      position: relative;
      padding: 150px 0 90px;
      overflow: hidden;
    }

    .policy-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(57, 16, 24, 0.78), rgba(57, 16, 24, 0.74)),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      z-index: 0;
    }

    .policy-hero .container-custom {
      position: relative;
      z-index: 2;
    }

    .policy-hero-content {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      color: #fff7ef;
    }

    .policy-kicker {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #f2d2bc;
      margin-bottom: 14px;
    }

    .policy-hero-content h1 {
      font-family: var(--heading);
      font-size: clamp(42px, 6vw, 76px);
      line-height: 1;
      margin-bottom: 18px;
      color: #fff7ef;
    }

    .policy-hero-content p {
      font-size: 16px;
      line-height: 1.9;
      color: rgba(255, 247, 239, 0.88);
      max-width: 680px;
      margin: 0 auto;
    }

    .policy-main {
      padding: 90px 0 100px;
      position: relative;
    }

    .policy-shell {
      background: #fffaf5;
      border-radius: 34px;
      padding: 44px;
      margin-top: -70px;
      position: relative;
      z-index: 4;
      box-shadow: 0 24px 70px rgba(74, 20, 32, 0.12);
      border: 1px solid rgba(122, 49, 59, 0.08);
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .policy-intro {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 36px;
    }

    .policy-intro h2 {
      font-family: var(--heading);
      font-size: clamp(34px, 4vw, 54px);
      color: #5a232c;
      margin-bottom: 14px;
    }

    .policy-intro p {
      color: #6d5b5f;
      line-height: 1.9;
      font-size: 15px;
      margin: 0;
    }

    .policy-meta {
      background: #fbf3ec;
      border: 1px solid rgba(122, 49, 59, 0.08);
      border-radius: 24px;
      padding: 18px 22px;
      margin-bottom: 34px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: space-between;
      align-items: center;
    }

    .policy-meta span {
      color: #7a313b;
      font-size: 14px;
    }

    .policy-content {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .policy-block {
      padding-bottom: 26px;
      border-bottom: 1px solid rgba(90, 35, 44, 0.08);
    }

    .policy-block:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .policy-block h3 {
      font-family: var(--heading);
      font-size: clamp(28px, 3vw, 40px);
      color: #5a232c;
      margin-bottom: 10px;
    }

    .policy-block p,
    .policy-block li {
      color: #746669;
      font-size: 15px;
      line-height: 1.95;
    }

    .policy-block p {
      margin-bottom: 10px;
    }

    .policy-block ul {
      margin: 0;
      padding-left: 18px;
    }

    .policy-cta {
      margin-top: 42px;
      background: linear-gradient(135deg, #5a232c, #7a313b);
      border-radius: 30px;
      padding: 44px 24px;
      text-align: center;
      color: #fff7ef;
      position: relative;
      overflow: hidden;
    }

    .policy-cta::before,
    .policy-cta::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 210px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 160px 160px 0 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .policy-cta::before { left: -36px; }
    .policy-cta::after { right: -36px; }

    .policy-cta h3 {
      font-family: var(--heading);
      font-size: clamp(28px, 4vw, 46px);
      margin-bottom: 12px;
      color: #fff7ef;
      position: relative;
      z-index: 2;
    }

    .policy-cta p {
      max-width: 700px;
      margin: 0 auto 18px;
      color: rgba(255,247,239,0.88);
      line-height: 1.9;
      position: relative;
      z-index: 2;
    }

    .policy-cta .theme-btn {
      position: relative;
      z-index: 2;
    }

    @media (max-width: 991.98px) {
      .policy-hero {
        padding: 135px 0 80px;
      }

      .policy-shell {
        padding: 30px 22px;
      }

      .policy-meta {
        align-items: flex-start;
      }
    }

    @media (max-width: 767.98px) {
      .policy-main {
        padding: 70px 0 80px;
      }

      .policy-shell {
        border-radius: 24px;
      }

      .policy-meta {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 575.98px) {
      .policy-cta::before,
      .policy-cta::after {
        display: none;
      }
    }
  /* -------privacy-and-policy------- */

 .form-message {
  display: none;
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}

.form-message.success,
.form-message.error {
  display: block;
}

.form-message.success {
  color: #2e7d32;
}

.form-message.error {
  color: #c62828;
}


/* =========================================
   FINAL TYPOGRAPHY SYSTEM OVERRIDES
   Balanced premium typography for Latte Global
========================================= */

:root {
  --fs-hero: 56px;
  --fs-section: 38px;
  --fs-subheading: 24px;
  --fs-body: 16px;
  --fs-body-lg: 18px;
  --fs-small: 14px;
  --fs-xs: 12px;
  --fs-xxs: 11px;
}

/* Base text */
body {
  font-size: var(--fs-body);
}

/* Hero titles */
.hero-title,
.inner-hero-title,
.reservation-hero-content h1,
.experience-hero-content h1,
.latte-gallery-hero-content h1,
.contact-hero-content h1,
.bakery-hero-content h1,
.terms-hero-content h1,
.policy-hero-content h1 {
  font-size: var(--fs-hero) !important;
  line-height: 1 !important;
}

/* Section titles */
.section-title,
.hours-box h2,
.about-copy h3,
.contact-heading,
.story-copy h2,
.values-copy h2,
.experience-copy h2,
.craft-copy h2,
.cta-box h2,
.reservation-head h2,
.experience-intro-card h2,
.bakery-intro h2,
.contact-intro h2,
.terms-intro h2,
.policy-intro h2,
.latte-destination-intro h2 {
  font-size: var(--fs-section) !important;
  line-height: 1.08 !important;
}

/* Sub headings */
.arch-card h3,
.hero-card-title,
.feature-card h4,
.philosophy-content h4,
.team-card h5,
.value-card h4,
.arch-frame-card h3,
.experience-content-side h3,
.reservation-info-top h3,
.contact-form-head h3,
.contact-info-head h3,
.contact-cta h3,
.terms-block h3,
.policy-block h3,
.latte-gallery-story-box h3,
.latte-gallery-intro h2,
.latte-destination-copy h3,
.reservation-hours h5,
.contact-hours h4,
.bakery-cta h3,
.terms-cta h3,
.policy-cta h3,
.experience-highlight h3 {
  font-size: var(--fs-subheading) !important;
  line-height: 1.15 !important;
}

/* Main body copy */
.hero-text,
.section-text,
.hours-box > p,
.about-copy p,
.contact-lead,
.story-copy p,
.values-copy p,
.experience-copy p,
.craft-copy p,
.reservation-head p,
.experience-intro-card p,
.bakery-intro p,
.contact-intro p,
.terms-intro p,
.policy-intro p,
.reservation-hero-content p,
.experience-hero-content p,
.latte-gallery-hero-content p,
.contact-hero-content p,
.bakery-hero-content p,
.terms-hero-content p,
.policy-hero-content p,
.reservation-info-top p,
.contact-form-head p,
.contact-info-head p,
.contact-cta p,
.terms-block p,
.policy-block p,
.latte-destination-intro p,
.latte-destination-copy p,
.latte-gallery-story-box p,
.bakery-cta p,
.terms-cta p,
.policy-cta p,
.experience-highlight p,
.contact-block p,
.contact-block a,
.contact-card-copy p,
.contact-card-copy a,
.reservation-info-text p,
.reservation-info-text a,
.policy-block li,
.terms-block li,
.about-copy p,
.feature-card p,
.philosophy-content p,
.team-card p,
.value-card p,
.highlight-item p,
.arch-frame-card p,
.reservation-bottom-note,
.bakery-overlay p {
  font-size: var(--fs-body) !important;
  line-height: 1.8 !important;
}

/* Slightly emphasized body text where needed */
.inner-hero-text,
.latte-gallery-intro p,
.contact-hero-content p,
.bakery-hero-content p,
.terms-hero-content p,
.policy-hero-content p {
  font-size: var(--fs-body-lg) !important;
  line-height: 1.8 !important;
}

/* Small utility text */
.eyebrow,
.hero-eyebrow,
.reservation-kicker,
.experience-kicker,
.latte-gallery-kicker,
.contact-kicker,
.bakery-kicker,
.terms-kicker,
.policy-kicker,
.footer-brand-sub,
.feature-kicker,
.philosophy-tag,
.team-role,
.eyebrow-small,
.hours-block h4,
.contact-label,
.nav-menu a,
.hero-points li,
.text-link,
.reservation-form label,
.contact-form .form-label,
.amenity h5,
.footer-col h6,
.contact-block h5 {
  font-size: var(--fs-xs) !important;
}

/* Form fields */
input,
select,
textarea,
.booking-form input,
.booking-form select,
.booking-form textarea,
.reservation-form .form-control,
.reservation-form .form-select,
.reservation-form textarea,
.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
  font-size: var(--fs-small) !important;
}

/* Buttons */
.theme-btn,
.arch-card .theme-btn.btn-cream,
.reservation-submit .theme-btn,
.contact-submit .theme-btn {
  font-size: 12px !important;
}

/* Tablet */
@media (max-width: 991px) {
  :root {
    --fs-hero: 44px;
    --fs-section: 32px;
    --fs-subheading: 22px;
    --fs-body: 16px;
    --fs-body-lg: 17px;
    --fs-small: 14px;
    --fs-xs: 12px;
    --fs-xxs: 11px;
  }
}

/* Phone */
@media (max-width: 575px) {
  :root {
    --fs-hero: 32px;
    --fs-section: 26px;
    --fs-subheading: 20px;
    --fs-body: 15px;
    --fs-body-lg: 16px;
    --fs-small: 14px;
    --fs-xs: 12px;
    --fs-xxs: 11px;
  }

  body {
    font-size: var(--fs-body);
  }

  .hero-title,
  .inner-hero-title,
  .reservation-hero-content h1,
  .experience-hero-content h1,
  .latte-gallery-hero-content h1,
  .contact-hero-content h1,
  .bakery-hero-content h1,
  .terms-hero-content h1,
  .policy-hero-content h1 {
    line-height: 1.05 !important;
  }

  .section-title,
  .hours-box h2,
  .about-copy h3,
  .contact-heading,
  .story-copy h2,
  .values-copy h2,
  .experience-copy h2,
  .craft-copy h2,
  .cta-box h2,
  .reservation-head h2,
  .experience-intro-card h2,
  .bakery-intro h2,
  .contact-intro h2,
  .terms-intro h2,
  .policy-intro h2,
  .latte-destination-intro h2 {
    line-height: 1.12 !important;
  }
}


#site-loader {
  position: fixed;
  inset: 0;
  background: var(--maroon-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#site-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-bird {
  width: 140px;
  max-width: 28vw;
  animation: birdFloat 2.4s ease-in-out infinite;
}

@keyframes birdFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}
#site-loader::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,153,51,0.22), transparent 65%);
  animation: glowPulse 2.6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
.footer-logo-img {
  width: 200px;
  height: auto;
  display: block;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 24px;
}

.footer-col {
  padding-top: 18px;
}
/* Lightbox close button position fix */
.lb-data .lb-close {
  position: fixed !important;
  top: 28px !important;
  right: 32px !important;
  width: 42px !important;
  height: 42px !important;
  opacity: 1 !important;
  z-index: 999999 !important;
  background-size: 28px 28px !important;
}

.lb-dataContainer {
  position: static !important;
}

.lightbox {
  z-index: 99999 !important;
}

.lightboxOverlay {
  z-index: 99998 !important;
}
