/* =========================================================
   Luxury Charcuterie — Main Stylesheet
   =========================================================
   Color palette (matched to live site luxury-charcuterie.com):
     --cream:      #fdf9e0   (page background — warm ivory)
     --dark:       #352f29   (primary text — warm dark brown)
     --brown:      #a31d1d   (footer / pullquote bg — dark red)
     --gold:       #e90f35   (accent / links / buttons — crimson)
     --gold-light: #f23f5f   (hover states — lighter crimson)
     --border:     #f1f0ec   (dividers / card borders)

   Fonts (Google Fonts):
     Headings: Playfair Display (serif — closest free match to live "The Seasons")
     Body:     Poppins (sans-serif — matches live site)
   ========================================================= */

/* ----- Reset & Base ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:      #fdf9e0;
  --dark:       #352f29;
  --brown:      #a31d1d;
  --gold:       #e90f35;
  --gold-light: #f23f5f;
  --border:     #f1f0ec;
  --max-width:  1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em; }

p { margin-bottom: 1rem; }

/* ----- Utility --------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--dark { background-color: var(--brown); color: #f0e8dc; }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #f0e8dc; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto;
}
.divider--left { margin-left: 0; }

/* ----- Buttons --------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn:hover {
  background: var(--gold);
  color: #fff;
}
.btn--filled {
  background: var(--gold);
  color: #fff;
}
.btn--filled:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}
.btn--light {
  border-color: #f0e8dc;
  color: #f0e8dc;
}
.btn--light:hover {
  background: #f0e8dc;
  color: var(--brown);
}

/* ----- Navigation ------------------------------------------ */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(253, 249, 224, 0.92) 0%,
    rgba(253, 249, 224, 0.75) 60%,
    rgba(253, 249, 224, 0) 100%
  );
  border-bottom: none;
  padding: 2rem 0 3rem;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.nav__brand:hover { color: var(--brown); }

/* Static nav for pages without a hero image */
.nav--static {
  position: relative;
  background: var(--cream);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: 400;
  color: var(--gold);
}
.nav__links a:hover { color: var(--gold-light); }
.nav__links a.active {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hamburger (mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links li a {
    display: block;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
  }
}

/* ----- Hero ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* 
  *** IMAGE REPLACEMENT GUIDE ***
  To replace the hero background:
    In the HTML, find the <section class="hero"> element.
    Change the style="background-image: url('...')" to your own image.
  Recommended size: 1600 × 900 px
*/
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
}

.hero__content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.6) 30%,
    rgba(255,255,255,0.25) 55%,
    rgba(255,255,255,0) 75%
  );
  z-index: -1;
  pointer-events: none;
}

.hero__eyebrow {
  display: none;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.05;
  text-shadow:
    0 0 10px rgba(255,255,255,0.5),
    0 0 20px rgba(255,255,255,0.3);
}

.hero__subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 8px rgba(255,255,255,0.4),
    0 0 16px rgba(255,255,255,0.2);
}

/* ----- Two-column split ------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
}

.split__text h2 { margin-bottom: 0.5rem; }
.split__text p  { color: #5a3535; }

/* 
  *** IMAGE REPLACEMENT GUIDE ***
  Split-section images are <img> tags with class="split__img".
  Simply swap the src="" attribute to your photo.
  Recommended size: 700 × 550 px
*/
.split__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
}

/* ----- Quote / Pull Quote ---------------------------------- */
.pullquote {
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--brown);
}

.pullquote__mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.pullquote__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: #f0e8dc;
  max-width: 760px;
  margin: 0 auto 1rem;
}

.pullquote__source {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ----- Gallery grid ---------------------------------------- */
/*
  *** IMAGE REPLACEMENT GUIDE ***
  Gallery images are inside <div class="gallery">.
  Each <img class="gallery__img"> can have its src="" swapped.
  Recommended size: 600 × 600 px (square)
*/
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
.gallery__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.3s;
}
.gallery__img:hover { opacity: 0.85; }

/* ----- CTA Banner (full-bleed image) ----------------------- */
.cta-banner {
  position: relative;
  padding: 8rem 1.5rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f0e8dc;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: #f0e8dc;
  max-width: 750px;
  margin: 0 auto 2.5rem;
  line-height: 1.2;
}
.cta-banner .btn--pill-cream {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.cta-banner .btn--pill-cream:hover {
  background: #fff;
  color: var(--dark);
  transform: scale(1.03);
}

/* ----- Pricing Cards --------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  border: 1px solid var(--border);
  padding: 2.2rem;
  background: #fff;
  transition: box-shadow 0.25s;
}
.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pricing-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.pricing-card__serves {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.pricing-card__desc {
  font-size: 0.92rem;
  color: #5a3535;
  margin-bottom: 1.5rem;
}

/* ----- Reviews / Testimonials ------------------------------ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
}

.testimonial__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}

.testimonial__source {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ----- Partners -------------------------------------------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-card {
  border: 1px solid var(--border);
  padding: 2rem;
  background: #fff;
}

/*
  *** IMAGE REPLACEMENT GUIDE ***
  Partner logo images have class="partner-card__logo".
  Swap the src="" attribute with the partner's logo file.
  Recommended size: 300 × 150 px (landscape)
*/
.partner-card__logo {
  width: 100%;
  height: 100px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.2rem;
}

.partner-card h3 { margin-bottom: 0.5rem; }
.partner-card p  { font-size: 0.92rem; color: #5a3535; }

/* ----- Mailing List Form ----------------------------------- */
.mail-form {
  max-width: 520px;
  margin: 2.5rem auto 0;
}

.mail-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 500px) {
  .mail-form__row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}
.form-group--checkbox input { width: auto; }
.form-group--checkbox label {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* ----- Quote Request Form ---------------------------------- */
.quote-form {
  max-width: 660px;
  margin: 0 auto;
}
.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ----- Page Hero (inner pages) ----------------------------- */
.page-hero {
  position: relative;
  padding: 5rem 1.5rem;
  padding-top: calc(5rem + 70px);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.page-hero .container,
.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

/* ----- Footer ---------------------------------------------- */
.footer {
  background: var(--cream);
  color: var(--dark);
  padding: 4rem 0 2rem;
}

.footer__wave {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -2px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 700px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  color: var(--dark);
  font-size: 0.9rem;
}
.footer__links a:hover { color: var(--gold); }

.footer__address {
  font-size: 0.9rem;
  line-height: 1.9;
  font-style: normal;
  color: var(--dark);
}

.footer__bottom {
  font-size: 0.78rem;
  color: rgba(53,47,41,0.4);
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

/* ----- Gallery Carousel ------------------------------------ */
.gallery-carousel {
  background: var(--gold);
  padding: 0 0 0.5rem;
  overflow: hidden;
}

.gallery-carousel__track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-carousel__track::-webkit-scrollbar { display: none; }

.gallery-carousel__item {
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 300px);
  height: clamp(200px, 22vw, 300px);
  scroll-snap-align: start;
  overflow: hidden;
}

.gallery-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-carousel__controls {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
}

.gallery-carousel__btn {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.gallery-carousel__btn:hover {
  border-color: #fff;
  color: #fff;
}

/* ----- Scroll Animations (Squarespace-style) --------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible,
.reveal--left.visible,
.reveal--right.visible,
.reveal--scale.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children delay */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ----- Pill Button (Squarespace-style rounded) ------------- */
.btn--pill {
  display: inline-block;
  padding: 1rem 2.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn--pill:hover {
  background: var(--gold-light);
  color: #fff;
  transform: scale(1.03);
}

/* ----- Quote Page Hero (full-bleed image) ------------------ */
.quote-hero {
  width: 100%;
  height: 65vh;
  overflow: hidden;
  margin-top: 0;
}
.quote-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ----- Board Split Sections (Get a Quote page) ------------- */
.board-section {
  padding: 4rem 0;
}

.board-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.board-split--reverse {
  direction: rtl;
}
.board-split--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .board-split,
  .board-split--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .board-split--reverse {
    direction: ltr;
  }
}

.board-split__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.board-split__serves {
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.board-split__serves em {
  font-style: italic;
}

.board-split__desc {
  font-size: 0.95rem;
  color: #5a3535;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.board-split__img-wrap {
  overflow: hidden;
}

.board-split__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.board-split__img:hover {
  transform: scale(1.02);
}

/* ----- Reviews Page (split layout) ------------------------- */
.review-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.review-split--reverse {
  direction: rtl;
}
.review-split--reverse > * {
  direction: ltr;
}

.review-split__img {
  overflow: hidden;
}
.review-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
  background: var(--cream);
}

.review-split__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--gold);
  border: none;
  margin: 0 0 2rem;
  padding: 0;
}

.review-split__author {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
}

@media (max-width: 768px) {
  .review-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .review-split--reverse {
    direction: ltr;
  }
  .review-split__img {
    height: 50vw;
    min-height: 250px;
  }
  .review-split__text {
    padding: 2.5rem 1.5rem;
  }
}

/* ----- Mailing List Form (About page) --------------------- */
.mail-form {
  max-width: 460px;
  margin: 1.5rem auto 0;
  text-align: left;
}

.mail-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mail-form .form-group {
  margin-bottom: 1rem;
}

.mail-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.mail-form input[type="text"],
.mail-form input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--dark);
  transition: border-color 0.2s;
}
.mail-form input[type="text"]:focus,
.mail-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-group--checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}
.form-group--checkbox label {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
}

/* ----- Partners Page --------------------------------------- */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.partner-card {
  text-align: center;
}

.partner-card__img-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.partner-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.partner-card__desc {
  font-size: 0.9rem;
  color: #5a3535;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* ----- Pricing Calculator ---------------------------------- */
.calc {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(53, 47, 41, 0.08);
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.calc__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  text-align: center;
  margin-bottom: 0.25rem;
}

.calc__sub {
  text-align: center;
  color: #5a3535;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.calc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.calc__group {
  display: flex;
  flex-direction: column;
}

.calc__group--full {
  grid-column: 1 / -1;
}

.calc__label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.calc__select,
.calc__input {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: #fefefe;
  transition: border-color 0.2s;
}

.calc__select:focus,
.calc__input:focus {
  outline: none;
  border-color: var(--gold);
}

.calc__addons {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.calc__addons-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.calc__addon-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--dark);
}

.calc__addon-item input[type="checkbox"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.calc__addon-price {
  margin-left: auto;
  color: #888;
  font-size: 0.85rem;
}

.calc__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.calc__result {
  text-align: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.calc__result-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #5a3535;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.calc__result-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
}

.calc__result-detail {
  font-size: 0.82rem;
  color: #888;
  margin-top: 0.35rem;
  line-height: 1.6;
}

.calc__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--cream);
  background: var(--gold);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s;
  text-decoration: none;
}

.calc__cta:hover {
  background: var(--gold-light);
}

.calc__note {
  text-align: center;
  font-size: 0.78rem;
  color: #999;
  margin-top: 0.75rem;
}

@media (max-width: 600px) {
  .calc { padding: 1.5rem 1.25rem; }
  .calc__row { grid-template-columns: 1fr; gap: 1rem; }
}
