/* Lifespan Nutrition - Classic Version (Pixel-Accurate Wix Replica) */

/* Google Fonts - Cormorant Garamond for headings, Figtree for body (matching Wix) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Figtree:wght@300;400;500;600;700&display=swap');

/* CSS Variables - EXACT colours extracted from live Wix site via Playwright (March 2026) */
:root {
    --teal: #005145;              /* header bg, Work With Me bg, Meet section bg, footer bg */
    --coral-button: #FE5E41;      /* all Find Out More buttons */
    --off-white: #FAF9F5;         /* warm white sections */
    --light-grey: #F2F2F2;        /* subtle background areas / mid-page bg */
    --fafafa: #FAFAFA;            /* associations/dropdown bg */
    --text-dark: #272D2D;         /* secondary body text */
    --text-body: #000000;         /* body paragraph text (Wix uses black) */
    --black: #000000;             /* heading text */
    --white: #FFFFFF;
    --footer-text: #F2F2F2;       /* footer text colour */
    --border-light: #ddd;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Figtree', 'Source Sans Pro', Arial, sans-serif;
    --max-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
}

a {
    color: var(--text-body);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   HEADER - Two-row layout on dark teal #005145
   ============================================ */
.header {
    background-color: var(--teal);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Row 1: Social icons left, Logo centred */
.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    position: relative;
}

.header-social {
    position: absolute;
    left: 20px;
    display: flex;
    gap: 10px;
}

.header-social a img {
    width: 28px;
    height: 28px;
    opacity: 0.7;
}

.header-social a:hover img {
    opacity: 1;
}

.logo {
    text-align: center;
}

.logo img {
    height: 80px;
    width: auto;
}

/* Row 2: White nav bar with centred links and vertical separators */
.nav-bar {
    background: var(--white);
    display: flex;
    justify-content: center;
    border-top: 1px solid #ccc;
}

.nav-bar a,
.nav-bar .nav-dropdown > a {
    display: inline-block;
    padding: 12px 40px;
    border-right: 1px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-body);
    text-decoration: none;
}

.nav-bar > a:first-child,
.nav-bar > .nav-dropdown:first-child > a {
    border-left: 1px solid var(--border-light);
}

.nav-bar a:hover {
    color: var(--black);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--text-body);
    border-bottom: 1.5px solid var(--text-body);
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: middle;
    margin-bottom: 2px;
    opacity: 0.5;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 101;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-body);
    border-right: none;
    border-bottom: 1px solid var(--border-light);
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: var(--light-grey);
}

.nav-dropdown-menu a.nav-sub-item {
    padding-left: 35px;
    font-size: 13px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* ============================================
   HERO SECTION - Full-width B&W image strip
   ============================================ */
.hero {
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--white);
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 0 auto;
    padding: 22px 40px 0;
    max-width: 1100px;
}

.hero-images img {
    flex: 1 1 0%;
    min-width: 0;
    max-width: 320px;
    height: 420px;
    object-fit: cover;
    filter: grayscale(100%);
}

.hero-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 34px 40px 76px;
    background-color: var(--white);
}

/* Main heading - 70px as per Wix */
.hero-content h3,
.hero-heading {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    text-align: center;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-body);
}

/* ============================================
   MEET DR BUJTOR SECTION
   Portrait LEFT with soft edges, text RIGHT
   ============================================ */
.meet-section {
    padding: 110px 40px 95px;
    background-color: var(--teal);
    color: var(--white);
}

.meet-content {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

/* Left side: Portrait + credentials + button */
.meet-left {
    flex: 0 0 430px;
    text-align: center;
    margin-top: -155px;
}

.meet-portrait {
    width: 430px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    object-fit: cover;
    margin-bottom: 15px;
}

.meet-section .find-out-more {
    background-color: var(--coral-button);
    color: var(--white) !important;
}

.meet-credentials {
    font-size: 16px;
    color: var(--white);
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-body);
    line-height: 1.5;
}

/* Right side: Meet + name + bio + quote */
.meet-right {
    flex: 1;
    padding-top: 8px;
    max-width: 560px;
}

/* "Meet" - 132px italic */
.meet-heading-meet {
    font-family: var(--font-heading);
    font-size: 132px;
    font-weight: 400;
    font-style: italic;
    line-height: 0.9;
    margin-bottom: 0;
    color: var(--white);
}

/* "Dr Melissa Bujtor" - 69px italic */
.meet-heading-name {
    font-family: var(--font-heading);
    font-size: 69px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.meet-bio {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: var(--white);
}

.meet-quote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
}

/* Legacy meet-text and meet-image classes */
.meet-text {
    flex: 1;
}

.meet-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.meet-text h3.name {
    margin-bottom: 20px;
}

.meet-image {
    flex: 0 0 45%;
}

.meet-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 0;
}

/* ============================================
   CORAL PILL BUTTONS - All "Find Out More"
   ============================================ */
.btn-coral,
.cta-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.find-out-more,
a.find-out-more {
    display: inline-block;
    background-color: var(--coral-button);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-coral:hover,
.find-out-more:hover,
a.find-out-more:hover {
    opacity: 0.85;
    text-decoration: none;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    padding: 60px 40px;
    text-align: center;
    background-color: var(--off-white);
}

.quote-section blockquote {
    font-family: var(--font-heading);
    font-size: 28px;
    font-style: italic;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   CLINICAL PRACTICE AREAS - 4-COLUMN LAYOUT
   [image | paediatrics | women's health | image]
   ============================================ */
.clinical-areas {
    padding: 96px 0 92px;
    background-color: var(--white);
}

.clinical-areas .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Section heading with decorative line */
.clinical-areas h2,
.section-heading {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    color: var(--black);
}

.section-heading::after,
.clinical-areas h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 1px;
    background-color: var(--teal);
    margin: 20px auto 0;
}

.clinical-areas .intro-text {
    text-align: left;
    max-width: 760px;
    margin: 34px auto 62px;
    font-size: 15px;
    line-height: 1.7;
}

/* 4-column grid layout */
.clinical-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 220px;
    gap: 0;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.clinical-image-left,
.clinical-image-right {
    height: 500px;
    object-fit: cover;
    width: 100%;
    filter: grayscale(100%);
}

.clinical-text-col {
    padding: 68px 42px 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.clinical-text-col + .clinical-text-col {
    border-left: 1px solid var(--border-light);
}

.clinical-text-col h4 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--black);
}

/* Decorative line above headings */
.clinical-text-col h4::before {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background-color: var(--teal);
    margin: 0 auto 25px;
}

.clinical-text-col p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: left;
}

/* Override full-width buttons in clinical section */
.clinical-text-col .find-out-more {
    width: auto;
    display: inline-block;
    margin-top: auto;
    align-self: center;
    transform: translateY(28px);
}

/* Legacy clinical-layout for existing HTML */
.clinical-layout {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 200px;
    gap: 0;
    align-items: stretch;
}

.clinical-layout .side-image {
    display: flex;
}

.clinical-layout .side-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.clinical-layout .content-middle {
    display: contents;
}

.clinical-item {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clinical-item:last-child {
    border-left: 1px solid var(--border-light);
}

.clinical-item h4 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--black);
}

.clinical-item p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ============================================
   WORK WITH ME SECTION - Dark teal background
   ============================================ */
.work-section {
    padding: 118px 40px 108px;
    background-color: var(--teal);
    color: var(--white);
}

.work-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Enormous heading */
.work-heading {
    font-family: var(--font-heading);
    font-size: clamp(100px, 15vw, 250px);
    font-weight: 400;
    text-align: center;
    line-height: 0.85;
    margin-bottom: 20px;
    color: var(--black);
}

.work-heading .italic {
    font-style: italic;
}

.work-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 400;
    text-align: center;
    line-height: 0.85;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
    color: var(--white);
}

.work-section h2 .work-line1 {
    display: block;
    font-style: normal;
    letter-spacing: 0.05em;
}

.work-section h2 .work-line2 {
    display: block;
    font-size: 0.7em;
}

.work-section h2::after {
    content: '';
    display: block;
    width: 30%;
    height: 1px;
    background-color: rgba(0,0,0,0.3);
    margin: 30px auto 0;
}

.work-section .intro-text {
    text-align: left;
    max-width: 700px;
    margin: 46px auto 68px;
    font-size: 15px;
    line-height: 1.7;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.work-card {
    text-align: left;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    overflow: hidden;
    background-color: rgba(255,255,255,0.08);
}

.work-card-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Portrait image on top of card */
.work-card img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
    filter: grayscale(100%);
}

.work-card-text {
    flex: 1;
    padding: 18px 18px 16px;
}

.work-card h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--white);
}

.work-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ============================================
   ASSOCIATIONS BAR
   ============================================ */
.associations {
    padding: 58px 40px 50px;
    background-color: var(--white);
}

.associations.associations-soft {
    background-color: #dfe8dd;
}

.associations h2,
.associations h3 {
    font-family: var(--font-heading);
    font-size: 43px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.associations h2::after,
.associations h3::after {
    content: '';
    display: block;
    width: 30%;
    height: 1px;
    background-color: var(--teal);
    margin: 15px auto 0;
}

.associations-logos {
    max-width: var(--max-width);
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.associations-logos img {
    height: 52px;
    width: auto;
}

/* ============================================
   BANNER SECTION - Dark teal quote + B&W image strip
   ============================================ */
.banner-section {
    background-color: var(--white);
}

.banner-text {
    text-align: center;
    padding: 20px 40px 14px;
    background-color: transparent;
}

.banner-text a {
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    color: #7d7466;
    text-decoration: none;
    line-height: 1.5;
}

.banner-text a:hover {
    color: var(--text-dark);
}

.banner-images {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.banner-images img {
    flex: 1 1 0%;
    min-width: 0;
    height: 260px;
    object-fit: cover;
    filter: grayscale(100%);
}

.banner-section > img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
}

/* ============================================
   FOOTER - Dark teal #005145
   ============================================ */
.footer {
    background-color: var(--teal);
    color: var(--white);
    padding: 36px 40px 28px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-logo img {
    height: 62px;
    width: auto;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-social a img {
    height: 20px;
    width: 20px;
}

.footer-email {
    margin-bottom: 16px;
}

.footer-email a {
    font-size: 15px;
    color: var(--white);
    text-decoration: none;
}

.footer-email a:hover {
    text-decoration: underline;
}

.footer-info {
    font-size: 11px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
}

.footer-info a {
    color: rgba(255,255,255,0.85);
}

.footer-info a:hover {
    color: var(--white);
}

/* ============================================
   FLOATING CONTACT BUTTON - Bottom LEFT
   ============================================ */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.floating-contact img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease;
}

.floating-contact:hover img {
    transform: scale(1.08);
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
    padding-top: 56px;
    padding-bottom: 44px;
    background-color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT PAGE - Bio Layout (photo left, text right)
   ============================================ */
.about-bio-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 980px;
    margin: 0 auto;
}

.about-bio-left {
    flex: 0 0 240px;
}

.about-portrait {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    font-style: italic;
    color: var(--teal);
    line-height: 1.5;
    margin-top: 26px;
    padding: 24px 0 0;
    border: none;
}

.about-bio-right {
    flex: 1;
}

.about-label {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 5px;
}

.about-name {
    font-size: 30px;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 20px;
}

.about-bio-right p {
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.72;
}

/* About - Professional Background (text left, image right) */
.about-background {
    background-color: var(--off-white);
}

.about-bg-layout {
    display: flex;
    gap: 46px;
    align-items: flex-start;
    max-width: 980px;
    margin: 0 auto;
}

.about-bg-text {
    flex: 1;
}

.about-bg-text h3 {
    font-size: 40px;
    margin-bottom: 25px;
}

.about-bg-text p {
    font-size: 15px;
    margin-bottom: 15px;
}

.about-bg-image {
    flex: 0 0 310px;
}

.about-bg-image img {
    width: 100%;
    border-radius: 0;
    object-fit: cover;
    aspect-ratio: 374 / 608;
}

/* About - Credentials Panel */
.about-credentials {
    background-color: var(--white);
    padding: 96px 40px 84px;
}

.credentials-panel {
    max-width: 860px;
    margin: 0 auto;
}

.credentials-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.credentials-badges img {
    height: 80px;
    width: auto;
}

.credentials-section {
    margin-bottom: 48px;
    padding-left: 34px;
    border-left: 1px solid rgba(0, 81, 69, 0.35);
    position: relative;
}

/* Section divider dots between credential sections (matching Wix) */
.credentials-section + .credentials-section::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--teal);
    border-radius: 50%;
    position: absolute;
    top: -26px;
    left: -5px;
}

.credentials-section h3 {
    font-size: 34px;
    margin-bottom: 16px;
}

.credentials-section p {
    font-size: 15px;
    line-height: 1.7;
}

.credentials-section ul {
    list-style: none;
    padding: 0;
}

.credentials-section ul li {
    font-size: 15px;
    padding: 4px 0;
    line-height: 1.6;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 88px 40px;
    background-color: var(--white);
}

.content-section.alt {
    background-color: var(--off-white);
}

.content-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.content-wrapper p {
    line-height: 1.8;
}

.content-with-image {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-with-image.reverse {
    flex-direction: row-reverse;
}

.content-with-image .content-text {
    flex: 1;
}

.content-with-image .content-image {
    flex: 0 0 40%;
}

.content-with-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 0;
}

/* Lists */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
}

.styled-list li::before {
    content: "•";
    color: var(--coral-button);
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.two-column h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Sub-sections */
.sub-section {
    margin-bottom: 40px;
}

.sub-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 550px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral-button);
}

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

.btn-submit {
    background-color: var(--coral-button);
    color: var(--white);
    padding: 14px 35px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-submit:hover {
    opacity: 0.85;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
}

.location-card img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.location-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.location-card address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION - Matching Wix layout with vertical text
   ============================================ */
.faq-section {
    padding: 92px 40px 110px;
    background-color: var(--white);
}

.faq-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.faq-vertical-text {
    font-family: var(--font-heading);
    font-size: 116px;
    font-weight: 400;
    color: var(--text-dark);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    line-height: 1;
}

.faq-content {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    color: var(--coral-button);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding-top: 15px;
    font-size: 15px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   THERAPY CARDS
   ============================================ */
.therapy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.therapy-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 8px;
}

.therapy-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.therapy-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ============================================
   PUBLICATIONS LIST
   ============================================ */
.publications-list {
    padding-left: 25px;
}

.publications-list li {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.publications-list em {
    font-style: italic;
}

/* ============================================
   CIRCLE LOGO HEADER (Contact page) - Legacy
   ============================================ */
.circle-logo-header {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
}

.circle-logo-header img {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
}

.circle-logo-header h1 {
    font-size: 56px;
}

/* ============================================
   CONTACT HERO - New layout matching live site
   ============================================ */
.contact-hero {
    padding: 70px 40px 92px;
    background: var(--white);
    min-height: 620px;
    overflow: visible;
}

.contact-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-circle-wrapper {
    position: relative;
    flex-shrink: 0;
}

.contact-circle {
    position: relative;
    width: 760px;
    height: 760px;
    background-color: #e4e9df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -230px;
    margin-top: -90px;
}

.contact-circle-logo {
    width: 360px;
    height: 360px;
    opacity: 0.08;
}

.contact-vertical-text {
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 1;
}

.contact-form-area {
    flex: 1;
    padding-top: 0;
    max-width: 430px;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-body);
}

.contact-email {
    margin-bottom: 40px;
}

.contact-email a {
    color: var(--text-body);
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.enquiry-form-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--black);
}

.contact-form-new {
    max-width: 360px;
}

.contact-form-new .form-group {
    margin-bottom: 20px;
}

.contact-form-new label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-form-new input,
.contact-form-new textarea {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #f5f5f5;
    font-family: var(--font-body);
    font-size: 15px;
}

.contact-form-new input::placeholder,
.contact-form-new textarea::placeholder {
    color: var(--coral-button);
    opacity: 0.8;
}

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

.btn-send {
    background-color: var(--coral-button);
    color: var(--white);
    padding: 10px 30px;
    border: none;
    border-radius: 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-send:hover {
    opacity: 0.85;
}

.btn-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success p {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--sage-green);
    line-height: 1.6;
}

/* ============================================
   LOCATIONS SECTION - Matching live site
   ============================================ */
.locations-section {
    background-color: #dfe8dd;
    padding: 80px 40px;
    color: var(--text-body);
}

.locations-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.locations-vertical-text {
    font-family: var(--font-heading);
    font-size: 86px;
    font-weight: 400;
    color: var(--black);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.locations-content {
    flex: 1;
}

.locations-intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-body);
    max-width: 500px;
}

.location-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.location-map {
    width: 280px;
    min-width: 280px;
    height: 200px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

.location-details {
    flex: 1;
}

.location-details h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--white);
}

.location-details address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
}

/* Location address block (no map, matching Wix) */
.location-address-block {
    text-align: center;
    margin-top: 30px;
}

.location-address-block h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.location-address-block p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
}

.location-map-embed {
    margin-top: 48px;
    border-radius: 0;
    overflow: hidden;
    max-width: 460px;
}

.location-map-embed iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

/* FAQ open format (matching Wix - all answers visible, no accordion) */
.faq-content-open .faq-entry {
    margin-bottom: 38px;
}

.faq-content-open .faq-q {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3;
}

.faq-content-open .faq-a {
    font-size: 15px;
    line-height: 1.95;
    color: var(--text-body);
}

.faq-content-open .faq-a a {
    color: var(--text-body);
    text-decoration: underline;
}

.faq-decorative-images {
    display: none;
}

.faq-decorative-images img {
    width: 50%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive locations */
@media (max-width: 992px) {
    .locations-inner {
        flex-direction: column;
        align-items: center;
    }

    .locations-vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 60px;
        margin-bottom: 30px;
    }

    .locations-content {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .location-row {
        flex-direction: column;
    }

    .location-map {
        width: 100%;
        min-width: auto;
    }

    .locations-vertical-text {
        font-size: 48px;
    }
}

/* Responsive contact hero */
@media (max-width: 992px) {
    .contact-hero {
        min-height: auto;
        padding: 60px 20px 60px;
    }

    .contact-hero-inner {
        flex-direction: column;
        align-items: center;
    }

    .contact-circle-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-circle {
        width: 400px;
        height: 400px;
        min-width: 400px;
        margin-left: 0;
        margin-top: 0;
    }

    .contact-circle-logo {
        width: 240px;
        height: 240px;
    }

    .contact-vertical-text {
        position: static;
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 60px;
        margin-top: 20px;
    }

    .contact-form-area {
        width: 100%;
        max-width: 500px;
    }

    .faq-inner {
        flex-direction: column;
        align-items: center;
    }

    .faq-vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 60px;
        margin-bottom: 30px;
    }

    .faq-content {
        width: 100%;
    }

    .faq-decorative-images {
        flex-direction: column;
    }

    .faq-decorative-images img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-circle {
        width: 300px;
        height: 300px;
        min-width: 300px;
    }

    .contact-circle-logo {
        width: 180px;
        height: 180px;
    }

    .contact-vertical-text {
        font-size: 48px;
    }
}

/* ============================================
   AREAS GRID (Clinic page)
   ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.areas-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.area-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.area-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    margin-bottom: 20px;
    filter: grayscale(100%);
}

/* Circular images for clinic page */
.area-card img.circle-image {
    width: 178px;
    height: 178px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    display: block;
}

.area-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--black);
}

.area-card h3 a {
    color: var(--black);
}

.area-card p {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 0;
}

.area-card .find-out-more {
    margin-top: auto;
    transform: translateY(24px);
}

/* ============================================
   CLINIC PAGE - Quote Section (teal/green styling)
   ============================================ */
.quote-section.clinic-quote {
    background-color: var(--white);
    padding: 98px 40px 92px;
}

.quote-section.clinic-quote blockquote {
    font-family: var(--font-heading);
    font-size: 54px;
    font-style: italic;
    color: #006B5A;
    max-width: 980px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ============================================
   HERO COLLAGE - Photo strip + teal quote
   (Matches Wix hero pattern on service pages)
   ============================================ */
.hero-collage {
    width: 100%;
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hero-collage-images {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-collage-images img {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    max-width: none !important;
    width: 20% !important;
    height: 300px !important;
    object-fit: cover;
    filter: grayscale(100%);
}

.hero-collage-quote {
    background-color: rgba(254, 94, 65, 0.88);
    padding: 36px 40px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 42%;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-collage-quote blockquote {
    font-family: var(--font-heading);
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}

/* ============================================
   DR BUJTOR'S APPROACH - Therapy page
   (Circular photo + grey bg + stacked CTAs)
   ============================================ */
.dr-approach-section {
    background-color: var(--off-white);
    padding: 70px 40px;
}

.dr-approach-inner {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.dr-approach-photo {
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
}

.dr-approach-photo img {
    width: 220px !important;
    height: 220px !important;
    max-width: 220px !important;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 10px;
    margin-left: -30px;
}

.dr-approach-text {
    flex: 1;
}

.dr-approach-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
}

.dr-approach-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.dr-approach-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .dr-approach-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dr-approach-photo img {
        width: 180px;
        height: 180px;
    }

    .dr-approach-ctas {
        align-items: center;
    }
}

/* ============================================
   TWO-COLUMN BULLET LIST
   ============================================ */
.two-column-list {
    columns: 2;
    column-gap: 40px;
}

.two-column-list li {
    break-inside: avoid;
}

/* ============================================
   DECORATIVE SECTION IMAGE
   ============================================ */
.section-decorative-image {
    width: 100%;
    margin: 20px 0;
}

.section-decorative-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: grayscale(100%);
}

/* ============================================
   THERAPY APPROACHES - Continuous flow layout
   (Matches Wix therapy page style)
   ============================================ */
.therapy-flow {
    margin-top: 18px;
}

.therapy-flow-item {
    margin-bottom: 22px;
}

.therapy-flow-item h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.therapy-flow-item p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.therapy-flow-image {
    display: none;
}

/* ============================================
   CLINIC PAGE - Enquiry Form Section
   ============================================ */
.enquiry-section {
    padding: 76px 40px 88px;
    background-color: var(--white);
}

.enquiry-form-box {
    max-width: 560px;
    margin: 0 auto;
    background: #f8f7f4;
    padding: 48px 46px;
    border-radius: 0;
}

.enquiry-form-box .enquiry-form-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--black);
}

.enquiry-form-box .form-group {
    margin-bottom: 20px;
}

.enquiry-form-box label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.enquiry-form-box input,
.enquiry-form-box textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
}

.enquiry-form-box input::placeholder,
.enquiry-form-box textarea::placeholder {
    color: #999;
    opacity: 1;
}

.enquiry-form-box textarea {
    min-height: 100px;
    resize: vertical;
}

.enquiry-form-box .btn-send {
    width: auto;
    display: block;
    margin: 0 auto;
    background-color: var(--coral-button);
    color: var(--white);
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.enquiry-form-box .btn-send:hover {
    opacity: 0.85;
}

/* ============================================
   CLINIC PAGE - Locations with Maps
   ============================================ */
.clinic-locations {
    background-color: var(--off-white);
    padding: 96px 40px 110px;
}

.locations-heading-underline {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: var(--black);
    position: relative;
    padding-bottom: 20px;
}

.locations-heading-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background-color: rgba(0,0,0,0.2);
}

.locations-grid-maps {
    display: flex;
    justify-content: center;
    gap: 72px;
    max-width: 980px;
    margin: 0 auto;
    align-items: flex-start;
}

.location-card-with-map {
    text-align: center;
}

.location-card-with-map .location-map {
    width: 100%;
    min-width: 460px;
    height: 288px;
    margin-bottom: 20px;
    border-radius: 0;
    overflow: hidden;
    background: #e0e0e0;
}

.location-card-with-map .location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-card-with-map h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--black);
}

.location-card-with-map address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
}

/* ============================================
   SERVICES PAGE - Navigation Section
   ============================================ */
.services-nav-section {
    padding: 74px 40px 88px;
    background-color: var(--white);
    text-align: center;
}

.services-nav-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    font-style: italic;
    color: var(--black);
    margin-bottom: 30px;
}

.services-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 24px;
    max-width: 980px;
    margin: 0 auto;
}

.services-nav-buttons .find-out-more {
    font-size: 13px;
    padding: 10px 25px;
}

/* Services intro - centered text */
.services-intro .content-wrapper {
    text-align: center;
    max-width: 800px;
}

.services-intro .content-wrapper p {
    text-align: center;
}

/* Quote Banner - Dark teal background */
.quote-banner {
    background-color: var(--off-white);
    padding: 74px 40px;
    text-align: center;
}

.quote-banner blockquote {
    font-family: var(--font-heading);
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    color: #6d7f74;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.quote-banner cite {
    font-family: var(--font-body);
    font-size: 15px;
    font-style: normal;
    color: #6d7f74;
}

/* ============================================
   BLOG GRID & CARDS
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--black);
}

.blog-card p {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-card-meta {
    display: block;
    font-size: 12px;
    color: var(--text-dark);
}

/* ============================================
   BLOG ARTICLE (individual post page)
   ============================================ */
.blog-article-header {
    padding: 80px 0 40px;
    background: var(--off-white);
}

.blog-article-back {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--teal);
    text-decoration: none;
    margin-bottom: 20px;
}

.blog-article-back:hover {
    text-decoration: underline;
}

.blog-article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 16px 0;
    color: var(--black);
}

.blog-article-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: 16px;
}

.blog-article-content {
    padding: 48px 0 64px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--black);
}

.blog-article-content p {
    margin-bottom: 20px;
}

.blog-article-content ul {
    margin: 20px 0;
    padding-left: 24px;
    list-style: disc;
}

.blog-article-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-article-contact {
    background: var(--off-white);
    padding: 24px 28px;
    margin: 32px 0;
}

.blog-article-contact a {
    color: var(--teal);
}

.blog-article-author {
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
    margin-top: 48px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* ============================================
   SHOP PAGE - Coming Soon (Wix-matching overlay)
   ============================================ */
.shop-coming-soon {
    padding: 120px 40px 58px;
    background: var(--white);
    text-align: center;
}

.shop-eyebrow {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: #3d8377;
    margin-bottom: 14px;
}

.shop-headline {
    font-family: var(--font-heading);
    font-size: clamp(72px, 10vw, 106px);
    font-weight: 400;
    color: #dce5da;
    line-height: 0.92;
}

.shop-strip {
    background: var(--white);
    padding: 0 0 86px;
}

.shop-strip img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(100%);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .clinical-layout,
    .clinical-grid {
        grid-template-columns: 150px 1fr 1fr 150px;
    }

    .clinical-layout .side-image img,
    .clinical-image-left,
    .clinical-image-right {
        height: 600px;
    }
}

@media (max-width: 992px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .header-social {
        position: static;
        justify-content: center;
    }

    .nav-bar {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .nav-bar.active {
        display: flex;
        flex-direction: column;
    }

    .nav-bar.active a {
        border: none;
        border-bottom: 1px solid var(--border-light);
        padding: 15px 20px;
    }

    .hero-images {
        flex-direction: row;
        padding: 0 20px;
        gap: 15px;
    }

    .hero-images img {
        height: 300px;
    }

    .hero-content h3,
    .hero-heading {
        font-size: 40px;
    }

    .meet-content {
        flex-direction: column;
        text-align: center;
    }

    .meet-left {
        flex: none;
        width: 100%;
        margin-top: -80px;
    }

    .meet-heading-meet {
        font-size: 80px;
    }

    .meet-heading-name {
        font-size: 45px;
    }

    .clinical-layout,
    .clinical-grid {
        grid-template-columns: 1fr;
    }

    .clinical-layout .side-image {
        display: none;
    }

    .clinical-item:last-child {
        border-left: none;
        border-top: 1px solid var(--border-light);
    }

    .work-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .work-section h2 {
        font-size: 60px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .therapy-cards {
        grid-template-columns: 1fr;
    }

    .hero-collage {
        height: 220px;
    }

    .hero-collage-images {
        height: 220px;
    }

    .hero-collage-images img {
        height: 220px !important;
    }

    .hero-collage-quote {
        padding: 20px 25px;
        width: 48%;
    }

    .hero-collage-quote blockquote {
        font-size: 22px;
    }

    .two-column-list {
        columns: 1;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid.three-col {
        grid-template-columns: 1fr;
    }

    .locations-grid-maps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .location-card-with-map .location-map {
        min-width: 0;
    }

    .content-with-image {
        flex-direction: column;
    }

    .content-with-image.reverse {
        flex-direction: column;
    }

    .about-bio-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-bio-left {
        flex: none;
    }

    .about-bg-layout {
        flex-direction: column;
    }

    .about-bg-image {
        flex: none;
    }

    .credentials-section {
        padding-left: 20px;
    }

    .floating-contact {
        bottom: 20px;
        left: 20px;
    }

    .floating-contact img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .container,
    .content-section,
    .work-section,
    .associations,
    .footer,
    .services-nav-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-collage {
        height: 180px;
    }

    .hero-collage-images {
        height: 180px;
    }

    .hero-collage-images img {
        height: 180px !important;
    }

    .hero-collage-quote {
        padding: 15px 15px;
        width: 50%;
    }

    .hero-collage-quote blockquote {
        font-size: 18px;
    }

    .services-nav-heading {
        font-size: 36px;
    }

    .services-nav-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-nav-buttons .find-out-more {
        width: 100%;
        max-width: 300px;
    }

    .hero-content {
        padding: 30px 20px 56px;
    }

    .hero-images img {
        height: 250px;
    }

    .hero-content h3,
    .hero-heading {
        font-size: 32px;
    }

    .meet-heading-meet {
        font-size: 60px;
    }

    .meet-heading-name {
        font-size: 36px;
    }

    .clinical-areas h2,
    .section-heading {
        font-size: 36px;
    }

    .work-section h2 {
        font-size: 45px;
    }

    .associations-logos {
        gap: 20px;
    }

    .associations-logos img {
        height: 45px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .content-wrapper h2 {
        font-size: 30px;
    }

    .footer-email a {
        font-size: 1.1rem;
    }

    .shop-coming-soon {
        padding: 80px 20px 42px;
    }
}

@media (max-width: 480px) {
    .hero-images {
        padding: 0 10px;
        gap: 8px;
    }

    .hero-images img {
        height: 200px;
    }

    .hero-content h3,
    .hero-heading {
        font-size: 28px;
    }

    .meet-portrait {
        width: 250px;
    }

    .meet-heading-meet {
        font-size: 48px;
    }

    .meet-heading-name {
        font-size: 28px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-section h2 {
        font-size: 36px;
    }

    .clinical-areas h2,
    .section-heading {
        font-size: 28px;
    }

    .blog-article-header h1 {
        font-size: 1.8rem;
    }

    .shop-headline {
        font-size: 56px;
    }
}

/* Blog responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .blog-article-header h1 {
        font-size: 1.5rem;
    }

    .blog-article-meta {
        flex-wrap: wrap;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    color: #1e1e1e;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 10000;
    font-size: 11px;
    line-height: 1.5;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.cookie-consent p {
    margin: 0;
    flex: 1;
    font-size: 11px;
    color: #1e1e1e;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-buttons button {
    font-family: var(--font-body);
    font-size: 10px;
    padding: 6px 14px;
    border: 1px solid #1e1e1e;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.cookie-consent-buttons button:hover {
    opacity: 0.85;
}

.cookie-btn-settings {
    background: transparent;
    color: #1e1e1e;
}

.cookie-btn-decline {
    background: transparent;
    color: #1e1e1e;
}

.cookie-btn-accept {
    background: #1e1e1e;
    color: #FFFFFF;
}

@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}
