/* ============================================================
   DESIGN TOKENS — CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --clr-primary: #fb696b;
  --clr-primary-glow: rgba(251, 105, 107, 0.2);
  --clr-beige: #f7f4ef;
  --clr-light: #f9f8f7;
  --clr-dark: #1d0d09;
  --clr-text: #35332f;
  --clr-gray-text: #626262;
  --clr-black: #000000;
  --clr-white: #ffffff;
  --clr-gray-btn: #e3e3e3;
  --clr-border: rgba(0, 0, 0, 0.1);
  --clr-faq-dark: #1b1139;

  /* Typography */
  --ff-fraunces: "Fraunces", serif;
  --ff-raleway: "Raleway", sans-serif;
  --ff-playfair: "Playfair Display", serif;
  --ff-cormorant: "Cormorant Garamond", serif;
  --fv-fraunces: "SOFT" 0, "WONK" 1;

  /* Spacing */
  --navbar-h: 100px;
  --section-px: 60px;
  --card-radius: 12px;
  --btn-radius: 10px;

  /* Shadows */
  --shadow-btn-primary: 0px 3px 5px 0px rgba(251, 105, 107, 0.2);
  --shadow-card: 0px 0.5px 2px 0px rgba(0, 0, 0, 0.25);
  --shadow-card-active: 0px 4px 0px 0px #fb696b;
  --shadow-faq: 0px 24px 32px -14px rgba(149, 149, 149, 0.25);
  --shadow-nav: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   GLOBAL BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-playfair);
  background-color: var(--clr-beige);
  color: var(--clr-black);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   TYPOGRAPHY UTILITY CLASSES
   ============================================================ */
.ff-fraunces {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
}
.ff-raleway {
  font-family: var(--ff-raleway);
}
.ff-playfair {
  font-family: var(--ff-playfair);
}
.ff-cormorant {
  font-family: var(--ff-cormorant);
}

.text-primary-custom {
  color: var(--clr-primary) !important;
}
.text-gray-custom {
  color: var(--clr-gray-text) !important;
}
.tracking-wide {
  letter-spacing: 0.96px;
}
.tracking-wider {
  letter-spacing: 1.5px;
}
.tracking-widest {
  letter-spacing: 2.64px;
}

/* ============================================================
   SECTION LABEL (e.g. "OUR PHILOSOPHY", "ABOUT US")
   ============================================================ */
.section-label {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 28px;
  line-height: 62px;
  color: var(--clr-primary);
  letter-spacing: 0.04em;
  text-align: center;
  display: block;
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 10px 20px;
  min-width: 166px;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: var(--clr-primary);
  box-shadow: var(--shadow-btn-primary);
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: var(--clr-white);
  text-transform: capitalize;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.btn-primary-custom:hover {
  opacity: 0.88;
  color: var(--clr-white);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 10px 20px;
  min-width: 156px;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background-color: var(--clr-gray-btn);
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #555555;
  text-transform: capitalize;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.btn-outline-custom:hover {
  opacity: 0.8;
  color: #555;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-navbar {
  min-height: var(--navbar-h);
  background-color: var(--clr-beige);
  box-shadow: var(--shadow-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 var(--section-px);
  transition: box-shadow 0.3s ease;
}
.site-navbar .navbar-brand {
  padding: 0;
  margin-right: 0;
  flex-shrink: 0;
}
.navbar-logo {
  height: 77px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  transform: scale(1.5);
  transform-origin: left center;
}
/* Slightly smaller logo on mid-size screens */
@media (max-width: 1199px) {
  .navbar-logo {
    height: 60px;
    transform: scale(1.4);
  }
}
@media (max-width: 991px) {
  .navbar-logo {
    height: 52px;
    transform: scale(1.3);
  }
  .site-navbar {
    padding: 12px 20px;
    min-height: unset;
  }
}
@media (max-width: 575px) {
  .navbar-logo {
    height: 44px;
    transform: scale(1.2);
  }
  .site-navbar {
    padding: 10px 16px;
  }
}

.navbar-nav {
  gap: clamp(16px, 2vw, 40px);
}

.nav-link-custom {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 62px;
  letter-spacing: 0.36px;
  color: var(--clr-gray-text) !important;
  padding: 0 !important;
  white-space: nowrap;
  transition: color 0.2s ease;
}
/* On collapsed mobile menu, give links comfortable tap targets */
@media (max-width: 991px) {
  .navbar-nav {
    gap: 0;
    padding: 8px 0 16px;
  }
  .nav-link-custom {
    font-size: 16px;
    line-height: 1;
    padding: 10px 4px !important;
  }
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--clr-primary) !important;
}

.navbar-toggler {
  border-color: var(--clr-primary);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fb696b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 640px;
  background-image: url("/images/hero-image.png");
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-start;
  padding-top: 200px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--clr-white);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.hero-subtitle {
  font-family: var(--ff-raleway);
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  white-space: nowrap;
  letter-spacing: 0.96px;
  margin: 0;
}

.hero-headline {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-size: 66px;
  line-height: 76px;
  white-space: nowrap;
  letter-spacing: 2.5px;
  margin: 0;
}

.hero-headline .headline-bold {
  font-weight: 500;
}
.hero-headline .headline-italic {
  font-weight: 400;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 17px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
.philosophy-section {
  background-color: var(--clr-light);
  padding: 100px var(--section-px);
}

.philosophy-inner {
  max-width: 1027px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.philosophy-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 300;
  font-size: 44px;
  line-height: 60px;
  color: var(--clr-black);
  margin: 0;
}

.philosophy-heading .line-coral {
  color: var(--clr-primary);
}

.philosophy-body {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.56px;
  color: var(--clr-black);
  margin-top: 44px;
}

.philosophy-divider {
  width: 133px;
  height: 5px;
  border: none;
  margin-top: 20px;
  color: var(--clr-primary);
}

.philosophy-divider hr {
  width: 100%;
  height: 100%;
  background-color: #fb696b;
  border: none;
  opacity: 1;
}
/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background-color: var(--clr-beige);
  padding: 100px var(--section-px);
  overflow: hidden;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 596px;
  height: 634px;
  border-radius: 8px;
  overflow: hidden;
  white-space: nowrap;
}

.about-image-shape {
  position: absolute;
  inset: 0;
  overflow: hidden;

  height: 100%;
  width: 100%;
}

.about-image-shape img {
  width: 110%;
  height: 110%;
  border: 2px;
  object-fit: contain;
  object-position: center;
  margin-left: -5%;
  margin-top: -2%;
}

.about-text {
  padding-left: 40px;
}

.about-label {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 28px;
  line-height: 78px;
  letter-spacing: 0.28px;
  color: var(--clr-primary);
  display: block;
  text-align: left;
}

.about-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 56px;
  line-height: 78px;
  letter-spacing: 0.66px;
  color: var(--clr-black);
  margin: 0 0 32px;
}

.about-body {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.28px;
  color: var(--clr-black);
  text-align: justify;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background-color: var(--clr-light);
  padding: 100px var(--section-px);
}

.services-header {
  max-width: 1027px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 98px;
}

.services-header .section-label {
  text-align: center;
  font-size: 26px;
  line-height: 62px;
}

.services-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 300;
  font-size: 44px;
  line-height: 60px;
  color: var(--clr-black);
  margin: 0;
  text-transform: capitalize;
}

.services-heading .italic-coral {
  font-style: italic;
  color: var(--clr-primary);
}

.service-card {
  background-color: var(--clr-beige);
  border: 0.1px solid var(--clr-black);
  border-radius: var(--card-radius);
  height: 339px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 30px 41px;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-active);
}

.service-icon {
  width: 59px;
  height: 59px;
  object-fit: contain;
}

.service-card-title {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 28px;
  /* line-height: 72px; */
  color: var(--clr-black);
  margin: 0;
}

.service-card-desc {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  color: var(--clr-text);
  margin: 0;
}

.link-explore {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 28px;
  line-height: 62px;
  color: var(--clr-primary);
  text-decoration: underline;
  text-align: center;
  display: block;
  margin-top: 98px;
  transition: opacity 0.2s ease;
}
.link-explore:hover {
  opacity: 0.75;
  color: var(--clr-primary);
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section {
  background-color: var(--clr-beige);
  padding: 100px var(--section-px);
}

.portfolio-header {
  max-width: 1027px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 98px;
}

.portfolio-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 300;
  font-size: 44px;
  line-height: 44px;
  letter-spacing: 0.88px;
  color: var(--clr-black);
  margin: 0;
  text-align: center;
}

.portfolio-header .section-label {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
}

.services-header .section-label {
  text-align: center;
}

.portfolio-heading .italic-coral {
  font-style: italic;
  color: var(--clr-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 335px 1fr 335px;
  grid-template-rows: auto;
  gap: 33px;
  align-items: center;
}

.portfolio-col-left,
.portfolio-col-right {
  height: 514px;
  overflow: hidden;
  background: var(--clr-white);
}

.portfolio-col-left img,
.portfolio-col-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portfolio-col-middle {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.portfolio-row {
  display: flex;
  gap: 23px;
}

.portfolio-thumb {
  flex: 1;
  height: 206px;
  overflow: hidden;
  background: var(--clr-white);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-gallery {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 28px;
  line-height: 62px;
  color: var(--clr-primary);
  text-decoration: underline;
  text-align: center;
  display: block;
  margin-top: 98px;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
.link-gallery:hover {
  opacity: 0.75;
  color: var(--clr-primary);
}

/* ============================================================
   TESTIMONIAL SECTION
   ============================================================ */
.testimonial-section {
  background-color: var(--clr-light);
  padding: 120px var(--section-px);
  text-align: center;
}

.testimonial-inner {
  max-width: 1159px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.testimonial-label {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 22px;
  line-height: 62px;
  color: var(--clr-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-quote {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 44px;
  line-height: 60px;
  letter-spacing: 0.44px;
  color: var(--clr-black);
  text-transform: lowercase;
  margin: 0;
}

.testimonial-author {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 28px;
  line-height: 62px;
  color: var(--clr-primary);
  text-transform: lowercase;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background-color: var(--clr-beige);
  padding: 80px var(--section-px);
}

.faq-title {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--clr-text);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 48px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Custom FAQ accordion card */
.faq-card {
  background: var(--clr-white);
  border-radius: 4.9px;
  box-shadow: var(--shadow-faq);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 28px 28px 56px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 3px;
  border-radius: 20px;
  opacity: 0.8;
}

/* Collapsed state: dark + icon */
.faq-card:not(.open) .faq-question::before {
  background-color: var(--clr-faq-dark);
}

/* Expanded state: coral bar */
.faq-card.open .faq-question::before {
  background-color: var(--clr-primary);
}

.faq-question-text {
  font-family: var(--ff-raleway);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--clr-faq-dark);
  opacity: 0.88;
  flex: 1;
}

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
  margin-right: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--clr-faq-dark);
  border-radius: 20px;
  opacity: 0.8;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.faq-icon::before {
  width: 18px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 3px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Open state hides the vertical bar (turns + to −) */
.faq-card.open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 28px 0 56px;
}
.faq-card.open .faq-answer {
  max-height: 300px;
  padding-bottom: 28px;
}

.faq-answer p {
  font-family: var(--ff-raleway);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.507;
  letter-spacing: 0.1px;
  color: #363049;
  opacity: 0.7;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--clr-beige);
  border-top: 1.5px solid rgba(0, 0, 0, 0.1);
  padding: 60px var(--section-px) 0;
  overflow: hidden;
}

.footer-brand-name {
  font-family: var(--ff-cormorant);
  font-weight: 600;
  font-size: 26px;
  line-height: normal;
  color: var(--clr-black);
  display: block;
  margin-top: 12px;
  text-align: center;
}

.footer-brand-sub {
  font-family: var(--ff-cormorant);
  font-weight: 600;
  font-size: 20px;
  color: var(--clr-text);
  display: block;
  margin-top: 4px;
  text-align: center;
}

.footer-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.footer-contact-col {
  padding: 20px 0;
}

.footer-col-title {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 30px;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-contact-icon {
  font-size: 22px;
  color: #f56b6b;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.footer-contact-text {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #111111;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f56b6b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link i {
  font-size: 22px;
  line-height: 1;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-list li,
.footer-list a {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: var(--clr-black);
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--clr-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 40px calc(-1 * var(--section-px)) 0;
  padding: 20px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 16px;
  color: var(--clr-text);
  white-space: nowrap;
}

.footer-copyright img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

.footer-legal {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 16px;
  color: var(--clr-black);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--clr-primary);
}

/* Portfolio responsive visibility */
.portfolio-grid--desktop {
  display: grid;
}
.portfolio-grid--mobile {
  display: none !important;
}
.portfolio-thumb--mobile {
  height: 220px;
}

/* ============================================================
   RESPONSIVE — TABLET (md) & MOBILE (sm)
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --section-px: 40px;
  }

  .hero-headline {
    font-size: 52px;
    line-height: 62px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .portfolio-col-left,
  .portfolio-col-right {
    height: 400px;
  }
}

@media (max-width: 991px) {
  :root {
    --section-px: 30px;
    --navbar-h: auto;
  }

  /* Navbar collapses */
  .site-navbar {
    height: auto;
    padding: 16px 30px;
  }
  .navbar-logo {
    height: 56px;
  }
  .navbar-nav {
    gap: 0;
    flex-direction: column;
    padding: 16px 0;
  }
  .nav-link-custom {
    line-height: 2.5;
    font-size: 16px;
  }

  /* Hero */
  .hero-section {
    min-height: 520px;
    padding-top: 80px;
  }
  .hero-headline {
    font-size: 42px;
    line-height: 52px;
  }
  .hero-subtitle {
    font-size: 18px;
  }

  /* About */
  .about-image-wrap {
    max-width: 100%;
    height: 400px;
    margin-bottom: 48px;
  }
  .about-text {
    padding-left: 0;
  }
  .about-heading {
    font-size: 44px;
    line-height: 56px;
  }
  .about-body {
    font-size: 20px;
  }

  /* Services */
  .services-header {
    margin-bottom: 48px;
  }
  .link-explore {
    margin-top: 48px;
  }

  /* Portfolio */
  .portfolio-grid--desktop {
    display: none !important;
  }
  .portfolio-grid--mobile {
    display: flex !important;
    flex-wrap: wrap;
  }
  .portfolio-col-left,
  .portfolio-col-right {
    height: 320px;
  }
  .portfolio-thumb {
    height: 160px;
  }
  .link-gallery {
    margin-top: 40px;
  }

  /* Testimonial */
  .testimonial-quote {
    font-size: 28px;
    line-height: 44px;
  }

  /* FAQ */
  .faq-section {
    padding: 60px var(--section-px);
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  :root {
    --section-px: 20px;
  }

  .hero-section {
    padding-top: 60px;
    min-height: 440px;
  }
  .hero-headline {
    font-size: 32px;
    line-height: 42px;
    white-space: normal;
  }
  .hero-subtitle {
    font-size: 16px;
    white-space: normal;
  }

  .section-label {
    font-size: 18px;
  }

  .philosophy-heading {
    font-size: 30px;
    line-height: 42px;
  }
  .philosophy-body {
    font-size: 18px;
    line-height: 32px;
  }

  .about-heading {
    font-size: 34px;
    line-height: 44px;
  }
  .about-label {
    font-size: 20px;
  }
  .about-body {
    font-size: 17px;
    line-height: 30px;
  }

  .services-heading {
    font-size: 32px;
  }
  .service-card {
    height: auto;
    min-height: 200px;
    padding: 32px 24px;
  }
  .service-card-title {
    font-size: 22px;
    line-height: 1.5;
  }
  .service-card-desc {
    font-size: 17px;
    line-height: 28px;
  }
  .link-explore {
    font-size: 20px;
  }

  .portfolio-row {
    flex-direction: column;
  }
  .portfolio-thumb {
    height: 220px;
  }

  .testimonial-quote {
    font-size: 22px;
    line-height: 36px;
  }
  .testimonial-label {
    font-size: 18px;
  }
  .testimonial-author {
    font-size: 20px;
  }

  .faq-title {
    font-size: 28px;
  }

  .footer-legal {
    gap: 24px;
  }
  .footer-social {
    gap: 8px;
  }
}

/* ============================================================
   ABOUT PAGE — INTRO SECTION
   ============================================================ */
.about-intro-section {
  background-color: var(--clr-light);
  padding: 100px var(--section-px);
  text-align: center;
}

.about-intro-inner {
  max-width: 1027px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.about-page-label {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 28px;
  line-height: 62px;
  color: var(--clr-primary);
  text-transform: uppercase;
  display: block;
}

.about-page-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 66px;
  line-height: 76px;
  letter-spacing: 2.64px;
  text-transform: capitalize;
  color: var(--clr-black);
  margin: 0;
}

.about-page-heading .italic-light-coral {
  font-weight: 300;
  font-style: italic;
  color: var(--clr-primary);
}

.about-intro-body {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.56px;
  color: var(--clr-black);
  text-align: center;
  margin-top: 26px;
}

/* ============================================================
   ABOUT PAGE — STATS SECTION
   ============================================================ */
.stats-section {
  background-color: var(--clr-white);
  padding: 55px var(--section-px);
}

.stats-inner {
  display: flex;
  gap: 114px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.stat-item {
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--ff-playfair);
  font-weight: 500;
  font-size: 60px;
  line-height: 62px;
  color: var(--clr-primary);
  letter-spacing: 0.36px;
  display: block;
}

.stat-label {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 32px;
  line-height: 62px;
  color: var(--clr-black);
  display: block;
}

/* ============================================================
   ABOUT PAGE — OUR STORY SECTION
   ============================================================ */
.story-section {
  background-color: var(--clr-beige);
  padding: 100px var(--section-px);
}

.story-inner {
  max-width: 1270px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 54px;
  align-items: flex-end;
}

.story-header {
  display: flex;
  gap: 31px;
  align-items: flex-start;
  width: 100%;
}

.story-accent-bar {
  width: 17px;
  min-height: 185px;
  flex-shrink: 0;
  border-radius: 2px;
  background: linear-gradient(to bottom, #fb696b 74.54%, #953e40 100%);
  align-self: stretch;
}

.story-header-text {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.story-label {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 28px;
  line-height: 44px;
  letter-spacing: 0.56px;
  color: var(--clr-primary);
  display: block;
}

.story-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 44px;
  line-height: 60px;
  color: var(--clr-black);
  margin: 0;
}

.story-body {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0.64px;
  color: var(--clr-black);
  text-align: justify;
  max-width: 1222px;
  width: 100%;
}

/* ============================================================
   ABOUT PAGE — VALUES SECTION
   ============================================================ */
.values-section {
  background-color: #fafafa;
  padding: 100px var(--section-px);
}

.values-header {
  max-width: 1027px;
  margin: 0 auto 78px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.values-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 300;
  font-size: 44px;
  line-height: 60px;
  text-transform: capitalize;
  color: var(--clr-black);
  margin: 0;
}

.values-heading .italic-coral {
  font-style: italic;
  color: var(--clr-primary);
}

.values-row {
  row-gap: 80px;
}

.value-item {
  display: flex;
  gap: 31px;
  align-items: flex-start;
}

.value-line {
  width: 4px;
  min-height: 140px;
  background: linear-gradient(
    to bottom,
    var(--clr-primary) 0%,
    rgba(251, 105, 107, 0.15) 100%
  );
  flex-shrink: 0;
  border-radius: 2px;
  align-self: stretch;
}

.value-title {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 40px;
  line-height: 72px;
  color: var(--clr-black);
  margin: 0 0 12px;
}

.value-desc {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 28px;
  line-height: 42px;
  letter-spacing: 0.28px;
  color: var(--clr-text);
  margin: 0;
}

/* ============================================================
   ABOUT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .about-page-heading {
    font-size: 52px;
    line-height: 64px;
  }
  .story-body {
    font-size: 26px;
    line-height: 42px;
  }
  .stat-number {
    font-size: 48px;
  }
  .stat-label {
    font-size: 26px;
  }
  .stats-inner {
    gap: 64px;
  }
}

@media (max-width: 991px) {
  .about-intro-body {
    font-size: 20px;
    line-height: 34px;
  }
  .about-page-heading {
    font-size: 42px;
    line-height: 54px;
  }
  .story-accent-bar {
    min-height: 140px;
  }
  .story-heading {
    font-size: 34px;
    line-height: 48px;
  }
  .story-body {
    font-size: 20px;
    line-height: 36px;
  }
  .values-row {
    row-gap: 40px;
  }
  .value-title {
    font-size: 30px;
    line-height: 1.4;
  }
  .value-desc {
    font-size: 20px;
    line-height: 34px;
  }
  .stats-inner {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .about-intro-section {
    padding: 60px var(--section-px);
  }
  .about-page-label {
    font-size: 20px;
  }
  .about-page-heading {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 1px;
  }
  .about-intro-body {
    font-size: 17px;
  }
  .stats-section {
    padding: 40px var(--section-px);
  }
  .stats-inner {
    gap: 28px;
  }
  .stat-number {
    font-size: 36px;
    line-height: 44px;
  }
  .stat-label {
    font-size: 18px;
    line-height: 1.4;
  }
  .story-section {
    padding: 60px var(--section-px);
  }
  .story-header {
    flex-direction: column;
    gap: 20px;
  }
  .story-accent-bar {
    width: 100%;
    min-height: 6px;
  }
  .story-heading {
    font-size: 26px;
    line-height: 40px;
  }
  .story-body {
    font-size: 17px;
    line-height: 30px;
  }
  .values-section {
    padding: 60px var(--section-px);
  }
  .values-heading {
    font-size: 30px;
    line-height: 44px;
  }
  .value-title {
    font-size: 24px;
  }
  .value-desc {
    font-size: 17px;
    line-height: 28px;
  }
}

/* ============================================================
   QUOTE PAGE — LAYOUT & STRUCTURE
   ============================================================ */
.quote-page {
  background-color: var(--clr-beige);
  min-height: 100vh;
  padding: 60px var(--section-px) 80px;
  position: relative;
  overflow-x: hidden;
}

.quote-container {
  max-width: 1278px;
  margin: 0 auto;
}

/* Right decorative bar */
.quote-right-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 323px;
  background: var(--clr-primary);
  border-radius: 4px 0 0 4px;
  z-index: 10;
  pointer-events: none;
}

/* Back link */
.quote-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.44px;
  color: var(--clr-gray-text);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color 0.2s ease;
}
.quote-back-link:hover {
  color: var(--clr-primary);
}

/* Page hero text */
.quote-hero {
  margin-bottom: 40px;
}

.quote-title {
  font-family: var(--ff-playfair);
  font-weight: 500;
  font-size: 34px;
  line-height: normal;
  color: var(--clr-primary);
  margin: 0 0 14px;
}

.quote-subtitle {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 28px;
  line-height: normal;
  color: var(--clr-black);
  margin: 0;
}

/* ============================================================
   QUOTE PAGE — STEP INDICATOR
   ============================================================ */
.quote-stepper {
  display: flex;
  align-items: center;
  max-width: 960px;
  margin-bottom: 48px;
}

.stepper-step {
  display: flex;
  align-items: center;
  flex: 1;
}
.stepper-step:last-child {
  flex: 0;
}

.stepper-circle {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-raleway);
  font-weight: 600;
  font-size: 22px;
  color: var(--clr-white);
  flex-shrink: 0;
  background: #c8c8c8;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

/* Current step — solid coral + pulsing ring */
.stepper-circle.active {
  background: var(--clr-primary);
  box-shadow: 0 0 0 6px rgba(251, 105, 107, 0.22);
  transform: scale(1.1);
  animation: stepper-pulse 1.8s ease-in-out infinite;
}

@keyframes stepper-pulse {
  0%   { box-shadow: 0 0 0 4px rgba(251, 105, 107, 0.25); }
  50%  { box-shadow: 0 0 0 10px rgba(251, 105, 107, 0.08); }
  100% { box-shadow: 0 0 0 4px rgba(251, 105, 107, 0.25); }
}

/* Completed step — solid coral, no ring */
.stepper-circle.completed {
  background: var(--clr-primary);
  transform: scale(1);
  animation: none;
}

/* Legacy alias kept for safety */
.stepper-circle.done {
  background: var(--clr-primary);
}

.stepper-line {
  flex: 1;
  height: 1.5px;
  background: #d0d0d0;
}

/* ============================================================
   QUOTE PAGE — FORM CARDS (shared base)
   ============================================================ */
.quote-card {
  background: var(--clr-white);
  border: 0.5px solid rgba(0, 0, 0, 0.4);
  border-radius: 22px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  padding: 38px 55px;
  margin-bottom: 28px;
  max-width: 1278px;
}
.quote-card--tinted {
  background: #fafafa;
}

.quote-card-title {
  font-family: var(--ff-playfair);
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0.48px;
  color: var(--clr-primary);
  display: block;
  margin-bottom: 30px;
}

/* ============================================================
   QUOTE PAGE — FORM FIELDS
   ============================================================ */
.form-label-custom {
  font-family: var(--ff-playfair);
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 0.44px;
  color: var(--clr-gray-text);
  display: block;
  margin-bottom: 7px;
}

.form-control-custom {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-size: 18px;
  color: var(--clr-gray-text);
  letter-spacing: 0.36px;
  background: transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(251, 105, 107, 0.12);
}

/* Select dropdown — quote page */
.form-select-custom {
  appearance: none;
  -webkit-appearance: none;
  /* Coral FA-style chevron-down */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 5.5l5 5 5-5' stroke='%23fb696b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  padding-right: 46px;
  cursor: pointer;
  color: var(--clr-gray-text);
}
.form-select-custom:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(251, 105, 107, 0.12);
}
/* Placeholder option — muted */
.form-select-custom option[value=""][disabled] {
  color: rgba(0, 0, 0, 0.35);
}
.form-select-custom option {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  color: var(--clr-black);
  background-color: var(--clr-beige);
  padding: 8px 12px;
}
/* Override the browser's default blue hover/selected highlight */
.form-select-custom option:hover,
.form-select-custom option:focus {
  background: linear-gradient(var(--clr-primary), var(--clr-primary));
  background-color: var(--clr-primary) !important;
  color: var(--clr-white) !important;
}
.form-select-custom option:checked {
  background-color: var(--clr-primary) !important;
  color: var(--clr-white) !important;
}

.form-input-group {
  margin-bottom: 24px;
}
.form-input-group:last-child {
  margin-bottom: 0;
}

/* Field label row with icon (e.g. venue, date) */
.field-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.field-label-row .form-label-custom {
  margin-bottom: 0;
}

.field-icon {
  font-size: 18px;
  color: var(--clr-gray-text);
  width: 22px;
  flex-shrink: 0;
}

/* A.S / B.S calendar toggle pill */
.calendar-toggle {
  display: inline-flex;
  align-items: center;
  height: 27px;
  background: rgba(251, 105, 107, 0.08);
  border: 0.5px solid var(--clr-primary);
  border-radius: 4px;
  overflow: hidden;
  margin-left: auto;
  flex-shrink: 0;
}
.cal-btn {
  padding: 0 9px;
  border: none;
  background: none;
  font-family: var(--ff-playfair);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  color: var(--clr-gray-text);
  cursor: pointer;
  line-height: 27px;
  transition: color 0.15s ease;
}
.cal-btn.active {
  color: var(--clr-primary);
}
.cal-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(251, 105, 107, 0.55);
}

/* ============================================================
   QUOTE PAGE — SERVICE CHECKBOXES
   ============================================================ */
.services-row {
  display: flex;
  gap: 67px;
  flex-wrap: wrap;
}

.services-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 155px;
}

.service-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.service-check {
  width: 27px;
  height: 26px;
  border: 1px solid var(--clr-primary);
  border-radius: 6px;
  background: rgba(251, 105, 107, 0.08);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background 0.15s ease;
}
.service-check:checked {
  background: var(--clr-primary);
}
.service-check:checked::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 11px;
  border: 2.5px solid var(--clr-white);
  border-top: none;
  border-left: none;
  top: 3px;
  left: 8px;
  transform: rotate(45deg);
}
.service-check:focus {
  outline: 2px solid rgba(251, 105, 107, 0.4);
  outline-offset: 2px;
}

.service-label {
  font-family: var(--ff-playfair);
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
  letter-spacing: 0.36px;
  color: var(--clr-gray-text);
  white-space: nowrap;
}

/* ============================================================
   QUOTE PAGE — UPLOAD ZONE
   ============================================================ */
.upload-zone {
  border: 1.5px dashed var(--clr-primary);
  border-radius: 8px;
  padding: 48px;
  background: rgba(251, 105, 107, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  min-height: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.upload-zone:hover,
.upload-zone.drag-over {
  background: rgba(251, 105, 107, 0.15);
}

.upload-zone-text {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.36px;
  color: var(--clr-primary);
  margin: 0;
  text-align: center;
}

.upload-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 190px;
  border: 1px solid var(--clr-primary);
  border-radius: 8px;
  background: transparent;
  font-family: var(--ff-raleway);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.36px;
  color: var(--clr-primary);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.upload-btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.upload-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.upload-file-name {
  font-family: var(--ff-fraunces);
  font-size: 15px;
  color: var(--clr-gray-text);
  margin: 0;
}

/* ============================================================
   QUOTE PAGE — ACTION BUTTONS
   ============================================================ */
.quote-actions {
  display: flex;
  gap: 32px;
  max-width: 1278px;
  margin-top: 8px;
}

.btn-cancel {
  flex: 1;
  height: 65px;
  border: 1px solid var(--clr-primary);
  border-radius: 8px;
  background: rgba(251, 105, 107, 0.08);
  font-family: var(--ff-raleway);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.22px;
  color: var(--clr-primary);
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-cancel:hover {
  background: rgba(251, 105, 107, 0.16);
  color: var(--clr-primary);
}

.btn-request {
  flex: 1;
  height: 65px;
  border: none;
  border-radius: 8px;
  background: var(--clr-primary);
  box-shadow: var(--shadow-btn-primary);
  font-family: var(--ff-raleway);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.22px;
  color: var(--clr-white);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn-request:hover {
  opacity: 0.88;
}

/* ============================================================
   QUOTE PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .quote-card {
    padding: 32px 40px;
  }
  .services-row {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .quote-subtitle {
    font-size: 20px;
  }
  .quote-card {
    padding: 28px 28px;
    border-radius: 18px;
  }
  .form-label-custom {
    font-size: 18px;
    line-height: 1.5;
  }
  .form-control-custom {
    height: 48px;
    font-size: 16px;
  }
  .services-row {
    gap: 28px;
  }
  .quote-right-bar {
    display: none;
  }
}

@media (max-width: 767px) {
  .quote-page {
    padding: 40px var(--section-px) 60px;
  }
  .quote-back-link {
    font-size: 17px;
    margin-bottom: 24px;
  }
  .quote-title {
    font-size: 24px;
  }
  .quote-subtitle {
    font-size: 17px;
  }
  .stepper-circle {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .quote-card {
    padding: 22px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
  }
  .quote-card-title {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .form-label-custom {
    font-size: 16px;
  }
  .form-control-custom {
    height: 46px;
    font-size: 15px;
  }
  .services-row {
    gap: 16px;
  }
  .services-col {
    min-width: 130px;
  }
  .service-label {
    font-size: 15px;
    line-height: 1.5;
  }
  .quote-actions {
    flex-direction: column;
    gap: 14px;
  }
  .btn-cancel,
  .btn-request {
    height: 56px;
    font-size: 18px;
  }
  .calendar-toggle {
    margin-left: 0;
    margin-top: 6px;
  }
  .field-label-row {
    flex-wrap: wrap;
  }
  .quote-stepper {
    max-width: 100%;
  }
  .stepper-circle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* ============================================================
   GALLERY MODAL
   ============================================================ */

.gallery-section {
  background-color: var(--clr-beige);
  padding: 80px var(--section-px) 100px;
}
.gallery-section .row.g-4 {
  --bs-gutter-y: 3rem; /* 48px vertical - double */
}
.gallery-item-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--clr-primary);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  aspect-ratio: 4/3;
  height: 100%;
}

.gallery-item-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-item-wrapper:hover .gallery-img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .gallery-section {
    padding: 60px var(--section-px);
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 40px var(--section-px);
  }
  .gallery-item-wrapper {
    aspect-ratio: 4/3;
  }
}

.gallery-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 16px;
  backdrop-filter: blur(2px);
}

.gallery-modal-overlay[hidden] {
  display: none;
}

.gallery-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 0;
}

.gallery-modal-title {
  font-family: var(--ff-playfair);
  font-size: 22px;
  font-weight: 600;
  color: var(--clr-dark);
  margin: 0;
}

.gallery-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--clr-gray-text);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
  transition:
    color 0.2s,
    background 0.2s;
}
.gallery-modal-close:hover {
  color: var(--clr-primary);
  background: rgba(251, 105, 107, 0.1);
}

.gallery-modal-hint {
  font-family: var(--ff-raleway);
  font-size: 14px;
  color: var(--clr-gray-text);
  margin: 8px 28px 0;
}

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
  padding: 20px 28px;
  overflow-y: auto;
  flex: 1;
  align-content: start;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  border-color: rgba(251, 105, 107, 0.5);
  box-shadow: 0 4px 16px rgba(251, 105, 107, 0.2);
}

.gallery-item.selected {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(251, 105, 107, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.18s;
}

.gallery-item.selected img {
  opacity: 0.82;
}

.gallery-item-tick {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.18s,
    transform 0.18s;
}

.gallery-item.selected .gallery-item-tick {
  opacity: 1;
  transform: scale(1);
}

.gallery-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  gap: 16px;
}

.gallery-selected-count {
  font-family: var(--ff-raleway);
  font-weight: 600;
  font-size: 15px;
  color: var(--clr-gray-text);
}

.gallery-confirm-btn {
  height: 46px;
  padding: 0 28px;
  border-radius: 8px;
  border: none;
  background: var(--clr-primary);
  color: #fff;
  font-family: var(--ff-raleway);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.gallery-confirm-btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.gallery-confirm-btn:not(:disabled):hover {
  opacity: 0.88;
}
/* ================================================================
         CONTACT PAGE — LOCAL STYLES
      ================================================================ */

/* ---- Hero ---- */
.contact-hero {
  background-color: #f9f8f7;
  padding: 72px var(--section-px) 60px;
  text-align: center;
}

.contact-hero-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 66px);
  letter-spacing: 2.64px;
  line-height: 1.15;
  color: var(--clr-black);
  text-transform: capitalize;
  margin: 0 0 28px;
}

.contact-hero-heading .italic-coral {
  font-style: italic;
  color: var(--clr-primary);
}

.contact-hero-desc {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.6;
  letter-spacing: 0.56px;
  color: var(--clr-black);
  max-width: 860px;
  margin: 0 auto 32px;
  text-transform: capitalize;
}

.contact-hero-divider {
  width: 133px;
  height: 2px;
  background-color: var(--clr-primary);
  border: none;
  opacity: 1;
  margin: 0 auto;
}

/* ---- Main section ---- */
.contact-main {
  background-color: #fafafa;
  padding: 80px var(--section-px);
}

/* ---- Form column ---- */
.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label,
.contact-field .field-label {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.44px;
  color: rgba(0, 0, 0, 0.32);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0;
  padding: 6px 0;
  font-family: var(--ff-playfair);
  font-size: 18px;
  color: var(--clr-black);
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-bottom-color: var(--clr-primary);
  box-shadow: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #aaa;
  font-family: var(--ff-playfair);
  font-size: 18px;
}
.custom-select {
  position: relative;
  width: 100%;
}

.custom-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0;
  font-family: var(--ff-playfair);
  font-size: 18px;
  color: #aaa;
  cursor: pointer;
  transition: border-color 0.2s ease;
  width: 100%;
}

.custom-trigger.has-value {
  color: var(--clr-black);
}

.custom-trigger:hover {
  border-bottom-color: var(--clr-primary);
}

.custom-select.open .custom-trigger {
  border-bottom-color: var(--clr-primary);
}

.custom-trigger i {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.custom-select.open .custom-trigger i {
  transform: rotate(180deg);
  color: var(--clr-primary);
}

.custom-menu {
  display: none;
  position: absolute;
  width: 100%;
  background: var(--clr-beige);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.custom-select.open .custom-menu {
  display: block;
}

.custom-menu div {
  padding: 12px 16px;
  font-family: var(--ff-playfair);
  font-size: 16px;
  color: var(--clr-black);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.custom-menu div:hover {
  background: var(--clr-primary);
  color: #fff;
}
.contact-field textarea {
  resize: none;
  min-height: 110px;
}

/* Date field wrapper */
.date-wrapper {
  position: relative;
}

.contact-field input[type="date"] {
  color: var(--clr-gray-text);
}

.contact-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 225px;
  padding: 10px 20px;
  background-color: var(--clr-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--btn-radius);
  box-shadow: var(--shadow-btn-primary);
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.88px;
  color: var(--clr-white);
  text-transform: capitalize;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: 8px;
}

.contact-submit-btn:hover {
  opacity: 0.88;
}

/* ---- Info column ---- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-label {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 22px;
  line-height: 62px;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-item-title {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 40px;
  letter-spacing: 0.56px;
  color: var(--clr-black);
  text-transform: capitalize;
}

.contact-info-item-value {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 32px;
  color: var(--clr-black);
}

.contact-info-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.12);
  border: none;
  margin: 8px 0;
}

.contact-info-quote {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 34px;
  letter-spacing: 0.44px;
  color: var(--clr-primary);
  text-transform: capitalize;
}

/* ---- Map section ---- */
.contact-map-section {
  background-color: #fafafa;
  padding: 0 var(--section-px) 80px;
}

.contact-map-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 20px;
}

.contact-map-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 17px;
  color: var(--clr-gray-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
  padding-bottom: 1px;
}

.contact-map-address:hover {
  color: var(--clr-primary);
  border-bottom-color: var(--clr-primary);
}

.contact-map-pin {
  color: var(--clr-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-map-ext {
  font-size: 11px;
  opacity: 0.6;
  flex-shrink: 0;
}

.contact-map-title {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: 0.34px;
  color: var(--clr-black);
  margin-bottom: 20px;
}

.contact-map-frame {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .contact-hero {
    padding: 56px 24px 48px;
  }
  .contact-main {
    padding: 56px 24px;
  }
  .contact-map-section {
    padding: 0 24px 60px;
  }
  .contact-map-frame {
    height: 380px;
  }
}

@media (max-width: 575px) {
  .contact-submit-btn {
    width: 100%;
  }
  .contact-map-frame {
    height: 280px;
  }
}
/* ============================================================
         PRICING PAGE  
         ============================================================ */

/* ---- Hero / filter header ---- */
.pricing-hero {
  background-color: var(--clr-light);
  padding: 100px var(--section-px);
  text-align: center;
}

.pricing-hero-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 66px;
  letter-spacing: 2.64px;
  line-height: 76px;
  color: var(--clr-black);
  text-transform: capitalize;
  margin: 18px 0 28px;
}

.pricing-hero-heading .italic-coral {
  font-style: italic;
  color: var(--clr-primary);
}

.pricing-divider {
  width: 133px;
  height: 4px;
  background-color: var(--clr-primary);
  margin: 0 auto 40px;
  border: none;
  opacity: 1;
}

/* ---- Filter tabs ---- */
.pricing-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.pricing-filter-btn {
  height: 54px;
  padding: 10px 28px;
  border-radius: var(--btn-radius);
  border: 0.5px solid var(--clr-primary);
  background-color: transparent;
  font-family: var(--ff-raleway);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.44px;
  color: var(--clr-primary);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.pricing-filter-btn.active,
.pricing-filter-btn:hover {
  background-color: var(--clr-primary);
  color: var(--clr-beige);
}

/* ---- Package section (Wedding Planning / Corporate Event) ---- */
.pkg-section {
  background-color: var(--clr-beige);
  padding: 80px var(--section-px);
}

.pkg-section + .pkg-section {
  padding-top: 0;
}

.pkg-header {
  text-align: center;
  margin-bottom: 56px;
}

.pkg-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
}

.pkg-title {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: 0.44px;
  color: var(--clr-black);
  margin-bottom: 6px;
}

.pkg-subtitle {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.24px;
  color: var(--clr-gray-text);
  margin-bottom: 18px;
}

.pkg-desc {
  font-family: var(--ff-raleway);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--clr-gray-text);
  max-width: 900px;
  margin: 0 auto;
  text-transform: capitalize;
}

/* ---- Pricing cards ---- */
.pricing-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  background: #fafafa;
  border: 0.5px solid var(--clr-gray-text);
  border-radius: 4px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  width: 340px;
  flex-shrink: 0;
  padding: 56px 24px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 3.5px solid var(--clr-primary);
  box-shadow: none;
  width: 390px;
}

.pricing-card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.56px;
  white-space: nowrap;
  padding: 6px 16px;
}

.pricing-card-name {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 22px;
  color: var(--clr-black);
  text-align: center;
  margin-bottom: 4px;
}

.pricing-card-price {
  font-family: var(--ff-playfair);
  font-weight: 700;
  font-size: 38px;
  color: var(--clr-primary);
  text-align: center;
  margin-bottom: 10px;
}

.pricing-card-tagline {
  font-family: var(--ff-raleway);
  font-weight: 400;
  font-size: 14px;
  color: var(--clr-gray-text);
  text-align: center;
  margin-bottom: 28px;
}

.pricing-card-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  margin-bottom: 24px;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-feature-list li {
  font-family: var(--ff-raleway);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
  color: var(--clr-gray-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-feature-list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%23fb696b'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-5' stroke='%23fb696b' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 1px;
}

.pricing-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin-top: 28px;
  border-radius: 8px;
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.pricing-card-btn.outline {
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
}

.pricing-card-btn.filled {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border: none;
}

.pricing-card-btn:hover {
  opacity: 0.85;
}

.pricing-note {
  font-family: var(--ff-raleway);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.345;
  color: var(--clr-gray-text);
  text-align: center;
  margin-top: 48px;
}

/* ---- CTA section ---- */
.pricing-cta {
  background-color: #fafafa;
  padding: 80px var(--section-px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-cta-heading {
  font-family: var(--ff-playfair);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.48px;
  color: var(--clr-gray-text);
  margin-bottom: 24px;
}

.pricing-cta-heading .italic-coral {
  font-style: italic;
  color: var(--clr-primary);
}

.pricing-cta-body {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.28px;
  line-height: 1.5;
  color: var(--clr-gray-text);
  margin-bottom: 40px;
}

.pricing-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  padding: 10px 36px;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 8px;
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.pricing-cta-btn:hover {
  opacity: 0.88;
  color: var(--clr-white);
}

.pricing-cta-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(251, 105, 107, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.pricing-cta-blob.left {
  left: -80px;
  bottom: -80px;
}

.pricing-cta-blob.right {
  right: -80px;
  top: -80px;
}

/* ---- hidden category sections ---- */
.pkg-category {
  display: none;
}
.pkg-category.active {
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .pricing-hero {
    padding: 56px var(--section-px);
  }
  .pricing-hero-heading {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 1.5px;
  }
  .pkg-section {
    padding: 56px 24px;
  }
  .pricing-cta {
    padding: 64px 24px;
  }
  .pricing-card.featured {
    width: 340px;
  }
}

@media (max-width: 576px) {
  .pricing-hero-heading {
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 1px;
    margin: 12px 0 20px;
  }
  .pricing-card,
  .pricing-card.featured {
    width: 100%;
    max-width: 360px;
  }
  .pricing-filters {
    gap: 10px;
  }
  .pricing-filter-btn {
    font-size: 16px;
    padding: 8px 18px;
    height: 46px;
  }
}

@media (max-width: 600px) {
  .gallery-modal-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }
  .gallery-modal-header {
    padding: 20px 16px 0;
  }
  .gallery-modal-hint {
    margin: 6px 16px 0;
  }
  .gallery-modal-footer {
    padding: 14px 16px 20px;
  }
}

::selection {
  background-color: #fb696b;
  color: white;
}

/* ============================================================
   PAGE HERO — shared across Services, Gallery, Venue
   ============================================================ */
.page-hero-section {
  background-color: var(--clr-light);
  padding: 100px var(--section-px);
  text-align: center;
}

.page-hero-inner {
  max-width: 1027px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.page-hero-label {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 28px;
  line-height: 62px;
  color: var(--clr-primary);
  text-transform: uppercase;
  display: block;
}

.page-hero-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 66px;
  line-height: 76px;
  letter-spacing: 2.64px;
  text-transform: capitalize;
  color: var(--clr-black);
  margin: 0;
}

.page-hero-heading .italic-coral {
  font-weight: 300;
  font-style: italic;
  color: var(--clr-primary);
}

.page-hero-body {
  font-family: var(--ff-playfair);
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.56px;
  color: var(--clr-black);
  text-align: center;
  margin-top: 26px;
  max-width: 900px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page-cards-section {
  background-color: var(--clr-beige);
  padding: 84px var(--section-px);
}

.services-page-cards-header {
  max-width: 1027px;
  margin: 0 auto 66px;
  text-align: center;
}

.services-page-cards-label {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 26px;
  line-height: 62px;
  color: var(--clr-primary);
  text-transform: uppercase;
  display: block;
}

.services-page-cards-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 300;
  font-size: 44px;
  line-height: 60px;
  text-transform: capitalize;
  color: var(--clr-black);
  margin: 0;
}

.services-page-cards-heading .italic-coral {
  font-style: italic;
  color: var(--clr-primary);
}

.services-page-grid {
  max-width: 1301px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.services-page-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page-section {
  background-color: var(--clr-beige);
  padding: 96px var(--section-px) 100px;
}

.gallery-filter-row {
  max-width: 1027px;
  margin: 40px auto 0;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  font-family: var(--ff-raleway);
  font-weight: 400;
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 0.44px;
  color: var(--clr-primary);
  background: transparent;
  border: 0.5px solid var(--clr-primary);
  border-radius: var(--btn-radius);
  padding: 10px;
  min-width: 117px;
  height: 61px;
  cursor: pointer;
  text-transform: capitalize;
  transition:
    background 0.2s,
    color 0.2s;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background-color: var(--clr-primary);
  color: var(--clr-beige);
  border-color: var(--clr-primary);
}

.gallery-photo-grid {
  max-width: 1321px;
  margin: 82px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px;
}

.gallery-photo-item {
  height: 364px;
  border-radius: var(--btn-radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-photo-item:hover img {
  transform: scale(1.05);
}

/* ============================================================
   VENUE PAGE
   ============================================================ */
.venue-search-wrap {
  background-color: var(--clr-beige);
  padding: 40px var(--section-px) 0;
  display: flex;
  justify-content: center;
}

.venue-search-bar {
  position: relative;
  width: 536px;
  max-width: 100%;
}

.venue-search-bar input {
  width: 100%;
  height: 65px;
  border: 1px solid var(--clr-primary);
  border-radius: 8px;
  padding: 0 16px 0 80px;
  font-family: var(--ff-playfair);
  font-size: 20px;
  color: var(--clr-gray-text);
  background: transparent;
  outline: none;
  letter-spacing: 0.4px;
}

.venue-search-bar input::placeholder {
  color: var(--clr-gray-text);
  font-style: normal;
}

.venue-search-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 71px;
  height: 65px;
  background-color: var(--clr-primary);
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 20px;
}

.venue-listings-section {
  background-color: var(--clr-beige);
  padding: 60px 0 80px;
}

.venue-listing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 43px 60px;
  max-width: 1440px;
  margin: 0 auto;
  border-bottom: 1px solid var(--clr-border);
}

.venue-listing:last-child {
  border-bottom: none;
}

.venue-listing-img {
  width: 100%;
  height: 468px;
  overflow: hidden;
  background: var(--clr-white);
}

.venue-listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-listing-info {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.venue-location {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 22px;
  color: var(--clr-gray-text);
  letter-spacing: 0.44px;
  line-height: 40px;
  text-transform: uppercase;
  margin: 0;
}

.venue-name {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 48px;
  color: var(--clr-primary);
  letter-spacing: 1.2px;
  line-height: 1.2;
  margin: 0;
}

.venue-desc {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  color: var(--clr-gray-text);
  margin: 0;
}

.venue-meta {
  display: flex;
  gap: 48px;
}

.venue-meta-item {
  display: flex;
  flex-direction: column;
}

.venue-meta-label {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 22px;
  line-height: 62px;
  color: var(--clr-gray-text);
  text-transform: uppercase;
  letter-spacing: 0.44px;
}

.venue-meta-value {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: var(--clr-gray-text);
  text-transform: capitalize;
}

/* ============================================================
   VENUE PAGE — Card Grid Layout
   ============================================================ */
.venue-cards-section {
  background-color: var(--clr-beige);
  padding: 40px var(--section-px) 80px;
}

.venue-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  max-width: 1320px;
  margin: 60px auto 0;
}

.venue-card {
  border: 0.5px solid rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  background-color: var(--clr-beige);
  display: flex;
  flex-direction: column;
}

.venue-card-img {
  position: relative;
  height: 260px;
  flex-shrink: 0;
  background: var(--clr-white);
  overflow: hidden;
}

.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-available-badge {
  position: absolute;
  top: 13px;
  left: 0;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-size: 16px;
  line-height: 35px;
  padding: 0 16px 0 20px;
  border-radius: 0 22px 22px 0;
  text-transform: capitalize;
  white-space: nowrap;
}

.venue-card-body {
  padding: 10px 18px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-card-name {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 26px;
  line-height: 40px;
  color: var(--clr-black);
  margin: 0 0 2px;
}

.venue-card-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  color: var(--clr-gray-text);
  margin: 0;
}

.venue-card-row i {
  font-size: 14px;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.venue-card-row-pair {
  display: flex;
  gap: 24px;
}

.venue-card-type {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--clr-gray-text);
  text-transform: capitalize;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.venue-card-type i {
  font-size: 16px;
  color: var(--clr-primary);
}

.venue-card-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 10px 0;
  border: none;
}

.venue-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.venue-btn-outline,
.venue-btn-filled {
  font-family: var(--ff-raleway);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14px;
  height: 40px;
  flex: 1;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.venue-btn-outline {
  background: transparent;
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
}

.venue-btn-filled {
  background-color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  color: var(--clr-white);
}

.venue-btn-outline:hover,
.venue-btn-filled:hover {
  opacity: 0.85;
}

/* Search + filter row */
.venue-search-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding: 40px var(--section-px) 0;
  background-color: var(--clr-beige);
}

.venue-filter-toggle {
  width: 71px;
  height: 65px;
  background-color: transparent;
  border: 1px solid var(--clr-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.venue-filter-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: calc(var(--section-px) - 10px);
  background-color: var(--clr-beige);
  border-radius: 4px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.16);
  padding: 16px 20px;
  width: 220px;
  z-index: 200;
  display: none;
}

.venue-filter-panel.open {
  display: block;
}

.venue-filter-group-title {
  font-family: var(--ff-playfair);
  font-weight: 600;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.4px;
  display: block;
  margin-bottom: 4px;
}

.venue-filter-group-title.coral {
  color: var(--clr-primary);
}
.venue-filter-group-title.gray {
  color: var(--clr-gray-text);
}

.venue-filter-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  margin: 6px 0 10px;
}

.venue-filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  cursor: pointer;
}

.venue-filter-option input[type="checkbox"] {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border: 1px solid var(--clr-primary);
  border-radius: 6px;
  background-color: rgba(251, 105, 107, 0.08);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
}

.venue-filter-option input[type="checkbox"]:checked {
  background-color: var(--clr-primary);
}

.venue-filter-option input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.venue-filter-option label {
  font-family: var(--ff-playfair);
  font-size: 18px;
  line-height: 40px;
  color: var(--clr-gray-text);
  letter-spacing: 0.36px;
  cursor: pointer;
}

/* ============================================================
   RESPONSIVE — Services / Gallery / Venue
   ============================================================ */
@media (max-width: 991px) {
  .page-hero-heading {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 1.5px;
  }
  .page-hero-body {
    font-size: 22px;
    line-height: 34px;
  }
  .services-page-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .gallery-filter-row {
    justify-content: center;
  }
  .gallery-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .gallery-photo-item {
    height: 260px;
  }
  .venue-listing {
    grid-template-columns: 1fr;
    padding: 40px var(--section-px);
  }
  .venue-listing-img {
    height: 300px;
  }
  .venue-name {
    font-size: 36px;
  }
  .venue-search-bar {
    width: 100%;
  }
  .venue-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 575px) {
  .page-hero-heading {
    font-size: 36px;
    line-height: 46px;
  }
  .services-page-grid-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-photo-grid {
    grid-template-columns: 1fr;
  }
  .venue-listing {
    padding: 32px var(--section-px);
  }
  .venue-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   VENUE DETAIL PAGE
   ============================================================ */

/* Breadcrumb */
.venue-breadcrumb {
  background-color: var(--clr-beige);
  padding: 14px var(--section-px);
  font-family: var(--ff-raleway);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-gray-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--clr-border);
}

.venue-breadcrumb a {
  color: var(--clr-gray-text);
  text-decoration: none;
}
.venue-breadcrumb a:hover {
  color: var(--clr-primary);
}
.venue-breadcrumb .crumb-sep {
  margin: 0 8px;
  color: var(--clr-gray-text);
}
.venue-breadcrumb .crumb-active {
  color: var(--clr-primary);
}

/* Layout */
.venue-detail-body {
  background-color: var(--clr-beige);
  padding: 40px var(--section-px) 80px;
}

.venue-detail-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

/* Image collage — large left + 2 stacked right */
.venue-detail-collage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 380px;
  gap: 6px;
  margin-bottom: 28px;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.venue-collage-main {
  grid-row: 1 / 3;
  overflow: hidden;
}

.venue-collage-main img,
.venue-collage-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-collage-thumb {
  overflow: hidden;
}

/* Title + location subtitle */
.venue-detail-title-row {
  margin-bottom: 20px;
}

.venue-detail-title-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.venue-detail-title {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  color: var(--clr-dark);
  margin: 0;
}

.venue-detail-stars {
  color: #e8a838;
  font-size: 17px;
  display: flex;
  gap: 2px;
}

.venue-detail-location {
  font-family: var(--ff-raleway);
  font-size: 14px;
  color: var(--clr-gray-text);
  margin: 0;
}

/* Tabs */
.venue-detail-tabs {
  display: flex;
  border-bottom: 1.5px solid var(--clr-border);
  margin-bottom: 24px;
  gap: 0;
}

.venue-tab-btn {
  font-family: var(--ff-raleway);
  font-weight: 500;
  font-size: 15px;
  color: var(--clr-gray-text);
  background: transparent;
  border: none;
  padding: 10px 20px 10px 0;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.venue-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--clr-primary);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.venue-tab-btn.active {
  color: var(--clr-primary);
}
.venue-tab-btn.active::after {
  transform: scaleX(1);
}

/* Tab panels */
.venue-tab-panel {
  display: none;
}
.venue-tab-panel.active {
  display: block;
}

.venue-detail-desc {
  font-family: var(--ff-playfair);
  font-size: 15px;
  line-height: 1.8;
  color: var(--clr-text);
  margin-bottom: 16px;
}

/* Tables */
.venue-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-playfair);
  font-size: 15px;
  color: var(--clr-text);
}

.venue-detail-table th {
  text-align: left;
  padding: 10px 16px;
  background-color: var(--clr-light);
  font-weight: 600;
  color: var(--clr-dark);
  border-bottom: 1px solid var(--clr-border);
}

.venue-detail-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--clr-border);
}

.venue-detail-table tr:last-child td {
  border-bottom: none;
}

/* Highlight tags */
.venue-highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.venue-highlight-tag {
  font-family: var(--ff-raleway);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  border-radius: 20px;
  padding: 5px 14px;
  background-color: rgba(251, 105, 107, 0.05);
}

/* Facilities list */
.venue-facilities-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.venue-facility-item {
  font-family: var(--ff-raleway);
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.6;
}

.venue-facility-item strong {
  font-weight: 600;
  color: var(--clr-primary);
}

/* Events section */
.venue-events-section {
  margin-top: 48px;
}

.venue-events-heading {
  font-family: var(--ff-playfair);
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 18px;
}

.venue-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.venue-event-item {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
}

.venue-event-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.venue-event-item:hover img {
  transform: scale(1.04);
}

/* Full width events section */
.venue-events-section-full {
  margin-top: 60px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.venue-events-section-full .venue-events-heading {
  font-family: var(--ff-playfair);
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 24px;
}

.venue-events-section-full .venue-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.venue-events-section-full .venue-event-item {
  aspect-ratio: 16 / 11;
  border-radius: 5px;
  overflow: hidden;
}

.venue-events-section-full .venue-event-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;

}

.venue-events-section-full .venue-event-item:hover img {
  transform: scale(1.04);
}

/* ---- SIDEBAR ---- */
.venue-detail-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}

/* CTA card */
.venue-cta-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.venue-cta-title {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-primary);
  margin: 0 0 6px;
}

.venue-cta-subtitle {
  font-family: var(--ff-playfair);
  font-size: 14px;
  color: var(--clr-gray-text);
  margin: 0 0 20px;
  line-height: 1.6;
}

.venue-cta-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--btn-radius);
  text-decoration: none;
  margin-bottom: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  box-shadow: var(--shadow-btn-primary);
}

.venue-cta-btn-primary:hover {
  opacity: 0.9;
  color: var(--clr-white);
}

.venue-cta-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  background-color: transparent;
  color: var(--clr-text);
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-size: 15px;
  font-weight: 400;
  border: 1px solid var(--clr-border);
  border-radius: var(--btn-radius);
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.venue-cta-btn-outline:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

/* Contact info card */
.venue-contact-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.venue-contact-title {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-primary);
  margin: 0 0 18px;
}

.venue-contact-item {
  margin-bottom: 14px;
}
.venue-contact-item:last-child {
  margin-bottom: 0;
}

.venue-contact-label {
  font-family: var(--ff-raleway);
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-gray-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

.venue-contact-value {
  font-family: var(--ff-playfair);
  font-size: 14px;
  color: var(--clr-text);
  display: block;
}

/* Location card */
.venue-location-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.venue-location-title {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-primary);
  margin: 0 0 14px;
}

.venue-location-map {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .venue-detail-layout {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .venue-detail-layout {
    grid-template-columns: 1fr;
  }
  .venue-detail-sidebar {
    position: static;
  }
  .venue-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .venue-breadcrumb {
    padding: 12px var(--section-px);
  }
  .venue-detail-collage {
    height: 240px;
  }
  .venue-detail-title {
    font-size: 26px;
  }
  .venue-tab-btn {
    padding: 8px 16px 8px 0;
    font-size: 13px;
  }
  .venue-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   LEGAL PAGES — Terms, Privacy Policy, Cookie Policy
   ============================================================ */
.legal-section {
  background-color: var(--clr-beige);
  padding: 80px var(--section-px);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-updated {
  font-family: var(--ff-raleway);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--clr-gray-text);
  text-transform: uppercase;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-border);
}

.legal-block {
  margin-bottom: 48px;
}

.legal-block-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-size: 26px;
  font-weight: 600;
  color: var(--clr-dark);
  margin: 0 0 14px;
}

.legal-block-body {
  font-family: var(--ff-playfair);
  font-size: 16px;
  line-height: 1.85;
  color: var(--clr-text);
  margin-bottom: 14px;
}

.legal-block-body:last-child {
  margin-bottom: 0;
}

.legal-list {
  font-family: var(--ff-playfair);
  font-size: 16px;
  line-height: 1.85;
  color: var(--clr-text);
  padding-left: 22px;
  margin: 0 0 14px;
}

.legal-list li {
  margin-bottom: 8px;
}

.legal-highlight {
  color: var(--clr-primary);
  font-weight: 600;
}

@media (max-width: 991px) {
  .legal-section {
    padding: 56px var(--section-px);
  }
}

@media (max-width: 575px) {
  .legal-block-heading {
    font-size: 22px;
  }
}

/* ============================================================
   PAGINATION WRAPPER
   ============================================================ */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding: 0 var(--section-px);
}

.pagination-wrapper .pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-wrapper .page-item {
  display: inline-block;
}

.pagination-wrapper .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: var(--clr-gray-text);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s;
}

.pagination-wrapper .page-link:hover {
  background-color: var(--clr-beige);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.pagination-wrapper .page-item.active .page-link {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  color: white;
}

.pagination-wrapper .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .pagination-wrapper {
    margin-top: 2rem;
  }
  
  .pagination-wrapper .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0.375rem 0.625rem;
    font-size: 0.875rem;
  }
}

/* ============================================================
   TESTIMONIAL SECTION — 3-CARD SLIDER
   ============================================================ */

/* ── Section wrapper ── */
.testimonial-section {
  background-color: var(--clr-light);
  padding: 100px var(--section-px);
  text-align: center;
}

.testimonial-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ── Section label ── */
.testimonial-label {
  font-family: var(--ff-raleway);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  display: block;
}

/* ── Section heading ── */
.testimonial-heading {
  font-family: var(--ff-fraunces);
  font-variation-settings: var(--fv-fraunces);
  font-weight: 400;
  font-size: 44px;
  line-height: 56px;
  color: var(--clr-black);
  margin: 0 0 40px;
  text-align: center;
}

/* ── Slider viewport — clips overflow ── */
.tslider {
  width: 100%;
  overflow: hidden;
}

/* ── Track — all cards in one row, slides via translateX ── */
.tslider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Each card: fixed width = 1/3 of viewport minus gaps ── */
.tcard {
  /* (100% - 2 gaps) / 3 visible cards */
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  min-height: 280px;
}

/* ── Quote icon ── */
.tcard__icon {
  font-size: 28px;
  color: var(--clr-primary);
  opacity: 0.5;
  line-height: 1;
  display: block;
}

/* ── Body: text + read more — grows to fill card ── */
.tcard__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tcard__text {
  font-family: var(--ff-raleway);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}
.tcard__text.is-expanded {
  /* no extra rules needed — full text is already in the DOM */
}

/* ── Read More button ── */
.tcard__readmore {
  background: none;
  border: none;
  color: var(--clr-primary);
  font-family: var(--ff-raleway);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.tcard__readmore:hover { opacity: 0.75; }

/* ── Footer: avatar + name ── */
.tcard__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin-top: auto;
}

.tcard__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--clr-primary);
}
.tcard__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-beige);
  color: var(--clr-primary);
  font-size: 20px;
}

.tcard__name {
  font-family: var(--ff-raleway);
  font-weight: 700;
  font-size: 15px;
  color: var(--clr-black);
  margin: 0;
}

.tcard__location {
  font-family: var(--ff-raleway);
  font-size: 13px;
  color: var(--clr-gray-text);
  margin: 2px 0 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tcard__location i {
  color: var(--clr-primary);
  font-size: 11px;
}

/* ── Dot navigation ── */
.tslider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}

.tdot {
  width: 28px;
  height: 12px;
  border-radius: 6px;
  border: none;
  background: rgba(251, 105, 107, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}
.tdot.is-active {
  background: var(--clr-primary);
  width: 40px;
}

/* ── Empty state ── */
.tslider__empty {
  font-family: var(--ff-raleway);
  font-size: 16px;
  color: var(--clr-gray-text);
  text-align: center;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  /* 2 cards visible: (100% - 1 gap) / 2 */
  .tcard {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .testimonial-heading { font-size: 34px; line-height: 44px; }
}

@media (max-width: 600px) {
  /* 1 card visible: full width */
  .tcard {
    flex: 0 0 100%;
    min-height: unset;
  }
  .testimonial-heading { font-size: 28px; line-height: 38px; }
}
