/*
Theme Name: Flora Method Concierge
Theme URI: http://www.floramethodmd.com/
Author: Flora Method
Author URI: http://www.floramethodmd.com/
Description: A premium, concierge medical clinic theme for Flora Method.
Version: 1.0
Text Domain: floramethod
*/

/* CSS Reset and Variables */
:root {
  --primary-color: #6a7c6f; /* Muted gray-green */
  --primary-hover: #56665a;
  --accent-color: #c5a059; /* Rich Metallic Gold */
  --accent-hover: #b38f4d;
  --gold-sandy: #d5c3a6; /* Soft Champagne Gold */
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #fdfdfc;
  --bg-gold-light: #faf6ee; /* Soft gold-tinted cream background (replaces old pink) */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--primary-color);
}

.italic-accent {
  font-style: italic;
  color: var(--accent-color);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-text {
  display: inline-block;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  transition: color 0.3s ease;
}

.btn-text:hover {
  color: var(--primary-color);
}

/* Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.4rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.brand-logo {
  display: flex;
  align-items: center;
  max-height: 55px; /* Restrict height to the header */
  overflow: hidden; /* Crop any overlapping white background from the image */
}

.site-logo {
  max-width: 220px;
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.05) brightness(1.05);
  display: block;
  margin-top: -35px;
  margin-bottom: -35px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--primary-color);
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  padding: 10rem 4rem 4rem;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-card {
  background-color: rgba(106, 124, 111, 0.35); /* Highly transparent green */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 3rem;
  border-radius: 16px;
  color: white;
  max-width: 400px;
  border: 1px solid rgba(255,255,255,0.2);
}

.card-icon {
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent-color);
}

.hero-card h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.card-features {
  list-style: none;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  font-weight: 300;
}

.feature-icon {
  min-width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 12px;
  height: 12px;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 4rem;
  text-align: center;
  background-color: #fff;
}

.benefits-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefits-ornament {
  margin: 0 auto 4rem;
  color: var(--gold-sandy);
}

.benefits-ornament svg {
  width: 40px;
  height: 15px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-item .icon {
  margin-bottom: 1.5rem;
  color: var(--gold-sandy);
}

.benefit-item .icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1;
}

.benefit-item h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.benefit-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Footer Invite */
.invite-footer {
  background-color: var(--bg-gold-light);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.invite-footer .icon {
  color: var(--gold-sandy);
}

.invite-footer .icon svg {
  width: 24px;
  height: 24px;
}

.invite-footer p {
  color: var(--primary-color);
  font-size: 0.95rem;
}

/* Page Header */
.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding-top: 6rem;
}
.page-header::before {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(255,255,255,0.7);
}
.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-header-content h1 {
  font-size: 3.5rem;
}

/* How It Works Specific */
.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.flex-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hiw-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.hiw-statement h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hiw-statement p {
  font-size: 1.15rem;
  color: var(--text-light);
}

.hiw-video-placeholder {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.hiw-video-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}
.play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 5px;
}

.hiw-membership {
  background-color: #fcfcfb;
}
.hiw-membership h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}
.hiw-row {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}
.hiw-text {
  flex: 1.25;
}
.hiw-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.hiw-list {
  list-style: none;
}
.hiw-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}
.hiw-list li::before {
  content: '•';
  color: var(--accent-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -4px;
}
.hiw-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hiw-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* FAQ Section */
.hiw-faq {
  padding: 5rem 2rem;
  background-color: #fff;
}
.hiw-faq .hiw-container {
  max-width: 800px;
  margin: 0 auto;
}
.hiw-faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.faq-item {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}
.faq-question.active::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-light);
}

/* Memberships Section */
.memberships-section {
  padding: 8rem 2rem 5rem;
  background-color: var(--bg-light);
}
.memberships-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.memberships-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.memberships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.membership-card {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eaeaea;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.membership-card:hover {
  transform: translateY(-10px);
}
.membership-card.featured {
  background-color: #faf7f2;
  border-color: var(--gold-sandy);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
}
.card-tier {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-price {
  font-size: 1.15rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.card-target {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.4;
}
.card-divider {
  height: 1px;
  background: #eaeaea;
  margin-bottom: 2rem;
}
.membership-card.featured .card-divider {
  background: var(--gold-sandy);
}
.card-features-list {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}
.card-features-list li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark);
}
.card-features-list li svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 3px;
}
.card-btn {
  width: 100%;
  text-align: center;
}

/* =========================================
   Approach Section
   ========================================= */
.approach-section {
  padding: 6rem 4rem;
  background-color: var(--bg-primary);
}

.approach-container {
  max-width: 1200px;
  margin: 0 auto;
}

.approach-video-container {
  max-width: 900px;
  margin: 0 auto 5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.approach-video-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.approach-card {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border-top: 4px solid var(--accent-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.approach-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.3;
}

.approach-card p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    gap: 3rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-header {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .benefits-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-section {
    padding: 8rem 2rem 3rem;
  }
}

/* =========================================
   Form and Input Elements
   ========================================= */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background-color: #ffffff;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(106, 124, 111, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* =========================================
   Contact Page Layout
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-card {
  background-color: #faf7f2;
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  text-align: left;
}

.contact-info-card h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-details li strong {
  color: var(--primary-color);
}

.contact-details svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================
   Portal Login Page
   ========================================= */
.login-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: var(--bg-light);
}

.login-card {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  width: 100%;
  max-width: 450px;
  text-align: center;
}

.login-card h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.login-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* =========================================
   About Page Layout
   ========================================= */
.about-content::after {
  content: "";
  display: table;
  clear: both;
}

.about-image-wrapper {
  float: left;
  width: 40%;
  max-width: 420px;
  margin-left: 15px;
  margin-right: 4rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-color);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover::before {
  transform: translate(-5px, 5px);
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .about-image-wrapper {
    float: none;
    width: 100%;
    max-width: 100%;
    margin-left: 10px;
    margin-right: 0;
    margin-bottom: 3rem;
  }
  
  .about-image-wrapper::before {
    top: 10px;
    left: -10px;
  }
}

/* =========================================
   Aesthetics Page Layout
   ========================================= */
.aesthetics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.aesthetics-hero {
  text-align: center;
  padding: 4rem 0 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.aesthetics-hero h1 {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.aesthetics-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-serif);
}

.aesthetics-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 4rem;
}

.filter-pill {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-pill.active {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(106, 124, 111, 0.2);
}

.aesthetics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.aesthetics-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aesthetics-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: rgba(196, 139, 129, 0.3);
}

.card-top {
  margin-bottom: 1.5rem;
}

.card-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  background-color: var(--bg-gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-title-row h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service-price-tag {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.card-action-btn {
  align-self: flex-start;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.card-action-btn:hover {
  color: var(--accent-color);
}

.card-action-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.card-action-btn:hover svg {
  transform: translateX(4px);
}

/* Call to Action Banner */
.aesthetics-cta-banner {
  background-color: #faf7f2;
  border-radius: 20px;
  border: 1px solid #eaeaea;
  padding: 4rem 3rem;
  text-align: center;
  margin-bottom: 6rem;
}

.aesthetics-cta-banner h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.aesthetics-cta-banner p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 2rem;
}

/* Responsive grid adjustments */
@media (max-width: 1024px) {
  .aesthetics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .aesthetics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .aesthetics-hero h1 {
    font-size: 3rem;
  }
  .aesthetics-cta-banner {
    padding: 3rem 2rem;
  }
  .aesthetics-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
    white-space: nowrap;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .aesthetics-filters::-webkit-scrollbar {
    height: 4px;
  }
  .aesthetics-filters::-webkit-scrollbar-track {
    background: transparent;
  }
  .aesthetics-filters::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
  }
}

/* =========================================
   Mobile Navigation & Layout Enhancements
   ========================================= */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  outline: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-only-actions {
  display: none;
}

@media (max-width: 991px) {
  .site-header {
    padding: 0.8rem 2rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.06);
    padding: 7rem 2rem 3rem;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  
  .site-header.nav-open .main-nav {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .main-nav ul li a {
    font-size: 1.15rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
  }
  
  .site-header .header-actions {
    display: none !important;
  }
  
  .mobile-only-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 2rem;
  }
  
  .mobile-only-actions a {
    width: 100%;
    text-align: center;
  }
  
  .mobile-only-actions .btn-text {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.8rem;
  }
  
  .hiw-row {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .hiw-text,
  .hiw-image {
    width: 100%;
    flex: none;
  }
}

/* Membership Grid Responsiveness */
@media (max-width: 1024px) {
  .memberships-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .memberships-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* Login Card small screen tweak */
@media (max-width: 480px) {
  .login-card {
    padding: 2.5rem 1.5rem;
  }
  .login-card h1 {
    font-size: 1.8rem;
  }
}

