/* ===== VARIABLES ===== */
:root {
    --plum: #6B3A5D;
    --plum-dark: #4A2740;
    --plum-light: #8B5A7D;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --gold: #C4A265;
    --gold-light: #D4B87A;
    --text-dark: #2D2D2D;
    --text-body: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--plum-dark);
    line-height: 1.3;
}

h1 { font-size: 3rem; font-weight: 400; }
h2 { font-size: 2.2rem; font-weight: 400; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; font-weight: 500; }

p { margin-bottom: 1rem; }

a {
    color: var(--plum);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover { color: var(--gold); }

/* ===== LAYOUT ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* ===== HEADER ===== */
header {
    position: relative;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid rgba(107,58,93,0.08);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--plum-dark);
    letter-spacing: 0.02em;
}

.logo-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--plum-light);
    font-weight: 500;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-body);
    letter-spacing: 0.02em;
}

nav a:hover {
    color: var(--plum);
}

nav a.active {
    color: var(--plum);
    font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-outline {
    border: 1.5px solid var(--plum);
    color: var(--plum);
    background: transparent;
}
.btn-outline:hover {
    background: var(--plum);
    color: var(--white);
}

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

/* ===== HERO (homepage) ===== */
.hero-brand {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-top: 0.5rem;
}

.hero-signature {
    height: auto;
    width: 340px;
    max-width: 75%;
    display: block;
    margin: 0 auto 0.5rem;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--plum-light);
    font-weight: 500;
    margin: 0;
}

.hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
    background: var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    color: var(--plum-dark);
}

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

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(74,39,64,0.15);
}

/* Photo placeholders */
.photo-placeholder {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 3/4;
    margin: 0 auto;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--plum-light);
    text-align: center;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(74,39,64,0.15);
    background: linear-gradient(145deg, #e8d5df 0%, #d4b8c8 40%, #c4a0b5 100%);
}

.photo-placeholder-small {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--plum-light);
    background: linear-gradient(145deg, #e8d5df 0%, #d4b8c8 100%);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--plum-dark);
    padding: 2.5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    color: var(--white);
}

.trust-icon {
    margin-bottom: 0.75rem;
}

.trust-icon svg {
    width: 30px;
    height: 30px;
    stroke: rgba(255,255,255,0.7);
    stroke-width: 1.5;
    fill: none;
}

.trust-item h4 {
    color: var(--gold-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.trust-item p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

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

/* ===== SERVICE CARDS ===== */
.services {
    background: var(--white);
}

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

.service-card {
    padding: 2.5rem 2rem;
    background: var(--cream);
    border-radius: 4px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--plum-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74,39,64,0.08);
}

.service-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 1.25rem;
}

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

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card .card-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--plum);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.service-card .card-link:hover { color: var(--gold); }

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-label {
    text-align: left;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.credential-tag {
    padding: 0.4rem 1rem;
    background: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--plum);
    font-weight: 500;
    border: 1px solid rgba(107,58,93,0.15);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    padding: 2rem;
    border-left: 3px solid var(--gold);
    background: var(--cream);
    border-radius: 0 4px 4px 0;
}

.testimonial-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--plum-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== FEES ===== */
.fees {
    background: var(--cream);
}

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

.fee-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(107,58,93,0.1);
    transition: all 0.3s;
}

.fee-card:hover {
    border-color: var(--plum);
    box-shadow: 0 10px 30px rgba(74,39,64,0.1);
}

.fee-card.featured {
    border: 2px solid var(--plum);
    position: relative;
}

.fee-card.featured::before {
    content: 'Most popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--plum);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.fee-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.fee-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--plum-dark);
    margin-bottom: 0.25rem;
}

.fee-duration {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.fee-details {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
}

.fee-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream-dark);
    padding-left: 1.2rem;
    position: relative;
}

.fee-details li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--plum-dark);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-contact-info {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cta-contact-info a {
    color: var(--gold-light);
}

/* ===== FOOTER ===== */
footer {
    background: #2D1F28;
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 2rem;
    font-size: 0.85rem;
}

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

.footer-brand .logo-name {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand .logo-tagline {
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

footer h4 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

footer a {
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}
footer a:hover { color: var(--gold-light); }

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

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background: var(--cream);
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    color: var(--plum-dark);
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-banner .section-label {
    margin-bottom: 1rem;
}

/* ===== CONTENT SECTIONS (inner pages) ===== */
.content-section {
    padding: 4rem 0;
}

.content-section.alt {
    background: var(--cream);
}

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.content-narrow h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-narrow h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-narrow p {
    font-size: 1rem;
    line-height: 1.8;
}

.content-narrow ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.content-narrow ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.content-narrow ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.two-col-wide {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    align-items: start;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    margin-top: 1.25rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--white);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--plum-light);
}

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

.contact-form .btn {
    margin-top: 1.5rem;
}

/* ===== LOCATION CARDS ===== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    padding: 2rem;
    background: var(--cream);
    border-radius: 4px;
    text-align: center;
}

.location-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.location-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-card {
    padding: 2rem;
    background: var(--cream);
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    border-color: var(--plum-light);
    transform: translateY(-2px);
    cursor: pointer;
}

.blog-card:hover h3 {
    color: var(--plum);
}

.blog-card .blog-date {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 301;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--plum-dark);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 300;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
}

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

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--plum-dark);
    font-weight: 400;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .btn {
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    background: var(--plum);
    padding: 0.85rem 2rem;
}

.mobile-menu .btn:hover {
    background: var(--plum-dark);
    color: var(--white);
}

/* ===== MOCKUP NOTICE ===== */
.mockup-banner {
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    body { font-size: 15px; line-height: 1.65; }

    .hero { min-height: auto; padding-top: 5.5rem; padding-bottom: 2rem; }
    .hero-brand { margin-bottom: 1.5rem; }
    .hero-signature { width: 70%; max-width: 280px; }
    .hero-subtitle { font-size: 0.75rem; letter-spacing: 0.15em; }
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-content h1 { font-size: 1.85rem; }
    .hero-content p { font-size: 0.95rem; line-height: 1.7; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 300px; }
    .hero-ctas { justify-content: center; flex-wrap: wrap; }

    nav { display: none; }
    header { background: var(--cream); border-bottom: 1px solid rgba(107,58,93,0.08); backdrop-filter: none; position: relative; }
    .header-inner { padding: 1.2rem 1.2rem 0.8rem; flex-wrap: wrap; justify-content: center; }
    .logo { display: flex; align-items: center; justify-content: center; width: 100%; text-align: center; }
    .logo img { height: 38px; }
    .hamburger { display: flex; position: absolute; right: 1.2rem; top: 1.4rem; }
    .hero { padding-top: 1.5rem; }

    .page-banner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
    .page-banner h1 { font-size: 1.85rem; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-image img { max-width: 250px !important; margin: 0 auto !important; border-radius: 4px !important; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .fees-grid { grid-template-columns: 1fr; max-width: 350px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .credentials { justify-content: center; }

    .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 2rem; }
    .locations-grid { grid-template-columns: 1fr; max-width: 350px; margin-left: auto; margin-right: auto; }
    .blog-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
