@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #A07B4A;
  --gold-dark: #8A6A3A;
  --gold-light: #C4A97D;
  --olive: #5C6146;
  --cream: #FAF8F3;
  --beige: #F0EBE1;
  --beige-dark: #E5DDD0;
  --brown-dark: #2E2519;
  --text-body: #5A4E42;
  --text-light: #8A7D70;
  --white: #FFFFFF;
  --border: #DDD5C8;

  --font-h: 'Cormorant Garamond', serif;
  --font-b: 'Jost', sans-serif;

  --shadow-xs: 0 1px 4px rgba(46,37,25,0.05);
  --shadow-sm: 0 4px 16px rgba(46,37,25,0.06);
  --shadow-md: 0 8px 32px rgba(46,37,25,0.09);
  --shadow-lg: 0 20px 60px rgba(46,37,25,0.12);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-pill: 100px;

  --ease: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
}

/* ─── RESET ─── */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;font-size:16px;}
body{font-family:var(--font-b);color:var(--text-body);background:var(--cream);line-height:1.7;-webkit-font-smoothing:antialiased;}
h1,h2,h3,h4,h5{font-family:var(--font-h);font-weight:500;color:var(--brown-dark);line-height:1.15;margin-bottom:0.75rem;}
p{color:var(--text-body);margin-bottom:1.4rem;font-size:1.05rem;font-weight:300;}
a{text-decoration:none;color:var(--gold);transition:var(--ease);}
ul{list-style:none;}
img{max-width:100%;height:auto;display:block;}

/* ─── UTILITIES ─── */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 32px;}
.text-center{text-align:center;}
.section{padding:96px 0;}
.section-alt{background:var(--beige);}
.section-dark{background:var(--brown-dark);}

.label{
  display:inline-block;
  font-family:var(--font-b);
  font-size:0.7rem;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1rem;
}

.section-title{
  font-size:clamp(2rem,4vw,3.2rem);
  margin-bottom:1rem;
  font-weight:600;
}
.section-subtitle{
  font-size:1.1rem;
  max-width:640px;
  margin:0 auto 3rem;
  color:var(--text-light);
  font-weight:300;
}

/* ─── BUTTONS ─── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 30px;border-radius:var(--r-pill);
  font-family:var(--font-b);font-weight:500;font-size:0.95rem;
  letter-spacing:0.04em;cursor:pointer;border:none;transition:var(--ease);
}
.btn-primary{background:var(--gold);color:var(--white);}
.btn-primary:hover{background:var(--gold-dark);transform:translateY(-2px);box-shadow:var(--shadow-md);color:var(--white);}
.btn-outline{background:transparent;color:var(--gold);border:1.5px solid var(--gold);}
.btn-outline:hover{background:var(--gold);color:var(--white);}
.btn-white{background:var(--white);color:var(--brown-dark);}
.btn-white:hover{background:var(--cream);transform:translateY(-2px);}

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.header.scrolled, body.subpage .header {
  background: rgba(61, 43, 31, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px;
  gap: 24px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo { height: 46px; width: auto; object-fit: contain; }

/* Center pill nav */
.nav-pill {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill);
  padding: 6px 20px;
  gap: 4px;
}
.nav-pill a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 16px; border-radius: var(--r-pill);
  letter-spacing: 0.03em; white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-pill a::after { display: none; }
.nav-pill a:hover, .nav-pill a.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.nav-divider {
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Right CTA buttons */
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-nav-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 22px; border-radius: var(--r-pill);
  font-family: var(--font-b); font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.85); background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; transition: var(--ease); letter-spacing: 0.03em;
}
.btn-nav-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-nav-solid {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 22px; border-radius: var(--r-pill);
  font-family: var(--font-b); font-size: 0.875rem; font-weight: 600;
  color: var(--brown-dark); background: #fff;
  border: none; cursor: pointer; transition: var(--ease); letter-spacing: 0.03em;
}
.btn-nav-solid:hover { background: var(--gold-light); color: var(--white); transform: translateY(-2px); }

/* Hamburger (mobile) */
.nav-toggle { display: none; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--r-sm); padding: 8px 12px; font-size: 1.2rem; color: #fff; cursor: pointer; }

/* Dropdown inside pill */
.nav-item.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px);
  background: rgba(10,8,5,0.9); backdrop-filter: blur(20px); min-width: 220px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-radius: var(--r-md);
  opacity: 0; visibility: hidden;
  transition: var(--ease); z-index: 100;
  padding: 10px 0; list-style: none; margin: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
  display: block; padding: 10px 20px; color: rgba(255,255,255,0.85);
  text-decoration: none; transition: var(--ease);
  font-size: 0.85rem; font-weight: 500;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: var(--gold-light); padding-left: 26px; }

/* Mobile Drawer */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
  height: 100vh; background: rgba(10,8,5,0.97); backdrop-filter: blur(20px);
  z-index: 2000; display: flex; flex-direction: column;
  padding: 80px 40px 40px; gap: 8px;
  transition: right 0.4s cubic-bezier(0.25,0.8,0.25,1);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.active { right: 0; }
.mobile-nav a { font-size: 1.05rem; font-weight: 500; color: rgba(255,255,255,0.85); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: var(--ease);
}
.mobile-nav-close:hover { background: var(--gold); border-color: var(--gold); }
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 1999; opacity: 0; visibility: hidden; transition: var(--ease);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

/* ─── FULLSCREEN VIDEO HERO ─── */
.hero-fs {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-fs-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-fs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 4, 2, 0.82) 0%,
    rgba(5, 4, 2, 0.6) 45%,
    rgba(5, 4, 2, 0.12) 100%
  );
  z-index: 1;
}

/* Inner wrapper — holds the left-aligned content, clears the nav */
.hero-fs-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 90px; /* clear fixed header */
  padding-bottom: 32px;
  padding-left: max(40px, calc((100vw - 1200px)/2 + 40px));
  padding-right: 40px;
}
.hero-fs-content {
  max-width: 660px;
}
.hero-fs-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill);
  padding: 8px 18px; margin-bottom: 28px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
}
.hero-fs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px var(--gold-light);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-fs-title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 600; line-height: 1.08;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-fs-title em { font-style: italic; color: var(--gold-light); }
.hero-fs-desc {
  font-size: 1.05rem; line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 300;
}
.hero-fs-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-solid {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px; border-radius: var(--r-pill);
  font-family: var(--font-b); font-size: 0.95rem; font-weight: 600;
  background: #fff; color: var(--brown-dark); border: none;
  cursor: pointer; transition: var(--ease); letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-hero-solid:hover { background: var(--gold-light); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.btn-hero-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px; border-radius: var(--r-pill);
  font-family: var(--font-b); font-size: 0.95rem; font-weight: 500;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: var(--ease); letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-3px); }

/* Stats bar — sits as the natural bottom row of the grid */
.hero-fs-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  padding: 24px max(40px, calc((100vw - 1200px)/2 + 40px));
  background: linear-gradient(to top, rgba(5,4,2,0.75) 0%, rgba(5,4,2,0.35) 60%, transparent 100%);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-fs-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 44px;
}
.stat-number {
  font-family: var(--font-h); font-size: 2rem; font-weight: 600;
  color: #fff; line-height: 1;
}
.stat-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.hero-fs-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.18);
  margin-right: 44px; flex-shrink: 0;
}

/* ─── TRUST BAR ─── */
.trust-bar{background:var(--brown-dark);padding:28px 0;}
.trust-items{display:flex;justify-content:center;align-items:center;gap:48px;flex-wrap:wrap;}
.trust-item{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,0.85);font-size:0.875rem;font-weight:400;letter-spacing:0.02em;}
.trust-item svg{width:18px;height:18px;color:var(--gold-light);flex-shrink:0;}


/* ─── PILLARS ─── */
.pillars-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:48px;}
.pillar-card{
  background:var(--white);padding:36px 28px;border-radius:var(--r-lg);
  border:1px solid var(--border);transition:var(--ease);position:relative;overflow:hidden;
}
.pillar-card::before{
  content:'';position:absolute;top:0;left:0;width:100%;height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  transform:scaleX(0);transform-origin:left;transition:var(--ease);
}
.pillar-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-md);}
.pillar-card:hover::before{transform:scaleX(1);}
.pillar-icon{
  width:56px;height:56px;background:var(--beige);
  border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;
  color:var(--gold);margin-bottom:20px;
}
.pillar-icon svg{width:26px;height:26px;stroke:currentColor;fill:none;stroke-width:1.5;}
.pillar-card h3{font-size:1.15rem;font-weight:600;margin-bottom:14px;color:var(--brown-dark);}
.pillar-list li{
  display:flex;align-items:flex-start;gap:8px;
  font-size:0.88rem;color:var(--text-light);margin-bottom:8px;font-weight:400;
}
.pillar-list li::before{content:'\2713';color:var(--gold-light);font-size:0.65rem;margin-top:4px;flex-shrink:0;}

/* ─── FEATURE ROWS ─── */
.feature-section{padding:96px 0;}
.feature-row{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;margin-bottom:96px;}
.feature-row:last-child{margin-bottom:0;}
.feature-row.reverse{direction:rtl;}
.feature-row.reverse > *{direction:ltr;}
.feature-img-wrap{position:relative;}
.feature-img-wrap img{
  width:100%;height:440px;object-fit:cover;
  border-radius:var(--r-xl);box-shadow:var(--shadow-md);
}
.feature-img-accent{
  position:absolute;width:160px;height:160px;background:var(--beige);
  border-radius:var(--r-lg);z-index:-1;bottom:-20px;right:-20px;
}
.feature-row.reverse .feature-img-accent{right:auto;left:-20px;}
.feature-content .label{display:block;}
.feature-content h2{font-size:clamp(1.8rem,3vw,2.6rem);}
.feature-list{margin-top:24px;display:grid;gap:12px;}
.feature-list li{display:flex;align-items:center;gap:12px;margin-bottom:14px;font-size:1.05rem;color:var(--brown-dark);}
.feature-list svg{width:20px;height:20px;stroke:var(--gold);stroke-width:2.5;fill:none;flex-shrink:0;}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 80px;
}
.service-card {
  background: var(--white);
  padding: 50px 30px;
  border-radius: var(--r-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}
.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.service-card h3 {
  color: var(--brown-dark);
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.service-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ─── PRICING ─── */
.feature-cta{margin-top:32px;}

/* ─── TESTIMONIALS ─── */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px;}
.testimonial-card{
  background:var(--white);padding:36px 32px;border-radius:var(--r-lg);
  border:1px solid var(--border);position:relative;
}
.testimonial-card::before{
  content:'"';font-family:var(--font-h);font-size:6rem;
  color:var(--beige-dark);line-height:0;position:absolute;top:36px;right:28px;
}
.testimonial-stars{display:flex;gap:3px;margin-bottom:16px;}
.star{color:var(--gold);font-size:0.85rem;}
.testimonial-card p{font-size:0.95rem;line-height:1.8;font-style:italic;color:var(--text-body);margin-bottom:20px;font-weight:300;}
.testimonial-author{display:flex;align-items:center;gap:12px;}
.author-avatar{
  width:40px;height:40px;background:linear-gradient(135deg,var(--gold-light),var(--gold));
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:white;font-weight:600;font-size:0.85rem;font-family:var(--font-h);
}
.author-info strong{display:block;font-size:0.875rem;color:var(--brown-dark);font-weight:600;}
.author-info span{font-size:0.78rem;color:var(--text-light);}

/* ─── CTA BANNER ─── */
.cta-banner{
  background:linear-gradient(135deg,var(--brown-dark) 0%,#4A3829 100%);
  padding:80px 0;text-align:center;
}
.cta-banner h2{color:var(--white);font-size:clamp(2rem,3.5vw,3rem);}
.cta-banner p{color:rgba(255,255,255,0.7);max-width:560px;margin:0 auto 2.5rem;font-size:1.05rem;}

/* ─── PRICING ─── */
.pricing-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:40px;max-width:1200px;margin:0 auto;}
.pricing-card{
  background:var(--white);border-radius:40px;padding:48px 40px;
  border:1px solid rgba(212,175,55,0.2);position:relative;display:flex;flex-direction:column;
  transition:all 0.4s ease;
  box-shadow: 0 15px 40px rgba(74,56,41,0.05);
}
.pricing-card:hover{transform:translateY(-10px);box-shadow:var(--shadow-lg);}
.pricing-card.featured{background:var(--brown-dark);border-color:var(--brown-dark);}
.pricing-card.featured h3,.pricing-card.featured .pricing-duration{color:var(--white);}
.pricing-card.featured .pricing-features li{color:rgba(255,255,255,0.85);}
.pricing-card.featured .pricing-divider{border-color:rgba(255,255,255,0.15);}
.badge{
  position:absolute;top:-16px;left:50%;transform:translateX(-50%);
  background:var(--gold);color:var(--white);
  padding:8px 24px;border-radius:var(--r-pill);
  font-size:0.85rem;font-weight:700;letter-spacing:0.1em;white-space:nowrap;
  box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}
.pricing-icon{width:64px;height:64px;background:var(--beige);border-radius:var(--r-lg);display:flex;align-items:center;justify-content:center;color:var(--gold);margin-bottom:24px;}
.pricing-card.featured .pricing-icon{background:rgba(255,255,255,0.1);color:var(--gold-light);}
.pricing-icon svg{width:32px;height:32px;stroke:currentColor;fill:none;stroke-width:1.5;}
.pricing-card h3{font-size:1.8rem;font-weight:700;color:var(--brown-dark);margin-bottom:6px;letter-spacing:-0.02em;}
.pricing-duration{font-size:1rem;color:var(--gold);font-weight:600;letter-spacing:0.08em;margin-bottom:16px;text-transform:uppercase;}
.pricing-price{font-size:2.4rem;font-weight:700;color:var(--brown-dark);margin-bottom:8px;display:flex;align-items:center;gap:12px;flex-wrap:wrap;}
.pricing-price-old{font-size:1.3rem;text-decoration:line-through;color:var(--text-light);font-weight:400;}
.pricing-card.featured .pricing-price{color:var(--white);}
.pricing-card.featured .pricing-price-old{color:rgba(255,255,255,0.6);}
.pricing-save{background:var(--gold);color:var(--white);font-size:0.75rem;padding:2px 8px;border-radius:var(--r-sm);font-weight:600;}
.pricing-divider{border:none;border-top:1px solid var(--border);margin:24px 0;}
.pricing-features{flex-grow:1;margin-bottom:28px;}
.pricing-features li{
  display:flex;align-items:flex-start;gap:12px;
  font-size:1.05rem;color:var(--text-body);margin-bottom:16px;font-weight:400;
  line-height:1.6;
}
.pricing-features li svg{width:18px;height:18px;stroke:var(--olive);fill:none;stroke-width:2;flex-shrink:0;margin-top:1px;}
.pricing-card.featured .pricing-features li svg{stroke:var(--gold-light);}
.pricing-card .btn{width:100%;text-align:center;}

/* ─── FAQ ─── */
.faq-container{max-width:760px;margin:0 auto;}
.faq-item{border-bottom:1px solid var(--border);}
.faq-question{
  width:100%;text-align:left;background:none;border:none;
  padding:22px 0;font-family:var(--font-h);font-size:1.2rem;font-weight:600;
  color:var(--brown-dark);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px;
}
.faq-icon{
  width:28px;height:28px;border-radius:50%;border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:1rem;flex-shrink:0;transition:var(--ease);
}
.faq-question.active .faq-icon{background:var(--gold);color:white;border-color:var(--gold);transform:rotate(45deg);}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.4s ease;}
.faq-answer p{padding-bottom:22px;margin-bottom:0;font-size:0.975rem;}

/* ─── PHOTO GALLERY ─── */
.gallery-section { padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
  margin-top: 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.portrait { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(5,4,2,0.75) 0%, transparent 100%);
  color: #fff; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 24px 18px 14px;
  opacity: 0; transform: translateY(6px);
  transition: all 0.35s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ─── CONTACT ─── */

.contact-wrapper{
  display:grid;grid-template-columns:2fr 3fr;
  border-radius:var(--r-xl);overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.contact-info{background:var(--brown-dark);padding:56px 44px;color:white;}
.contact-info h3,.contact-info p{color:white;}
.contact-info h3{font-size:1.8rem;margin-bottom:8px;}
.contact-info p{color:rgba(255,255,255,0.65);font-size:0.95rem;margin-bottom:0;}
.contact-divider{border:none;border-top:1px solid rgba(255,255,255,0.12);margin:32px 0;}
.contact-info-list{display:grid;gap:20px;}
.contact-info-list li{display:flex;align-items:flex-start;gap:14px;font-size:0.9rem;color:rgba(255,255,255,0.8);}
.contact-info-list svg{width:20px;height:20px;fill:var(--gold-light);flex-shrink:0;margin-top:2px;}
.contact-form-wrap{background:var(--white);padding:56px 52px;}
.contact-form-wrap h3{font-size:1.8rem;margin-bottom:8px;}
.contact-form-wrap > p{color:var(--text-light);font-size:0.95rem;margin-bottom:32px;}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.form-group{margin-bottom:0;}
.form-group.full{grid-column:1/-1;}
.form-label{display:block;font-size:0.825rem;font-weight:600;letter-spacing:0.06em;text-transform:uppercase;color:var(--text-body);margin-bottom:8px;}
.form-control{
  width:100%;padding:14px 16px;border:1.5px solid var(--border);
  border-radius:var(--r-sm);font-family:var(--font-b);font-size:0.95rem;
  color:var(--brown-dark);background:var(--cream);transition:var(--ease);
}
.form-control:focus{outline:none;border-color:var(--gold);background:var(--white);box-shadow:0 0 0 3px rgba(160,123,74,0.1);}
textarea.form-control{min-height:130px;resize:vertical;}
.form-submit{margin-top:24px;}
.form-submit .btn{width:100%;padding:15px;}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.6); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--ease);
  padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
  background: var(--white); width: 100%; max-width: 800px;
  max-height: 90vh; border-radius: var(--r-xl);
  overflow-y: auto; position: relative;
  transform: translateY(20px); transition: var(--ease);
  box-shadow: var(--shadow-lg); padding: 40px;
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--beige); border: none; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; display: flex;
  align-items: center; justify-content: center; font-size: 1.2rem;
  color: var(--brown-dark); transition: var(--ease);
}
.modal-close:hover { background: var(--gold); color: white; }
.modal-header { margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.modal-header h2 { color: var(--gold); font-size: 2rem; margin-bottom: 10px; }
.modal-body { color: var(--text-body); line-height: 1.8; }
.modal-body h4 { color: var(--brown-dark); margin-top: 24px; margin-bottom: 12px; font-size: 1.1rem; }
.modal-body ul { list-style: disc; margin-left: 20px; margin-bottom: 20px; }
.modal-body li { margin-bottom: 8px; }
.modal-actions {
  display: flex; gap: 16px; margin-top: 40px; border-top: 1px solid var(--border);
  padding-top: 30px;
}
@media(max-width:600px){ .modal-actions { flex-direction: column; } }

/* ─── PAGE HERO ─── */
.page-hero{
  padding:160px 0 80px;background:var(--beige);
  text-align:center;border-bottom:1px solid var(--border);
}
.page-hero h1{font-size:clamp(2.2rem,5vw,3.8rem);}
.page-hero .section-subtitle{margin-bottom:0;}

/* ─── FOOTER ─── */
.footer{background:var(--brown-dark);color:rgba(255,255,255,0.75);padding:72px 0 32px;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:48px;margin-bottom:56px;}
.footer-brand p{font-size:0.88rem;line-height:1.8;margin-top:16px;margin-bottom:0;color:rgba(255,255,255,0.78);}
.footer-logo-img{height:44px;width:auto;object-fit:contain;}
.footer h4{font-family:var(--font-h);font-size:1.05rem;color:rgba(255,255,255,0.9);font-weight:600;margin-bottom:20px;}
.footer-links li{margin-bottom:10px;}
.footer-links a{color:rgba(255,255,255,0.55);font-size:0.875rem;transition:var(--ease);}
.footer-links a:hover{color:var(--gold-light);}
.footer-contact-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:12px;font-size:0.875rem;line-height:1.5;}
.footer-contact-item svg{width:16px;height:16px;fill:var(--gold-light);flex-shrink:0;margin-top:2px;}
.social-links{display:flex;gap:10px;margin-top:20px;}
.social-links a{
  width:38px;height:38px;border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.6);font-size:0.8rem;font-weight:600;transition:var(--ease);
}
.social-links a:hover{background:var(--gold);border-color:var(--gold);color:white;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.12);padding-top:28px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;}
.footer-bottom p{font-size:0.825rem;margin:0;color:rgba(255,255,255,0.55);}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  .nav-pill { display: none; }
  .nav-toggle { display: flex; }
  .pillars-grid{grid-template-columns:repeat(2,1fr);}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .feature-row{grid-template-columns:1fr;gap:40px;}
  .feature-row.reverse{direction:ltr;}
  .pricing-grid{grid-template-columns:repeat(2,1fr);}
  .contact-wrapper{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
  .testimonials-grid{grid-template-columns:1fr;}
  .hero-fs-stats { gap: 0; padding: 20px 28px; }
  .hero-fs-stat { padding-right: 24px; }
  .hero-fs-stat-divider { margin-right: 24px; }
  .stat-number { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
}

@media(max-width:768px){
  .nav-toggle { display: flex; }
  .nav-right { display: none; }
  .nav-inner { padding: 0 20px; }
  .section{padding:64px 0;}
  .container{padding:0 20px;}
  .pillars-grid{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:1fr;}
  .pricing-grid{grid-template-columns:1fr;}
  .contact-form-wrap{padding:36px 28px;}
  .form-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;gap:24px;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .trust-items{gap:24px;}
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.tall, .gallery-item.portrait { grid-row: span 2; }
  /* Hero mobile */
  .hero-fs { height: 100svh; }
  .hero-fs-overlay {
    background: linear-gradient(to bottom, rgba(5,4,2,0.4) 0%, rgba(5,4,2,0.75) 100%);
  }
  .hero-fs-content {
    padding: 0 24px 140px;
    max-width: 100%;
  }
  .hero-fs-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-fs-desc { font-size: 1rem; }
  .hero-fs-badge { font-size: 0.7rem; }
  .hero-fs-cta { flex-direction: column; }
  .btn-hero-solid, .btn-hero-outline { text-align: center; width: 100%; }
  /* Stats mobile */
  .hero-fs-stats {
    padding: 16px 24px 20px;
    gap: 0;
    flex-wrap: nowrap;
  }
  .hero-fs-stat { padding-right: 16px; }
  .hero-fs-stat-divider { margin-right: 16px; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.65rem; }

  /* ── Rooms Mother ── */
  .rm-hero { height: 100svh; }
  .rm-feature-row { grid-template-columns: 1fr; }
  .rm-amenities-grid { grid-template-columns: 1fr 1fr; }
  .rm-gallery { grid-template-columns: 1fr 1fr; }
  .rm-gal-item, .rm-gal-wide { grid-column: span 1 !important; height: 220px; }
}

/* ══════════════════════════════════════════════
   ROOMS FOR MOTHER — PAGE STYLES
══════════════════════════════════════════════ */

/* ─── Hero ─── */
.rm-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rm-hero-img {
  position: absolute;
  inset: 0;
}
.rm-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,8,5,0.72) 0%,
    rgba(30,20,10,0.45) 55%,
    rgba(10,8,5,0.3) 100%
  );
}
.rm-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.rm-hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.rm-hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.rm-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* ─── Feature Rows ─── */
.rm-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.rm-feature-row.reverse { direction: rtl; }
.rm-feature-row.reverse > * { direction: ltr; }

.rm-feature-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.rm-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.rm-feature-img:hover img { transform: scale(1.04); }

.rm-feature-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.rm-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5rem;
}
.rm-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 400;
}
.rm-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ─── Amenities Grid ─── */
.rm-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rm-amenity-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.rm-amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.rm-amenity-img {
  height: 200px;
  overflow: hidden;
}
.rm-amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.rm-amenity-card:hover .rm-amenity-img img { transform: scale(1.07); }
.rm-amenity-info {
  padding: 20px 24px 24px;
}
.rm-amenity-info h4 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}
.rm-amenity-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ─── Gallery ─── */
.rm-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rm-gal-item {
  border-radius: var(--r-md);
  overflow: hidden;
  height: 260px;
}
.rm-gal-item.rm-gal-wide {
  grid-column: span 2;
  height: 320px;
}
.rm-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rm-gal-item:hover img { transform: scale(1.05); }

/* ─── Responsive: Rooms Mother ─── */
@media (max-width: 900px) {
  .rm-feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rm-feature-row.reverse { direction: ltr; }
  .rm-amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rm-gallery { grid-template-columns: repeat(2, 1fr); }
  .rm-gal-item.rm-gal-wide { grid-column: span 2; height: 240px; }
}
@media (max-width: 600px) {
  .rm-hero-content h1 { font-size: 2.6rem; }
  .rm-amenities-grid { grid-template-columns: 1fr; }
  .rm-gallery { grid-template-columns: 1fr; }
  .rm-gal-item, .rm-gal-item.rm-gal-wide { grid-column: span 1; height: 220px; }
}

/* ══════════════════════════════════════════════
   ROOMS FOR BABY — PAGE STYLES
══════════════════════════════════════════════ */

/* ─── Care Highlights Grid ─── */
.rb-care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rb-care-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  text-align: center;
}
.rb-care-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.rb-care-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.rb-care-card h4 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.rb-care-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ─── Baby Gallery ─── */
.rb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rb-gal-item {
  border-radius: var(--r-md);
  overflow: hidden;
  height: 280px;
}
.rb-gal-item.rb-gal-wide {
  grid-column: span 2;
  height: 340px;
}
.rb-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rb-gal-item:hover img { transform: scale(1.05); }

/* ─── Responsive: Rooms Baby ─── */
@media (max-width: 900px) {
  .rb-care-grid { grid-template-columns: repeat(2, 1fr); }
  .rb-gallery { grid-template-columns: repeat(2, 1fr); }
  .rb-gal-item.rb-gal-wide { grid-column: span 2; height: 250px; }
}
@media (max-width: 600px) {
  .rb-care-grid { grid-template-columns: 1fr; }
  .rb-gallery { grid-template-columns: 1fr; }
  .rb-gal-item, .rb-gal-item.rb-gal-wide { grid-column: span 1; height: 230px; }
}

/* ══════════════════════════════════════════════
   SERVICES PAGE — STYLES
══════════════════════════════════════════════ */

/* ─── Service Pillars Grid ─── */
.sv-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sv-pillar {
  background: var(--white);
  padding: 40px 32px;
  transition: var(--ease);
}
.sv-pillar:hover {
  background: var(--cream);
}
.sv-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(160,123,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sv-pillar h4 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.sv-pillar p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ─── Therapy Gallery ─── */
.sv-therapy-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.sv-tg-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
}
.sv-tg-item.sv-tg-tall {
  grid-row: span 2;
}
.sv-tg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sv-tg-item:hover img { transform: scale(1.06); }
.sv-tg-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(10,8,5,0.75), transparent);
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Food Mosaic ─── */
.sv-food-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sv-food-main {
  height: 480px;
  overflow: hidden;
}
.sv-food-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sv-food-mosaic:hover .sv-food-main img { transform: scale(1.04); }
.sv-food-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-food-side img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sv-food-side img:hover { transform: scale(1.05); }

/* ─── Responsive: Services ─── */
@media (max-width: 1024px) {
  .sv-therapy-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .sv-tg-item.sv-tg-tall { grid-row: span 1; height: 240px; }
}
@media (max-width: 900px) {
  .sv-pillars { grid-template-columns: repeat(2, 1fr); }
  .sv-food-mosaic { grid-template-columns: 1fr; }
  .sv-food-main { height: 300px; }
  .sv-food-side { flex-direction: row; height: 180px; }
}
@media (max-width: 600px) {
  .sv-pillars { grid-template-columns: 1fr; }
  .sv-therapy-gallery { grid-template-columns: 1fr; }
  .sv-tg-item { height: 220px; }
  .sv-food-side { flex-direction: column; height: auto; }
  .sv-food-side img { height: 160px; }
}

/* ══════════════════════════════════════════════
   SERVICES PAGE v2 — LUXURY REDESIGN
══════════════════════════════════════════════ */

/* ─── Hero ─── */
.sv-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sv-hero-bg {
  position: absolute;
  inset: 0;
}
.sv-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: sv-hero-zoom 10s ease forwards;
}
@keyframes sv-hero-zoom {
  to { transform: scale(1); }
}
.sv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5,4,2,0.88) 0%, rgba(20,14,5,0.6) 50%, rgba(5,4,2,0.3) 100%);
}
.sv-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
  width: 100%;
  margin-left: max(32px, calc((100vw - 1200px)/2 + 32px));
  margin-right: auto;
}
@media (max-width: 768px) {
  .sv-hero-content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.sv-hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin: 16px 0 20px;
}
.sv-hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.sv-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.sv-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.sv-hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: sv-bounce 2s ease-in-out infinite;
}
@keyframes sv-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Stat Strip ─── */
.sv-stat-strip {
  background: var(--brown-dark);
  padding: 28px 0;
}
.sv-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.sv-stat {
  text-align: center;
  padding: 0 48px;
}
.sv-stat-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.sv-stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.sv-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ─── Service Cards Grid ─── */
.sv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sv-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.sv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.sv-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.sv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sv-card:hover .sv-card-img img { transform: scale(1.07); }
.sv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.5), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--ease);
}
.sv-card:hover .sv-card-overlay { opacity: 1; }
.sv-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sv-card-body h3 {
  font-family: var(--font-h);
  font-size: 1.45rem;
  color: var(--brown-dark);
  margin: 8px 0 12px;
}
.sv-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.sv-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sv-card-list li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}
.sv-card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ─── Tanamera Full-Width Split ─── */
.sv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.sv-split-img {
  overflow: hidden;
}
.sv-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.sv-split:hover .sv-split-img img { transform: scale(1.04); }
.sv-split-text {
  background: var(--cream);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sv-split-text h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--brown-dark);
  margin: 12px 0 20px;
  line-height: 1.15;
}
.sv-split-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.sv-split-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}
.sv-split-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sv-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-dark);
  box-shadow: var(--shadow-sm);
}

/* ─── Bento Gallery ─── */
.sv-gallery-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  height: 560px;
}
.sv-gb-main {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.sv-gb-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sv-gb-main:hover img { transform: scale(1.04); }
.sv-gb-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sv-gb-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.sv-gb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sv-gb-item:hover img { transform: scale(1.06); }
.sv-gb-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(to top, rgba(10,8,5,0.75), transparent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Cuisine Feature ─── */
.sv-cuisine-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.sv-cuisine-text h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--brown-dark);
  margin: 12px 0 20px;
  line-height: 1.2;
}
.sv-cuisine-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.sv-cuisine-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}
.sv-cuisine-mosaic {
  display: grid;
  grid-template-rows: 1.4fr 1fr;
  gap: 12px;
  height: 560px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.sv-cm-large {
  overflow: hidden;
}
.sv-cm-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sv-cm-large:hover img { transform: scale(1.04); }
.sv-cm-small-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sv-cm-small-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sv-cm-small-grid img:hover { transform: scale(1.08); }

/* ─── Why Us Grid ─── */
.sv-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sv-why-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--ease);
  position: relative;
}
.sv-why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}
.sv-why-num {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(160,123,74,0.15);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--ease);
}
.sv-why-card:hover .sv-why-num { color: var(--gold-light); }
.sv-why-card h4 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.sv-why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ─── Responsive: Services v2 ─── */
@media (max-width: 1100px) {
  .sv-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-cuisine-wrap { grid-template-columns: 1fr; gap: 48px; }
  .sv-cuisine-mosaic { height: 360px; }
  .sv-gallery-bento { height: auto; grid-template-columns: 1fr; }
  .sv-gb-main { height: 360px; }
  .sv-gb-side { grid-template-columns: repeat(4, 1fr); height: 160px; }
}
@media (max-width: 768px) {
  .sv-hero-content { padding-top: 0; }
  .sv-hero-content h1 { font-size: 2.8rem; }
  .sv-cards-grid { grid-template-columns: 1fr; }
  .sv-split { grid-template-columns: 1fr; }
  .sv-split-img { height: 320px; }
  .sv-split-text { padding: 48px 32px; }
  .sv-split-badges { grid-template-columns: 1fr; }
  .sv-stats { flex-wrap: wrap; gap: 24px; }
  .sv-stat-div { display: none; }
  .sv-why-grid { grid-template-columns: 1fr; }
  .sv-gb-side { grid-template-columns: repeat(2, 1fr); height: auto; }
  .sv-gb-item { height: 160px; }
  .sv-cm-small-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-cuisine-mosaic { height: auto; }
}
@media (max-width: 480px) {
  .sv-stat { padding: 0 24px; }
  .sv-card-img { height: 180px; }
  .sv-gb-side { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════
   PRICING PAGE STYLES
══════════════════════════════════════════════ */
.pr-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pr-inc-item {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: var(--ease);
}
.pr-inc-item:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.pr-inc-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-dark);
}

.pr-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pr-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: var(--ease);
  position: relative;
}
.pr-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pr-card-featured {
  border: 2px solid var(--gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.pr-card-featured:hover {
  transform: scale(1.02) translateY(-8px);
}
.pr-featured-badge {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 8px 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pr-card-img {
  height: 200px;
  overflow: hidden;
}
.pr-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pr-card:hover .pr-card-img img { transform: scale(1.06); }
.pr-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pr-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.pr-duration {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.pr-card-head h3 {
  font-family: var(--font-h);
  font-size: 1.6rem;
  color: var(--brown-dark);
  margin: 0;
}
.pr-price-block {
  text-align: right;
}
.pr-price {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1;
}
.pr-price-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-light);
  margin-top: 4px;
}
.pr-save {
  display: inline-block;
  background: rgba(160,123,74,0.1);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 6px;
}
.pr-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pr-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.pr-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--brown-dark);
}
.pr-feat svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}
.pr-addon-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px;
  margin-bottom: 32px;
  margin-top: auto;
}
.pr-addon-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.pr-addon-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pr-addon-items span {
  background: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--brown-dark);
  border: 1px solid var(--border);
}
.pr-card-actions {
  display: flex;
  gap: 12px;
}
.pr-btn-full {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* ─── Photo Strip ─── */
.pr-photo-strip {
  display: flex;
  height: 240px;
  overflow: hidden;
}
.pr-photo-strip img {
  width: 20%;
  height: 100%;
  object-fit: cover;
  transition: width 0.4s ease;
}
.pr-photo-strip img:hover {
  width: 25%;
}

/* ─── Modals ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,4,2,0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: var(--ease);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--cream);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  z-index: 10;
}
.modal-close:hover {
  background: var(--gold);
  color: #fff;
}
.modal-header {
  padding: 40px 40px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 {
  font-family: var(--font-h);
  font-size: 2rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.modal-body {
  padding: 32px 40px 40px;
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.modal-col h4 {
  font-size: 1.1rem;
  color: var(--gold-dark);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-list li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}
.modal-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─── FAQ ─── */
.pr-faq-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-question.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}
.pr-contact-card {
  background: var(--brown-dark);
  padding: 32px;
  border-radius: var(--r-lg);
  color: #fff;
  text-align: center;
}
.pr-contact-card h4 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.pr-contact-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .pr-cards { grid-template-columns: 1fr; }
  .pr-included-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pr-card-head { flex-direction: column; gap: 12px; }
  .pr-price-block { text-align: left; }
  .pr-card-actions { flex-direction: column; }
  .modal-grid { grid-template-columns: 1fr; }
  .pr-photo-strip { height: 160px; }
  .pr-included-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------
   HOMEPAGE � MOBILE RESPONSIVE  (768px and below only)
   Desktop styles are NOT changed
------------------------------------------------------- */

@media (max-width: 768px) {

  /* General Section Spacing */
  .section { padding: 56px 0; }
  .section-alt { padding: 56px 0; }
  .feature-section { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* Section headings */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); line-height: 1.2; }
  .section-subtitle { font-size: 0.95rem; }

  /* Hero Full Screen */
  .hero-fs-content {
    text-align: center;
    padding: 0 0 120px;
    max-width: 100%;
  }
  .hero-fs-badge { font-size: 0.68rem; justify-content: center; }
  .hero-fs-title { font-size: clamp(2rem, 7.5vw, 3rem); line-height: 1.15; }
  .hero-fs-desc { font-size: 0.95rem; margin: 0 auto 28px; max-width: 340px; }
  .hero-fs-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-hero-solid, .btn-hero-outline { text-align: center; width: 100%; }

  /* Pillar Cards */
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .pillar-card { padding: 28px 24px; }
  .pillar-card h3 { font-size: 1.1rem; }
  .pillar-list li { font-size: 0.9rem; }

  /* Feature Rows */
  .feature-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .feature-row.reverse { direction: ltr; }
  .feature-row.reverse > * { direction: ltr; }
  .feature-img-wrap img { height: 280px; object-fit: cover; border-radius: 16px; }
  .feature-img-accent { display: none; }
  .feature-content h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); margin-bottom: 12px; }
  .feature-content p { font-size: 0.95rem; }
  .feature-list li { font-size: 0.9rem; }
  .feature-cta .btn { width: 100%; text-align: center; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .testimonial-card { padding: 28px 24px; }
  .testimonial-card p { font-size: 0.95rem; }

  /* Photo Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 8px; }
  .gallery-item.tall, .gallery-item.portrait { grid-row: span 1; }
  .gallery-caption { font-size: 0.75rem; padding: 6px 10px; }

  /* CTA Banner */
  .cta-banner { padding: 64px 24px; text-align: center; }
  .cta-banner h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); margin-bottom: 12px; }
  .cta-banner p { font-size: 0.95rem; }
  .cta-banner .btn { width: 100%; max-width: 320px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* Narrow phones (480px and below) */
@media (max-width: 480px) {
  .hero-fs-title { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .hero-fs-desc { font-size: 0.88rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.tall, .gallery-item.portrait { grid-row: span 1; }
  .pillar-card { padding: 24px 20px; }
  .section-title { font-size: clamp(1.4rem, 7vw, 1.9rem); }
  .testimonials-grid { gap: 12px; }
}

/* -- Fix: Hero content must start BELOW the fixed nav on mobile -- */
@media (max-width: 768px) {
  .hero-fs {
    align-items: flex-start;
  }
  .hero-fs-inner {
    align-items: flex-start;
    padding-top: 100px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 100px;
    width: 100%;
    min-height: 100vh;
  }
  .hero-fs-content {
    max-width: 100%;
    text-align: center;
    padding: 0;
  }
  .hero-fs-cta {
    justify-content: center;
  }
}

/* -- Luxury Modal Redesign -- */
.luxury-modal {
  border-radius: 20px;
  overflow-y: auto; overflow-x: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.luxury-modal .modal-header {
  background: var(--brown-dark);
  padding: 32px 36px 28px;
  border-bottom: none;
}
.luxury-modal .modal-header h3 {
  font-family: var(--font-h);
  font-size: 1.9rem;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.2;
}
.luxury-modal .modal-header p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}
.luxury-modal .modal-body {
  padding: 28px 36px 0;
}
.luxury-modal .modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.luxury-modal .modal-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.luxury-modal .modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.luxury-modal .modal-list li {
  font-size: 0.88rem;
  color: var(--brown-dark);
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}
.luxury-modal .modal-list li::before { display: none; }
.modal-price {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-dark);
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 24px;
}
.modal-actions {
  display: flex;
  gap: 12px;
  padding: 0 36px 32px;
}
.modal-btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .luxury-modal .modal-grid { grid-template-columns: 1fr; gap: 16px; }
  .luxury-modal .modal-header { padding: 24px; }
  .luxury-modal .modal-header h3 { font-size: 1.5rem; }
  .luxury-modal .modal-body { padding: 20px 24px 0; }
  .modal-actions { padding: 0 24px 24px; flex-direction: column; }
  .modal-price { font-size: 1.6rem; }
}

