:root {
    --bg-cream: #faf7f2;
    --bg-white: #ffffff;
    --bg-sage-light: #f0f4f1;
    --accent-sage: #6b8f71;
    --accent-sage-dark: #4a6e50;
    --accent-blush: #c89b9b;
    --accent-blush-light: #f2e4e4;
    --text-dark: #2d2926;
    --text-body: #4a4543;
    --text-muted: #7a7370;
    --border-light: rgba(0, 0, 0, 0.06);
    --transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-body);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    color: var(--accent-sage);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-sage-dark);
}

/* ===================== NAVIGATION ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo img {
    height: 45px;
    transition: 0.3s;
}

.navbar.scrolled .nav-logo img {
    height: 38px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-sage);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--accent-sage) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-sage-dark) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 992px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: 0.5s;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1.1rem; }
}

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-cream);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 80px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-text .tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent-blush);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 500px;
}

.hero-gallery .gallery-img {
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-gallery .gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-gallery .gallery-img:hover img {
    transform: scale(1.05);
}

.hero-gallery .gallery-img:first-child {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .hero-split { grid-template-columns: 1fr; padding-top: 100px; gap: 2rem; }
    .hero-gallery { height: 350px; }
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--accent-sage);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-sage-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 143, 113, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent-sage);
    border: 2px solid var(--accent-sage);
}

.btn-outline:hover {
    background: var(--accent-sage);
    color: #fff;
    transform: translateY(-2px);
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-sage-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ===================== CARDS ===================== */
.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

/* ===================== SERVICE CARDS ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card .service-tag {
    display: inline-block;
    background: var(--accent-blush-light);
    color: var(--accent-blush);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding: 6px 0;
    color: var(--text-body);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-sage);
    font-weight: 700;
}

/* ===================== TEAM GRID ===================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
}

.team-card .team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid var(--bg-sage-light);
    transition: 0.5s;
}

.team-card:hover .team-photo {
    border-color: var(--accent-sage);
    transform: scale(1.05);
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.team-card .team-role {
    color: var(--accent-sage);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-card .team-bio {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.team-card .team-bio.expanded {
    max-height: 600px;
}

.team-card .read-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-sage);
    cursor: pointer;
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
}

.team-card .read-more:hover {
    color: var(--accent-sage-dark);
}

/* Team section dividers */
.team-section-label {
    text-align: center;
    margin: 3rem 0 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--accent-sage);
    position: relative;
}

.team-section-label::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-blush);
    margin: 0.75rem auto 0;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    padding: 2.5rem;
    padding-top: 3rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--accent-blush-light);
    line-height: 1;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card .testimonial-author {
    font-weight: 700;
    color: var(--accent-sage);
    font-style: normal;
    font-size: 0.9rem;
}

/* ===================== CONTACT FORM ===================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-detail .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-detail span {
    color: var(--text-body);
    font-size: 0.95rem;
}

.contact-detail a {
    color: var(--text-body);
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-sage);
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
}

.contact-social a:hover {
    background: var(--accent-sage);
    color: #fff;
}

.form-card {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--bg-cream);
    transition: 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-sage);
    box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-sage);
}

@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===================== GIFT CERTIFICATES ===================== */
.gift-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.gift-section h2 {
    margin-bottom: 1rem;
}

.gift-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.gift-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-sage);
    margin-bottom: 2rem;
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--bg-sage-light);
    position: relative;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-blush);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--accent-blush);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--accent-sage);
    border-color: var(--accent-sage);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

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

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

/* ===================== ANIMATIONS ===================== */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.animate-up:nth-child(2) { animation-delay: 0.15s; }
.animate-up:nth-child(3) { animation-delay: 0.3s; }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: var(--transition);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===================== HOMEPAGE HIGHLIGHTS ===================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-card {
    text-align: center;
    padding: 3rem 2rem;
}

.highlight-card .highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

/* ===================== BANNER / CTA ===================== */
.cta-banner {
    background: var(--accent-sage);
    color: #fff;
    text-align: center;
    padding: 80px 2rem;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: #fff;
    color: var(--accent-sage);
}

.btn-white:hover {
    background: var(--bg-cream);
    color: var(--accent-sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===================== FEATURED TESTIMONIAL ===================== */
.featured-testimonial {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 4rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.featured-testimonial::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--accent-blush-light);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.featured-testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.featured-testimonial .author {
    font-weight: 700;
    color: var(--accent-sage);
    font-style: normal;
}
