/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,0.85);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== FONTS ===== */
/* Loaded via Google Fonts link in HTML head:
   Cormorant Garamond: 300–700 italic + roman — display headings
   Jost: 200–700 — primary UI font (body, nav, labels, buttons)
   Lato: 300,400,700 — fallback
*/

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
  transition: background 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 30px 0;
}
.header-logo {
  margin-bottom: 12px;
}
.header-logo img {
  height: 56px;
  width: auto;
}
.nav-container {
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-nav {
  display: flex;
  gap: 0;
  align-items: center;
}
.main-nav > li {
  position: relative;
}
.main-nav > li > a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.88);
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.main-nav > li > a:hover {
  color: #fff;
}
/* Dropdown */
.main-nav .dropdown {
  position: relative;
}
.main-nav .dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #000;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: rgba(255,255,255,0.75);
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}
.dropdown-menu a:hover {
  color: #fff;
}
/* Book Now nav button */
.nav-book-now a {
  background: transparent;
  border: 1px solid #fff;
  padding: 8px 20px !important;
  transition: all 0.3s;
}
.nav-book-now a:hover {
  background: #fff;
  color: #000 !important;
}
/* Mobile nav toggle */
.nav-toggle {
  display: none;
  color: #fff;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: all 0.3s;
}
/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* Overlay when mobile nav is open */
body.nav-open::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

/* ===== HERO VIDEO ===== */
.hero-video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 118px; /* header height offset */
}
.hero-video-section video {
  width: 100%;
  display: block;
}

/* ===== COMMON SECTIONS ===== */
.section {
  padding: 80px 0;
}
.section-dark {
  background: #000;
  color: #fff;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}
.container-wide {
  max-width: 2110px;
  margin: 0 auto;
  padding: 0 30px;
}
.container-medium {
  max-width: 1738px;
  margin: 0 auto;
  padding: 0 30px;
  width: 83%;
}
.text-center { text-align: center; }

/* ===== EYEBROW LABEL ===== */
.section-eyebrow {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #bbb;
  margin-bottom: 16px;
}

/* ===== SECTION ACTIONS ===== */
.section-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ===== HEADINGS ===== */
.heading-primary {
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.15em;
  color: #1a1a1a;
}
.heading-secondary {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 38px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.3;
  color: #fff;
}
.heading-section {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: #1a1a1a;
}
.heading-category {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* ===== DIVIDER ===== */
.divider {
  width: 40px;
  height: 1px;
  background: rgba(0,0,0,0.2);
  margin: 24px auto;
}
.divider-dark {
  background: rgba(0,0,0,0.25);
}

/* ===== BODY TEXT ===== */
.body-text {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.8em;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 14px 36px;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  transition: all 0.35s ease;
  cursor: pointer;
}
.btn:hover {
  background: #000;
  color: #fff;
  letter-spacing: 3.5px;
}
.btn-book {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-width: 1px;
  padding: 14px 44px;
  margin-top: 28px;
}
.btn-book:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.btn-white {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.btn-white:hover {
  background: #fff;
  color: #000;
}

/* ===== SERVICE GRID (Homepage) ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 2110px;
  margin: 50px auto 0;
  padding: 0 30px;
}
.service-card {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.service-card .service-label {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 18px;
  color: #333;
}

/* ===== REVIEWS WIDGET ===== */
.reviews-section {
  width: 100%;
  overflow: hidden;
}
.reviews-section iframe {
  width: 100%;
  min-height: 400px;
  border: none;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.contact-form .form-row.full {
  grid-template-columns: 1fr;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  background: transparent;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-family: 'Jost', 'Lato', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: rgba(0,0,0,0.6);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .btn-submit {
  display: inline-block;
  padding: 14px 48px;
  background: transparent;
  color: #000;
  border: 1px solid #000;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Jost', 'Lato', sans-serif;
  cursor: pointer;
  transition: all 0.35s;
  margin-top: 20px;
}
.contact-form .btn-submit:hover {
  background: #000;
  color: #fff;
}
.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 1800px;
  width: 90%;
  margin: 40px auto;
}
.gallery-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.gallery-strip img:hover {
  opacity: 0.88;
}

/* ===== PRICE LIST (Services) ===== */
.price-section {
  padding: 50px 0 60px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.price-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.price-layout.extensions {
  grid-template-columns: 1fr 3fr;
}
.price-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  padding-top: 10px;
  color: #1a1a1a;
}
.price-category-subtitle {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #999;
  margin-top: 14px;
  line-height: 1.8em;
}
.price-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.price-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.price-item-name {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #1a1a1a;
}
.price-item-price {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  white-space: nowrap;
  margin-left: 20px;
  color: #666;
}
.price-item-desc {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #aaa;
  margin-top: 6px;
  line-height: 1.7em;
}

/* ===== TEAM MEMBER ===== */
.team-subtitle {
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 600;
  color: #E09900;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 15px;
}
.section-intro {
  text-align: center;
  margin-top: 0;
}
.team-member {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  align-items: stretch;
  max-width: 1455px;
  margin: 40px auto;
  box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.3);
  border-radius: 8px;
  overflow: hidden;
}
.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-member-info {
  padding: 40px 42px 40px 40px;
}
.team-member-info .team-name {
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.6em;
  margin-bottom: 0;
}
.team-member-info .role {
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 2em;
  color: #e0b559;
  margin-bottom: 5px;
}
.team-member-info .expertise-label {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #E09900;
  line-height: 2.7em;
}
.team-member-info .expertise-list {
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 2em;
  margin-bottom: 15px;
}
.team-member-info .bio {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 2em;
  color: #666;
  text-align: justify;
  margin-top: -21px;
}

/* ===== MEMBERSHIP PAGE ===== */
.membership-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.8em;
  letter-spacing: 0.04em;
  color: #000;
}
.membership-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.membership-hero-image img {
  width: 80%;
  height: auto;
  display: block;
}
.membership-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.membership-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 18px;
}
.membership-tagline {
  font-family: 'Jost', 'Lato', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 22px;
}
.membership-body {
  font-family: 'Jost', 'Lato', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9em;
  color: #555;
}
.membership-benefits-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin: 15px auto;
  width: 90%;
  max-width: 1502px;
}
.benefit-item {
  text-align: left;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.benefit-item h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: #000;
}
.benefit-item p {
  font-family: 'Jost', 'Lato', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #777;
  line-height: 1.8em;
}
.membership-tiers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 90%;
  max-width: 1800px;
  margin: 27px auto 15px;
}
.tier-item {
  text-align: center;
}
.tier-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.btn-tier {
  display: inline-block;
  padding: 14px 40px;
  margin-top: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease;
}
.btn-tier:hover {
  background: #000;
  color: #fff;
}

/* ===== CAREER FORM ===== */
.career-form {
  margin-top: 30px;
}
.career-form .form-group {
  margin-bottom: 24px;
}
.career-form input,
.career-form textarea,
.career-form select {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  background: transparent;
  font-size: 14px;
  font-family: 'Jost', 'Lato', sans-serif;
  font-weight: 300;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
}
.career-form input:focus,
.career-form textarea:focus,
.career-form select:focus {
  border-color: rgba(0,0,0,0.35);
}
.career-form textarea {
  min-height: 110px;
  resize: vertical;
}
.career-form label {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  color: #888;
}
.career-form .btn-submit {
  display: inline-block;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 16px 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.career-form .btn-submit:hover {
  background: #000;
  color: #fff;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin: 50px 0;
}
.blog-card {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 30px;
}
.blog-card-content {
  padding: 0;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #1a1a1a;
}
.blog-card .blog-date {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 11px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.blog-card p {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #777;
  line-height: 1.8em;
}
.blog-card .read-more {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #000;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  padding-bottom: 3px;
}

/* Blog post page */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px;
}
.blog-post h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.blog-post .post-date {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 11px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.blog-post p {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85em;
  margin-bottom: 20px;
  color: #666;
}
.blog-post h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  margin: 30px 0 15px;
}
.blog-post h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  margin: 25px 0 10px;
}

/* ===== PRODUCT PAGES (Shopify) ===== */
.shopify-section {
  padding: 60px 0;
}
.shopify-embed {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  color: #fff;
  padding: 75px 0 0;
}
.footer-inner {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid #bfbfbf;
}
.footer-col h4 {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.footer-col p,
.footer-col a {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.footer-col a:hover {
  color: #C3C3C3;
}
.footer-col .footer-small {
  font-size: 15px;
  font-weight: 400;
}
.footer-logo {
  margin-bottom: 15px;
}
.footer-logo img {
  width: 72%;
  height: auto;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: -3px;
  margin-left: -8px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 15px;
  transition: color 0.3s;
  border: none;
  border-radius: 0;
  background: none;
}
.footer-social a:hover {
  color: #C3C3C3;
}
.footer-book-now-title {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  margin: 28px 0 0;
  line-height: 1.4em;
}
.footer-book-now-text {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 32px;
}
.footer-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  text-decoration: none;
  margin-top: 25px;
  transition: all 0.3s;
  cursor: pointer;
}
.footer-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-contact-item:first-of-type {
  margin-top: 32px;
}
.footer-contact-item i {
  color: #fff;
  font-size: 15px;
  margin-top: 3px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
  line-height: 1.5em;
}
.footer-subscribe-text {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 25px;
  margin-bottom: 15px;
}
.footer-subscribe input[type="email"] {
  width: 100%;
  padding: 10px 15px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 13px;
  margin-bottom: 10px;
  outline: none;
}
.footer-subscribe input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}
.footer-subscribe button {
  padding: 10px 30px;
  background: transparent;
  color: #fff;
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.footer-subscribe button:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.footer-bottom {
  width: 90%;
  margin: 0 auto;
  padding: 26px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
}

/* ===== POLICY / TEXT PAGES ===== */
.text-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
}
.text-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.text-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin: 30px 0 10px;
}
.text-page h3 {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 20px 0 8px;
}
.text-page p {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8em;
  margin-bottom: 15px;
  color: #666;
}
.text-page ul {
  margin: 10px 0 20px 25px;
}
.text-page ul li {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8em;
  color: #666;
  list-style: disc;
  margin-bottom: 5px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 80px 30px;
}
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}
.cta-banner p {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 25px;
}

/* ===== ABOUT PAGE — NEW LAYOUTS ===== */
.about-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.about-benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.about-pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.about-team-grid { display: grid; gap: 40px; align-items: start; }

@media (max-width: 1024px) {
  .about-mv-grid { grid-template-columns: 1fr; }
  .about-benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .about-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .about-pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .about-benefits-grid { grid-template-columns: 1fr; }
  .about-pillars-grid { grid-template-columns: 1fr; }
}

/* ===== ABOUT PAGE FEATURES ===== */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}
.about-feature {
  text-align: justify;
  padding: 0;
}
.about-feature h4 {
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4em;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.about-feature p {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #666;
  line-height: 1.85em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; margin-left: 0; }
  .footer-contact-item { justify-content: center; }
  .footer-logo img { width: 60%; }
  .price-layout { grid-template-columns: 1fr; }
  .price-layout.extensions { grid-template-columns: 1fr; }
  .team-member { grid-template-columns: 1fr; }
  .team-member img { height: auto; width: 100%; margin-left: 0; }
  .membership-hero-split { grid-template-columns: 1fr; text-align: center; }
  .membership-hero-image img { width: 60%; margin: 0 auto; }
  .membership-benefits-row { grid-template-columns: repeat(3, 1fr); }
  .membership-tiers-row { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-video-section { margin-top: 80px; }
  .heading-primary { font-size: 34px; }
  .heading-secondary { font-size: 24px; letter-spacing: 3px; }
  .heading-section { font-size: 28px; }
  .heading-category { font-size: 30px; }
  .price-category-title { font-size: 25px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card img { height: 300px; }
  .service-card .service-label { font-size: 11px; }
  .membership-benefits-row { grid-template-columns: repeat(2, 1fr); }
  .membership-tiers-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  /* Mobile nav */
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1001;
  }
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  .header-logo { margin-bottom: 0; }
  .header-logo img { height: 40px; }
  .nav-container {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: #000;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 60px;
    border-top: none;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-container.open { right: 0; }
  .main-nav { flex-direction: column; width: 100%; }
  .main-nav > li > a { padding: 14px 24px; font-size: 13px; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 20px;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
  }
}
@media (max-width: 480px) {
  .heading-primary { font-size: 28px; }
  .heading-secondary { font-size: 22px; letter-spacing: 3px; }
  .heading-section { font-size: 24px; }
  .heading-category { font-size: 24px; }
  .section-eyebrow { letter-spacing: 3px; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img { height: 260px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .container-medium { width: 95%; }
  .container { padding: 0 18px; }
  .section { padding: 50px 0; }
  .cta-banner { padding: 50px 18px; }
  .cta-banner h2 { font-size: 28px; }
  .price-item-name { font-size: 14px; }
  .price-item-price { font-size: 14px; white-space: normal; }
  .price-item-header { flex-wrap: wrap; gap: 4px; }
  .membership-title { font-size: 36px; }
  .membership-subtitle { font-size: 30px; }
  .team-member-info .team-name { font-size: 40px; }
  .team-member-info .role { font-size: 24px; }
  .team-member-info { padding: 28px 22px; }
  .footer-inner { width: 100%; padding: 0 18px 40px; }
  .footer-bottom { width: 100%; padding: 20px 18px; }
  .footer-logo img { width: 80%; }
  .footer-subscribe input[type="email"] { width: 100%; }
  .text-page { padding: 30px 18px; }
  .text-page h1 { font-size: 32px; }
  .text-page h2 { font-size: 24px; }
  .blog-post { padding: 30px 18px; }
  .blog-post h1 { font-size: 30px; }
  .blog-post h2 { font-size: 24px; }
  .body-text { font-size: 15px; }
  .btn { padding: 12px 28px; font-size: 10px; }
  .btn-book { padding: 12px 32px; font-size: 15px; }
}
.vo-touchup-103 {
  margin-left: 8px;

  margin-top: 16px;}
