/*
Theme Name: Our Health Our Wealth
Theme URI: https://ourhealthourwealth.co.za
Author: Your Name
Description: Custom theme for Our Health Our Wealth
Version: 1.0
*/

/* paste all your CSS from the <style> tag here */

  /* ---------- ORIGINAL FULL CSS (unchanged) ---------- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
  --forest:   #0C1C0E;
  --deep:     #142417;
  --mid:      #1E3A22;
  --sage:     #3D6142;
  --moss:     #5C8460;
  --gold:     #C8A46A;
  --gold-lt:  #E8C98A;
  --cream:    #F5EDD8;
  --ivory:    #FAF6EE;
  --warm-white: #FFFDF8;
  --charcoal: #1A1A18;
  --text-dark:#2C2A25;
  --text-mid: #5A574F;
  --text-lt:  #9A9690;
}

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
  }

  /* navigation */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(12, 28, 14, 0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(200,164,106,0.15);
    transition: all 0.4s ease;
  }
  nav.scrolled { height: 64px; background: rgba(12, 28, 14, 0.97); }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--forest);
  }
  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .nav-logo-text span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--cream);
  }
  .nav-logo-text span:last-child {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
  }
  /* NEW CSS FOR LOGO IMAGE */
  .nav-logo-img {
    height: 45px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.75);
    transition: color 0.25s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--cream); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 2px;
    font-size: 13px !important;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--forest) !important;
  }

  /* buttons */
  .btn-primary {
    padding: 16px 36px;
    background: var(--gold);
    color: var(--forest);
    border: none;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .btn-primary:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
  }
  .btn-ghost {
    padding: 15px 36px;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245,237,216,0.3);
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .btn-ghost:hover {
    border-color: var(--cream);
    background: rgba(245,237,216,0.08);
  }

  /* hero, stats, about, remedies, services, cta, booking, blog, contact, footer – unchanged */
  .hero {
    min-height: 100vh;
    background: var(--forest);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: none;
  }
  .hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(0deg, transparent 23px, rgba(200,164,106,0.08) 23px),
      linear-gradient(90deg, transparent 23px, rgba(200,164,106,0.08) 23px);
    background-size: 24px 24px;
    background-position: 0 0;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 8% 80px;
    max-width: 780px;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }
  .hero-eyebrow span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 1.0;
    color: var(--cream);
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.4s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-lt);
  }
  .hero-title-bold {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 1.0;
    color: var(--cream);
    display: block;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.55s forwards;
  }
  .hero-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245,237,216,0.65);
    max-width: 520px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.85s forwards;
  }
  .hero-badge {
    position: absolute;
    right: 8%;
    bottom: 12%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(200,164,106,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: spin-slow 20s linear infinite, fadeIn 1.2s ease 1.2s forwards;
  }
  .hero-badge-inner {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--gold);
    line-height: 1.3;
  }
  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
  }
  .hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.4);
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(200,164,106,0.6), transparent);
    animation: pulse-line 2s ease infinite;
  }

  .stats-bar {
    background: var(--gold);
    padding: 24px 8%;
    display: flex;
    justify-content: center;
    gap: clamp(32px, 6vw, 80px);
    flex-wrap: wrap;
  }
  .stat-item { text-align: center; }
  .stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 32px;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(12,28,14,0.65);
  }

  section { padding: 100px 8%; }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }
  .section-eyebrow span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .section-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--sage); }
  .section-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-mid);
    max-width: 580px;
  }

  .about {
    background: var(--ivory);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 8%;
  }
  .about-visual { position: relative; }
  .about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--mid) 0%, var(--sage) 100%);
    border-radius: 4px;
    overflow: hidden;
  }
  .about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
  }
  .about-img-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
  }
  .about-img-accent-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: var(--forest);
    line-height: 1.5;
    text-align: center;
  }
  .about-text { padding: 20px 0; }
  .about-mission {
    margin-top: 32px;
    padding: 24px;
    background: white;
    border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0;
  }
  .about-mission p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.75;
  }
  .about-mission cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .remedies {
    background: var(--forest);
    padding: 100px 8%;
  }
  .remedies .section-title { color: var(--cream); }
  .remedies .section-title em { color: var(--gold-lt); }
  .remedies .section-sub { color: rgba(245,237,216,0.6); }
  .remedies-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }
  .remedies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
 .remedy-card {
  position: relative;
  border: 1px solid rgba(200,164,106,0.12);
  transition: transform 0.35s ease;
  overflow: hidden;
}

/* Animated glowing border on hover */
.remedy-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 0deg,
    transparent,
    var(--gold),
    var(--gold-lt),
    transparent 30%
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.remedy-card:hover::before {
  opacity: 1;
  animation: rotateGlow 2s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Optional: add a soft glow shadow on hover */
.remedy-card:hover {
  box-shadow: 0 8px 25px rgba(200,164,106,0.2);
  border-color: transparent;
}
  .remedy-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(200,164,106,0.2);
    margin-bottom: 16px;
  }
  .remedy-icon-wrap {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(200,164,106,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .remedy-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
  }
  .remedy-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 10px;
  }
  .remedy-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,237,216,0.5);
  }

  .services {
    background: var(--warm-white);
    padding: 100px 8%;
  }
  .services-header { max-width: 540px; margin-bottom: 64px; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .service-card {
    background: var(--ivory);
    border: 1px solid rgba(92,132,96,0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.35s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(12,28,14,0.12);
  }
  .service-img {
    height: 220px;
    background: linear-gradient(135deg, var(--mid) 0%, var(--sage) 100%);
    position: relative;
    overflow: hidden;
  }
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  .service-card:hover .service-img img { transform: scale(1.05); }
  .service-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest);
  }
  .service-body { padding: 28px; }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 10px;
  }
  .service-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 20px;
  }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    text-decoration: none;
  }
  .service-link-arrow {
    display: inline-block;
    width: 20px;
    height: 1px;
    background: currentColor;
    position: relative;
  }
  .service-link-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: rotate(45deg);
  }

  .cta-banner {
    background: var(--mid);
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -50%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,164,106,0.1) 0%, transparent 60%);
  }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(32px, 3.5vw, 50px);
    color: var(--cream);
    line-height: 1.15;
  }
  .cta-title em { font-style: italic; color: var(--gold-lt); }
  .cta-sub {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 300;
    color: rgba(245,237,216,0.55);
  }
  .cta-actions { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }

  .store { background: var(--warm-white); padding: 100px 8%; }
  .category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(92,132,96,0.2);
    padding-bottom: 12px;
  }
  .category-tab {
    background: none;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 30px;
  }
  .category-tab.active { background: var(--gold); color: var(--forest); }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px 24px;
    margin-top: 24px;
  }
  .product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(92,132,96,0.12);
    transition: all 0.3s ease;
    position: relative;
  }
  .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(12,28,14,0.1); }
  .product-img {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    position: relative;
  }
  .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
  .product-card:hover .product-img img { transform: scale(1.02); }
  .product-info { padding: 20px; text-align: center; }
  .product-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 4px;
  }
  .product-desc {
    font-size: 13px;
    color: var(--text-mid);
    margin: 8px 0;
    line-height: 1.5;
    min-height: 60px;
  }
  .product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .product-btn {
    background: transparent;
    border: 1px solid var(--gold);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 2px;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--forest);
    cursor: pointer;
  }
  .product-btn:hover { background: var(--gold); }
  .view-all { text-align: center; margin-top: 48px; }
  .show-more-btn {
    background: transparent;
    border: 1px solid var(--sage);
    color: var(--sage);
    padding: 12px 32px;
    margin-top: 20px;
    display: inline-block;
    cursor: pointer;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  .product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: 1px solid var(--border);
    transition: all 0.2s;
  }
  .product-wishlist svg { width: 16px; height: 16px; stroke: var(--text-lt); fill: none; transition: 0.2s; }
  .product-wishlist.active svg { fill: var(--gold); stroke: var(--gold); }
  .product-wishlist:hover { border-color: var(--gold); }

  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .lightbox.active { display: flex; }
  .lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; border: 2px solid var(--gold); border-radius: 4px; }

  .booking { background: var(--ivory); }
  .booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 40px;
  }
  .booking-form-card {
    background: white;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  }
  .booking-price { font-size: 24px; font-family: 'Cormorant Garamond', serif; color: var(--gold); margin-bottom: 8px; }
  .booking-note { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; }
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 6px;
  }
  .form-input, .flatpickr-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
  }
  .calendar-icon-info { font-size: 12px; color: var(--text-lt); margin-top: 5px; }

  .blog { background: var(--ivory); padding: 100px 8%; }
  .blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 40px;
    flex-wrap: wrap;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
  }
  .blog-featured {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(92,132,96,0.12);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
  }
  .blog-featured:hover { box-shadow: 0 20px 50px rgba(12,28,14,0.1); }
  .blog-featured-img {
    height: 300px;
    background: linear-gradient(160deg, var(--deep) 0%, var(--sage) 100%);
    overflow: hidden;
  }
  .blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
  }
  .blog-featured-body { padding: 32px; }
  .blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .blog-meta span { color: var(--text-lt); }
  .blog-featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.25;
    color: var(--charcoal);
    margin-bottom: 14px;
  }
  .blog-excerpt {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 24px;
  }
  .blog-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .blog-card-sm {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(92,132,96,0.12);
    display: flex;
    transition: all 0.3s ease;
  }
  .blog-card-sm:hover { box-shadow: 0 8px 30px rgba(12,28,14,0.08); }
  .blog-card-sm-img {
    width: 100px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--mid), var(--moss));
    overflow: hidden;
  }
  .blog-card-sm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
  }
  .blog-card-sm-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .blog-card-sm-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.35;
    color: var(--charcoal);
    margin-bottom: 6px;
  }
  .blog-card-sm-date {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-lt);
  }

  .contact {
    background: var(--charcoal);
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .contact-info .section-title { color: var(--cream); }
  .contact-info .section-title em { color: var(--gold-lt); }
  .contact-detail-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .contact-detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .contact-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(200,164,106,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
  }
  .contact-detail-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .contact-detail-value {
    font-size: 15px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.6;
  }
  .contact-form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,164,106,0.12);
    border-radius: 4px;
    padding: 40px;
  }
  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 26px;
    color: var(--cream);
    margin-bottom: 28px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  textarea.form-input { resize: none; height: 100px; }

  footer {
    background: var(--forest);
    padding: 60px 8% 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(200,164,106,0.12);
    margin-bottom: 32px;
  }
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 4px;
  }
  .footer-brand-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
  }
  .footer-brand-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245,237,216,0.45);
    margin-bottom: 24px;
  }
  .footer-socials {
    display: flex;
    gap: 12px;
  }
  .footer-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(200,164,106,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .footer-social svg {
    width: 14px;
    height: 14px;
    stroke: rgba(245,237,216,0.6);
    fill: none;
  }
  .footer-social:hover { border-color: var(--gold); background: rgba(200,164,106,0.1); }
  .footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    color: rgba(245,237,216,0.45);
  }
  .footer-links a:hover { color: var(--cream); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(245,237,216,0.3);
    flex-wrap: wrap;
    gap: 16px;
  }

  /* animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes pulse-line {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.7) translateY(15px); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .review-modal .star-selector span { font-size: 28px; cursor: pointer; color: #ccc; margin-right: 4px; }
  .review-modal .star-selector span.selected { color: var(--gold); }
  .newsletter-section {
    background: var(--gold);
    text-align: center;
    padding: 80px 8%;
  }
  .newsletter-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--forest); margin-bottom: 12px; }
  .newsletter-section p { color: rgba(12,28,14,0.7); margin-bottom: 24px; }
  .reviews-section {
    background: var(--ivory);
    padding: 100px 8%;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
  }
  .review-card {
    background: white;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--border);
  }
  .review-stars { color: var(--gold); margin-bottom: 8px; font-size: 14px; }
  .write-review-btn {
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: 12px 32px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 0.1em;
    transition: 0.3s;
  }
  .write-review-btn:hover { background: var(--mid); }

  @media (max-width: 1024px) {
    .remedies-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-side { flex-direction: row; }
    .blog-card-sm { flex: 1; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .booking-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    .about { grid-template-columns: 1fr; gap: 40px; }
    .about-img-accent { display: none; }
    .contact { grid-template-columns: 1fr; }
    .remedies-header { grid-template-columns: 1fr; }
    .cta-banner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .remedies-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-badge { display: none; }
    .footer-top { grid-template-columns: 1fr; }
    .blog-side { flex-direction: column; }
    .blog-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
  }