/* ============================================================
   BBN CATERERS — SEPHIR FONT + PAPER TEXTURES + SVG ICONS
   ============================================================ */

/* ─── Sephir Custom Font ─── */
@font-face {
  font-family: 'Sephir';
  src: url('../Sephir-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── Update root font stack ─── */
:root {
  --font-heading: 'Sephir', 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Sephir', 'Cormorant Garamond', Georgia, serif;
}

/* ─── Sephir Hero Headline Styling — Wide tracking & brand color from design specs ─── */
.hero__headline-sub {
  display: block;
  font-family: 'Sephir', var(--font-heading);
  color: var(--color-cream-dark);
  /* #E5DFD3 from specifications */
  letter-spacing: 0.22em;
  /* 220 tracking from specifications */
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: var(--fw-regular);
  margin-top: var(--space-4);
  line-height: 1.25;
}

/* ─────────────────────────────────────────
   SVG ICON SYSTEM
   Usage: <svg class="icon icon--sm"><use href="assets/icons/icons.svg#icon-NAME"/></svg>
   ───────────────────────────────────────── */

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  vertical-align: middle;
}

.icon--xs {
  width: 14px;
  height: 14px;
}

.icon--sm {
  width: 18px;
  height: 18px;
}

.icon--md {
  width: 24px;
  height: 24px;
}

.icon--lg {
  width: 32px;
  height: 32px;
}

.icon--xl {
  width: 44px;
  height: 44px;
}

.icon--2xl {
  width: 56px;
  height: 56px;
}

/* Icon colours */
.icon--taupe {
  stroke: var(--color-taupe);
}

.icon--cream {
  stroke: var(--color-cream);
}

.icon--dark {
  stroke: var(--color-dark);
}

.icon--beige {
  stroke: var(--color-beige);
}

/* Filled icon variant */
.icon--filled {
  fill: currentColor;
  stroke: none;
}

/* ─────────────────────────────────────────
   FEATURE TILE — Icon wrapper update
   ───────────────────────────────────────── */

.feature-tile__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(137, 120, 92, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-taupe);
  transition: all var(--transition-base);
}

.feature-tile:hover .feature-tile__icon-wrap {
  background: rgba(137, 120, 92, 0.20);
}

.why-us .feature-tile__icon-wrap {
  background: rgba(137, 120, 92, 0.15);
  color: var(--color-beige-light);
}

/* ─────────────────────────────────────────
   VENTURE CARD — Icon wrapper
   ───────────────────────────────────────── */

.venture-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-cream);
}

.venture-card__logo-wrap {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.venture-card__brand-logo {
  height: 100%;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(28, 26, 23, 0.06));
  transition: transform var(--transition-base);
}

.venture-card:hover .venture-card__brand-logo {
  transform: scale(1.05);
}

/* Turn transparent white/gold Pindaura logo into premium dark warm-taupe on light card background */
#brand-pindaura .venture-card__brand-logo {
  filter: invert(0.85) sepia(0.3) saturate(1.5) brightness(0.4) drop-shadow(0 2px 4px rgba(28, 26, 23, 0.06));
}

/* ─────────────────────────────────────────
   SERVICE ITEM — Icon wrapper
   ───────────────────────────────────────── */

.service-item__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(137, 120, 92, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-taupe);
  transition: all var(--transition-base);
}

.service-item:hover .service-item__icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-cream);
}

.service-item.is-active {
  background: var(--color-taupe) !important;
  border-color: var(--color-taupe) !important;
  transform: translateX(4px);
}

.service-item.is-active .service-item__name {
  color: var(--color-cream) !important;
}

.service-item.is-active .service-item__icon-wrap {
  background: rgba(255, 255, 255, 0.15) !important;
  color: var(--color-cream) !important;
}


/* ─────────────────────────────────────────
   PHILOSOPHY PILLAR — Icon
   ───────────────────────────────────────── */

.philosophy__pillar-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-beige-light);
  opacity: 0.9;
  position: relative;
  z-index: 1;
  background: rgba(184, 173, 155, 0.04);
  border-radius: 50%;
  border: 1px solid rgba(184, 173, 155, 0.12);
  transition: all var(--transition-base);
}

.philosophy__pillar-icon-wrap svg {
  width: 24px !important;
  height: 24px !important;
  transition: transform var(--transition-base);
}

.philosophy__pillar:hover .philosophy__pillar-icon-wrap {
  color: var(--color-cream);
  opacity: 1;
  background: rgba(184, 173, 155, 0.15);
  border-color: rgba(184, 173, 155, 0.35);
}

.philosophy__pillar:hover .philosophy__pillar-icon-wrap svg {
  transform: scale(1.08);
}

/* ─────────────────────────────────────────
   PAPER TEAR DIVIDERS
   Organic paper-edge section transitions
   ───────────────────────────────────────── */

.paper-tear {
  position: relative;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  height: 60px;
  margin-top: -30px;
  margin-bottom: -30px;
}

/* SVG Torn Paper Edge — Simple, reliable approach with real height and flush section overlap */
.paper-tear-svg {
  display: block;
  position: relative;
  width: 100%;
  height: 56px;
  /* Real layout height to anchor the SVG */
  overflow: visible;
  /* Allow displacement filter bleed past element edges */
  z-index: 5;
  pointer-events: none;
  margin-top: -24px;   /* Pull up 24px (shifted 4px downwards to cover straight section edges) */
  margin-bottom: -32px;/* Pull down 32px (shifted 4px downwards to cover straight section edges) */
  line-height: 0;
}

.paper-tear-svg svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.paper-tear-svg svg path {
  filter: url(#paper-tear-edge);
}

/* Cream on dark → paper tears into cream sections */
.paper-tear-svg--light svg {
  fill: var(--color-cream-light);
}

.paper-tear-svg--cream svg {
  fill: var(--color-cream);
}

.paper-tear-svg--dark svg {
  fill: var(--color-dark);
}

.paper-tear-svg--taupe svg {
  fill: var(--color-taupe);
}

.paper-tear-svg--cream-mid svg {
  fill: var(--color-cream-mid);
}

/* ─── Paper Texture Background Overlay ─── */
.paper-texture {
  position: relative;
}

.paper-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
  mix-blend-mode: multiply;
}

/* ─────────────────────────────────────────
   NAVBAR LOGO — Larger size
   ───────────────────────────────────────── */

.nav__logo-img {
  height: 52px !important;
  /* Scaled down to a sleek, refined height since padding was cropped */
  max-width: 240px;
  transition: height var(--transition-base);
}

@media (max-width: 768px) {
  .nav__logo-img {
    height: 38px !important;
    /* Proportional and elegant size on mobile screens */
    max-width: 180px;
  }
}

/* ─────────────────────────────────────────
   HERO CTA BUTTONS — Premium Tactile Paper/Cardboard Style (Desktop & Mobile)
   ───────────────────────────────────────── */

/* Container default row layout */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

/* Each button becomes a textured paper card */
.hero__cta .btn {
  border-radius: 0 !important;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  padding: 16px 28px !important;
  position: relative;
  z-index: 1;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

/* Paper/cardboard shape with rough torn edges */
.hero__cta .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  box-shadow: 3px 5px 12px rgba(28, 26, 23, 0.22);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: url(#paper-tear-edge);
}

/* Cardboard fiber / speckle overlay */
.hero__cta .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.8;
  filter: url(#paper-tear-edge);
}

/* Ensure SVG icons sit on top of fiber overlay */
.hero__cta .btn svg,
.hero__cta .btn span {
  position: relative;
  z-index: 2;
}

/* Button 1: Warm Taupe */
.hero__cta .btn:nth-child(1) {
  transform: rotate(-1.5deg);
  color: var(--color-cream-light) !important;
}

.hero__cta .btn:nth-child(1)::before {
  background: var(--color-taupe);
}

.hero__cta .btn:nth-child(1):hover {
  transform: rotate(-0.5deg) scale(1.04);
}

.hero__cta .btn:nth-child(1):hover::before {
  box-shadow: 6px 12px 24px rgba(28, 26, 23, 0.30);
}

.hero__cta .btn:nth-child(1):active {
  transform: rotate(-2.2deg) scale(0.97);
}

.hero__cta .btn:nth-child(1):active::before {
  box-shadow: 1px 2px 6px rgba(28, 26, 23, 0.40);
}

/* Button 2: Kraft Beige */
.hero__cta .btn:nth-child(2) {
  transform: rotate(1.2deg);
  color: var(--color-dark) !important;
}

.hero__cta .btn:nth-child(2)::before {
  background: var(--color-beige);
}

.hero__cta .btn:nth-child(2):hover {
  transform: rotate(0.2deg) scale(1.04);
}

.hero__cta .btn:nth-child(2):hover::before {
  box-shadow: 6px 12px 24px rgba(28, 26, 23, 0.30);
}

.hero__cta .btn:nth-child(2):active {
  transform: rotate(2deg) scale(0.97);
}

.hero__cta .btn:nth-child(2):active::before {
  box-shadow: 1px 2px 6px rgba(28, 26, 23, 0.40);
}

/* Button 3: Champagne Cream */
.hero__cta .btn:nth-child(3) {
  transform: rotate(-0.8deg);
  color: var(--color-dark) !important;
}

.hero__cta .btn:nth-child(3)::before {
  background: var(--color-cream-mid);
}

.hero__cta .btn:nth-child(3):hover {
  transform: rotate(-1.8deg) scale(1.04);
}

.hero__cta .btn:nth-child(3):hover::before {
  box-shadow: 6px 12px 24px rgba(28, 26, 23, 0.30);
}

.hero__cta .btn:nth-child(3):active {
  transform: rotate(-0.3deg) scale(0.97);
}

.hero__cta .btn:nth-child(3):active::before {
  box-shadow: 1px 2px 6px rgba(28, 26, 23, 0.40);
}

/* Mobile Overrides */
@media (max-width: 768px) {
  .hero__cta {
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    position: relative;
    padding-block: var(--space-4);
  }

  .hero__cta .btn {
    width: 100% !important;
    max-width: 320px;
    text-align: left;
    justify-content: space-between;
  }

  .hero__cta .btn:nth-child(2) {
    margin-top: -6px;
    /* overlap stack effect */
  }

  .hero__cta .btn:nth-child(3) {
    margin-top: -6px;
    /* overlap stack effect */
  }
}

/* ─────────────────────────────────────────
   VENTURE CARD — Checkerboard Dark Card Style
   ───────────────────────────────────────── */
.venture-card--dark {
  background: var(--color-dark) !important;
  color: var(--color-cream) !important;
  border-color: rgba(137, 120, 92, 0.30) !important;
}

.venture-card--dark .venture-card__title {
  color: var(--color-cream) !important;
}

.venture-card--dark .venture-card__subtitle {
  color: var(--color-beige-light) !important;
}

.venture-card--dark .venture-card__desc {
  color: rgba(243, 239, 232, 0.75) !important;
}

.venture-card--dark .venture-card__number {
  color: rgba(137, 120, 92, 0.50) !important;
}

.venture-card--dark .venture-card__divider {
  background: linear-gradient(to right, var(--color-taupe-light), transparent) !important;
}

/* Hover transitions inside dark cards */
.venture-card--dark:hover {
  border-color: var(--color-taupe) !important;
  box-shadow: 0 12px 36px rgba(28, 26, 23, 0.50) !important;
}

/* ─────────────────────────────────────────
   VENTURE CARD — Action Buttons (Website & Directions)
   ───────────────────────────────────────── */

/* Force card body to be a flex column so we can align actions at the bottom */
.venture-card__body {
  display: flex;
  flex-direction: column;
}

.venture-card__actions {
  display: flex;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(137, 120, 92, 0.15);
}

.venture-card--dark .venture-card__actions {
  border-top-color: rgba(243, 239, 232, 0.10);
}

/* Base button for actions */
.btn--card-action {
  flex: 1;
  font-size: 0.70rem !important;
  padding: 11px 12px !important;
  letter-spacing: 0.08em;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: var(--space-2);
  border-radius: 4px !important;
  transition: all var(--transition-base);
  height: auto !important;
  cursor: pointer;
}

/* Light Card buttons */
.venture-card .btn--card-action.btn--primary {
  background: var(--color-taupe) !important;
  color: var(--color-cream-light) !important;
}

.venture-card .btn--card-action.btn--primary:hover {
  background: var(--color-taupe-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(137, 120, 92, 0.25);
}

.venture-card .btn--card-action.btn--outline {
  background: transparent !important;
  border: 1px solid rgba(137, 120, 92, 0.35) !important;
  color: var(--color-taupe) !important;
}

.venture-card .btn--card-action.btn--outline:hover {
  background: rgba(137, 120, 92, 0.06) !important;
  border-color: var(--color-taupe) !important;
  transform: translateY(-2px);
}

/* Dark Card buttons */
.venture-card--dark .btn--card-action.btn--primary {
  background: var(--color-cream) !important;
  color: var(--color-dark) !important;
}

.venture-card--dark .btn--card-action.btn--primary:hover {
  background: var(--color-beige-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 239, 232, 0.15);
}

.venture-card--dark .btn--card-action.btn--outline {
  background: transparent !important;
  border: 1px solid rgba(243, 239, 232, 0.25) !important;
  color: var(--color-cream) !important;
}

.venture-card--dark .btn--card-action.btn--outline:hover {
  background: rgba(243, 239, 232, 0.08) !important;
  border-color: var(--color-cream) !important;
  transform: translateY(-2px);
}

/* Icons inside card action buttons */
.btn--card-action svg.btn-icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.2px;
}

/* ─── Visually hide section eyebrows (OUR STORY, MEET THE FOUNDER, etc.) for clean layout, keeping SEO/Accessibility intact ─── */

.about__eyebrow,
.philosophy__eyebrow,
.founder__eyebrow,
.why-us__eyebrow,
.catering__eyebrow,
.cta-section__eyebrow,
.ventures__eyebrow {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ─────────────────────────────────────────
   CTA SECTION WITH PREMIUM GLASSMORPHIC BOOKING FORM
   ───────────────────────────────────────── */

.cta-section .container {
  max-width: var(--container-max);
}

.cta-section__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-12);
  align-items: center;
  text-align: left;
}

@media (max-width: 900px) {
  .cta-section__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }
}

/* Sleek Glassmorphic Booking Form Card */
.booking-card {
  background: rgba(28, 26, 23, 0.45);
  border: 1px solid rgba(243, 239, 232, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-6) var(--space-6);
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 20px 48px rgba(28, 26, 23, 0.35);
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .booking-card {
    padding: var(--space-8) var(--space-8);
  }
}

.booking-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-light);
  color: var(--color-cream);
  margin-bottom: var(--space-2);
}

.booking-card__sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(243, 239, 232, 0.60);
  margin-bottom: var(--space-5);
  line-height: 1.4;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 500px) {
  .booking-form__row {
    grid-template-columns: 1fr;
  }
}

.booking-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-form__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 239, 232, 0.75);
}

.booking-form__input,
.booking-form__select,
.booking-form__textarea {
  background: rgba(243, 239, 232, 0.05);
  border: 1px solid rgba(243, 239, 232, 0.15);
  color: var(--color-cream) !important;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 12px 14px;
  border-radius: 4px;
  outline: none;
  transition: all var(--transition-base);
}

.booking-form__input::placeholder,
.booking-form__textarea::placeholder {
  color: rgba(243, 239, 232, 0.35);
}

.booking-form__input:focus,
.booking-form__select:focus,
.booking-form__textarea:focus {
  border-color: var(--color-beige-light);
  background: rgba(243, 239, 232, 0.10);
  box-shadow: 0 0 0 3px rgba(243, 239, 232, 0.06);
}

.booking-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f3efe8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.booking-form__select option {
  background: var(--color-taupe-dark);
  color: var(--color-cream);
}

.btn--booking-submit {
  background: var(--color-cream) !important;
  color: var(--color-dark) !important;
  border: 1px solid var(--color-cream) !important;
  border-radius: 4px !important;
  font-family: var(--font-body);
  font-size: 0.75rem !important;
  font-weight: var(--fw-semibold) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px !important;
  justify-content: center;
  margin-top: var(--space-2);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn--booking-submit:hover {
  background: var(--color-cream-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 26, 23, 0.30);
}