:root {
    --cream: #faf6ef;
    --warm-white: #fffdf9;
    --gold: #c8973a;
    --gold-light: #e8bb6a;
    --gold-pale: #f5e6c8;
    --deep: #2c2416;
    --mid: #5a4a32;
    --muted: #9a876a;
    --silver: #6b7c8a;
    --silver-light: #e8edf0;
    --platinum: #8a9ba8;
    --green-soft: #6b8c6e;
    --radius: 16px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--deep);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 246, 239);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(200, 151, 58, 0.15);
    padding: 0 clamp(1rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}


.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
    background: var(--mid);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--deep);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gold-pale);
    z-index: 99;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-menu a {
    color: var(--mid);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.mobile-menu.open {
    display: flex;
}

/* ── HERO ── */
.hero {
  width: 100%;
  height: calc(100vh+64px); /* adjust as needed */
  overflow: hidden;
  background-color: black;
}


.hero img {
    margin-top: 64px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    border: 1px solid rgba(200, 151, 58, 0.3);
    border-radius: 40px;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mid);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
   
    color: var(--gold);
    font-size: 0.7rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--deep);
    margin-bottom: 1.25rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--mid);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 36, 22, 0.15);
}

.btn-outline {
    background: transparent;
    color:white;
    border: 1.5px solid rgb(255, 255, 255);
    border-radius: 40px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    margin-top: 3.5rem;
    margin-bottom:3.5rem ;
    padding-top: 2.5rem;
    border-top: 1px solid rgb(255, 255, 255);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: white;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── SECTION BASICS ── */
section {
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 4rem);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--deep);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: black;
    max-width: 560px;
    line-height: 1.7;
    font-weight: 300;
}

.section-header {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* ── SERVICES ── */
#services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 1.25rem;
}

.service-card {
    background: var(--cream);
    border: 1px solid rgba(200, 151, 58, 0.15);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(44, 36, 22, 0.1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.875rem;
    color: black;
    line-height: 1.6;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 1rem;
}

.tag {
    background: var(--gold-pale);
    color: black;
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* ── PLANS ── */
#plans {
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    align-items: start;
}

.plan-card {
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-4px);
}

.plan-silver {
    background: rgb(239, 233, 233);
    border: 1.5px solid var(--silver-light);
}

.plan-gold {
    background: linear-gradient(145deg, #2c2416 0%, #3e3020 100%);
    border: 1.5px solid rgba(200, 151, 58, 0.4);
    color: white;
}

.plan-platinum {
    background: linear-gradient(145deg, #1a2530 0%, #263545 100%);
    border: 1.5px solid rgba(138, 155, 168, 0.4);
    color: white;
}

.popular-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.plan-tier {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.plan-silver .plan-tier {
    color: var(--silver);
}

.plan-gold .plan-tier {
    color: var(--gold-light);
}

.plan-platinum .plan-tier {
    color: var(--platinum);
}

.plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.plan-silver .plan-name {
    color: var(--deep);
}

.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0 0.2rem;
}

.plan-silver .plan-price {
    color: var(--gold);
}

.plan-gold .plan-price,
.plan-platinum .plan-price {
    color: var(--gold-light);
}

.plan-period {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.plan-divider {
    height: 1px;
    margin: 1.5rem 0;
}

.plan-silver .plan-divider {
    background: var(--silver-light);
}

.plan-gold .plan-divider,
.plan-platinum .plan-divider {
    background: rgba(255, 255, 255, 0.1);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.plan-silver .plan-features li {
    color: black;
}

.plan-gold .plan-features li,
.plan-platinum .plan-features li {
    color: rgb(255, 255, 255);
}

.check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    margin-top: 1px;
}

.plan-silver .check {
    background: var(--gold-pale);
    color: var(--gold);
}

.plan-gold .check {
    background: rgba(200, 151, 58, 0.25);
    color: var(--gold-light);
}

.plan-platinum .check {
    background: rgba(138, 155, 168, 0.25);
    color: var(--platinum);
}

.plan-btn {
    width: 100%;
    padding: 13px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 2rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    letter-spacing: 0.02em;
    border: none;
}

.plan-silver .plan-btn {
    background: var(--gold);
    color: white;
}

.plan-silver .plan-btn:hover {
    background: var(--deep);
}

.plan-gold .plan-btn {
    background: var(--gold);
    color: var(--deep);
}

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

.plan-platinum .plan-btn {
    background: rgba(138, 155, 168, 0.3);
    color: white;
    border: 1px solid rgba(138, 155, 168, 0.5);
}

.plan-platinum .plan-btn:hover {
    background: rgba(138, 155, 168, 0.5);
}

/* ── DAILY ASSISTANCE ── */
#assistance {
    background: var(--warm-white);
}

.assist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 1rem;
}

.assist-card {
    background: var(--cream);
    border: 1px solid rgba(200, 151, 58, 0.12);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: default;
}

.assist-card:hover {
    box-shadow: 0 8px 28px rgba(44, 36, 22, 0.08);
    transform: translateY(-3px);
}

.assist-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.9rem;
}

.assist-icon {
    font-size: 1.5rem;
}

.assist-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep);
}

.assist-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.assist-card ul li {
    font-size: 0.8rem;
    color: black;
    display: flex;
    align-items: center;
    gap: 6px;
}

.assist-card ul li::before {
    content: '·';
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 0;
}

.assist-note {
    margin-top: 2rem;
    background: var(--gold-pale);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: var(--mid);
    font-style: italic;
}

/* ── WELLNESS ── */
#wellness {
    background: var(--cream);
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
    gap: 1rem;
}

.wellness-item {
    background: var(--warm-white);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    border: 1px solid rgba(107, 140, 110, 0.15);
    transition: all 0.3s;
}

.wellness-item:hover {
    border-color: var(--green-soft);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 140, 110, 0.1);
}

.wellness-item .w-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.wellness-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--deep);
}

/* ── EMOTIONAL SUPPORT ── */
#emotional {
    background: linear-gradient(135deg, #2c2416 0%, #3e3020 100%);
    color: white;
}

#emotional .section-title {
    color: white;
}

#emotional .section-sub {
    color: rgb(255, 255, 255);
}

.emotional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.emotional-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 151, 58, 0.2);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: all 0.3s;
}

.emotional-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 151, 58, 0.45);
}

.emotional-card .e-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

.emotional-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 0.4rem;
}

.emotional-card p {
    font-size: 0.82rem;
    color: rgb(255, 255, 255);
    line-height: 1.6;
}

/* ── SPECIAL SERVICES HIGHLIGHT ── */
#special {
    background:white;
}

.specials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.special-card {
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.special-birthday {
    background: linear-gradient(135deg, #fdf0d5 0%, #fae8c4 100%);
    border: 1px solid rgba(200, 151, 58, 0.25);
}

.special-walk {
    background: linear-gradient(135deg, #e8f0e8 0%, #d8ecda 100%);
    border: 1px solid rgba(107, 140, 110, 0.25);
}

.special-card .s-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.special-birthday .s-label {
    color: black;
}

.special-walk .s-label {
    color: var(--green-soft);
}

.special-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 0.75rem;
}

.special-card p {
    font-size: 0.875rem;
    color: black;
    line-height: 1.7;
}

.special-card .big-icon {
    font-size: 3rem;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    opacity: 0.15;
}

/* ── CTA ── */
#cta {
    background: linear-gradient(135deg, #0f612db7 0%, #063a16 100%);
    color: white;
    text-align: center;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 4rem);
}

#cta .section-title {
    color: white;
    max-width: 600px;
    margin: 0 auto 1rem;
}

#cta p {
    color: rgb(255, 255, 255);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

#cta .btn-white {
    background: white;
    color: var(--gold);
    border: none;
    border-radius: 40px;
    padding: 15px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
}

#cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ── FOOTER ── */
footer {
    background: var(--deep);
    color: rgb(255, 255, 255);
    padding: 2.5rem clamp(1.5rem, 6vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
}

footer .logo span {
    color: var(--gold);
}

footer p {
    font-size: 0.8rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

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


.image-row {
  display: flex;
  gap: 10px;         
  width: 100%;
  padding-bottom: 50px;
}

.image-row img {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}