/* ═══════════════════════════════════════════════
   Flavor Pediatric Dental - Main Stylesheet
   Quiet Luxury | Mobile-First | Accessible
   ═══════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    /* Colors */
    --fpd-green: #2C5F2D;
    --fpd-green-dark: #1E4220;
    --fpd-green-light: #E8F0E8;
    --fpd-cream: #F5F0E8;
    --fpd-cream-dark: #EDE5D8;
    --fpd-gold: #B8860B;
    --fpd-gold-light: #D4A843;
    --fpd-white: #FFFFFF;
    --fpd-dark: #2D2D2D;
    --fpd-gray: #6B6B6B;
    --fpd-gray-light: #E8E8E8;
    --fpd-black: #1A1A1A;

    /* Typography */
    --fpd-font-serif: 'Playfair Display', Georgia, serif;
    --fpd-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --fpd-space-xs: 0.5rem;
    --fpd-space-sm: 1rem;
    --fpd-space-md: 1.5rem;
    --fpd-space-lg: 2.5rem;
    --fpd-space-xl: 4rem;
    --fpd-space-2xl: 6rem;

    /* Layout */
    --fpd-container: 1200px;
    --fpd-container-narrow: 800px;
    --fpd-header-height: 72px;

    /* Transitions */
    --fpd-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --fpd-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Borders */
    --fpd-radius: 8px;
    --fpd-radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.fpd-body {
    font-family: var(--fpd-font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--fpd-dark);
    background-color: var(--fpd-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--fpd-green);
    text-decoration: none;
    transition: color var(--fpd-transition);
}

a:hover {
    color: var(--fpd-green-dark);
}

/* ─── Skip Link ─── */
.fpd-skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--fpd-green);
    color: var(--fpd-white);
    padding: var(--fpd-space-xs) var(--fpd-space-sm);
    z-index: 9999;
}

.fpd-skip-link:focus {
    top: 0;
}

/* ─── Container ─── */
.fpd-container {
    width: 100%;
    max-width: var(--fpd-container);
    margin: 0 auto;
    padding: 0 var(--fpd-space-sm);
}

.fpd-container--narrow {
    max-width: var(--fpd-container-narrow);
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fpd-font-serif);
    font-weight: 600;
    line-height: 1.3;
    color: var(--fpd-black);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.25rem; }

/* ─── Buttons ─── */
.fpd-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--fpd-font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--fpd-radius);
    cursor: pointer;
    transition: all var(--fpd-transition);
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.02em;
}

.fpd-btn--primary {
    background-color: var(--fpd-green);
    color: var(--fpd-white);
    border-color: var(--fpd-green);
}

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

.fpd-btn--outline {
    background: transparent;
    color: var(--fpd-green);
    border-color: var(--fpd-green);
}

.fpd-btn--outline:hover {
    background-color: var(--fpd-green);
    color: var(--fpd-white);
}

.fpd-btn--white {
    background-color: var(--fpd-white);
    color: var(--fpd-green);
    border-color: var(--fpd-white);
}

.fpd-btn--white:hover {
    background-color: var(--fpd-cream);
    border-color: var(--fpd-cream);
    color: var(--fpd-green-dark);
}

.fpd-btn--outline-white {
    background: transparent;
    color: var(--fpd-white);
    border-color: rgba(255,255,255,0.5);
}

.fpd-btn--outline-white:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: var(--fpd-white);
    color: var(--fpd-white);
}

.fpd-btn--whatsapp {
    background-color: #25D366;
    color: var(--fpd-white);
    border-color: #25D366;
}

.fpd-btn--whatsapp:hover {
    background-color: #1DA851;
    border-color: #1DA851;
    color: var(--fpd-white);
}

.fpd-btn--sm {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
}

.fpd-btn--lg {
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* ─── Links ─── */
.fpd-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fpd-green);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap var(--fpd-transition);
}

.fpd-link--arrow:hover {
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */

.fpd-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--fpd-gray-light);
    height: var(--fpd-header-height);
}

.fpd-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.fpd-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--fpd-black);
    flex-shrink: 0;
}

.fpd-header__logo-img {
    height: 40px;
    width: auto;
}

.fpd-header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.fpd-header__logo-text strong {
    font-family: var(--fpd-font-serif);
    font-size: 1.125rem;
    font-weight: 600;
}

.fpd-header__logo-text small {
    font-size: 0.6875rem;
    color: var(--fpd-gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Desktop Nav - Hidden on mobile */
.fpd-nav--desktop {
    display: none;
}

.fpd-nav__list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.fpd-nav__item {
    position: relative;
}

.fpd-nav__link {
    display: block;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--fpd-dark);
    letter-spacing: 0.01em;
    transition: color var(--fpd-transition);
}

.fpd-nav__link:hover,
.fpd-nav__item--active > .fpd-nav__link {
    color: var(--fpd-green);
}

.fpd-nav__toggle {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--fpd-gray);
    transition: transform var(--fpd-transition);
}

.fpd-nav__toggle[aria-expanded="true"] {
    transform: rotate(180deg);
}

/* Submenu */
.fpd-nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--fpd-white);
    border: 1px solid var(--fpd-gray-light);
    border-radius: var(--fpd-radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--fpd-transition);
}

.fpd-nav__item:hover > .fpd-nav__submenu,
.fpd-nav__toggle[aria-expanded="true"] + .fpd-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fpd-nav__submenu .fpd-nav__link {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

/* Header Actions */
.fpd-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fpd-header__actions .fpd-btn {
    display: none;
}

.fpd-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--fpd-dark);
}

/* ═══════════════════════════════════════════════
   MOBILE OVERLAY
   ═══════════════════════════════════════════════ */

.fpd-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: all var(--fpd-transition);
}

.fpd-mobile-overlay.is-open {
    visibility: visible;
    opacity: 1;
}

.fpd-mobile-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.fpd-mobile-overlay__panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    background: var(--fpd-white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--fpd-transition);
}

.fpd-mobile-overlay.is-open .fpd-mobile-overlay__panel {
    transform: translateX(0);
}

.fpd-mobile-overlay__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--fpd-space-sm) var(--fpd-space-md);
    border-bottom: 1px solid var(--fpd-gray-light);
}

.fpd-mobile-overlay__title {
    font-family: var(--fpd-font-serif);
    font-size: 1rem;
    font-weight: 600;
}

.fpd-mobile-overlay__close {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--fpd-dark);
}

/* Mobile Nav */
.fpd-mobile-nav__list {
    list-style: none;
    padding: var(--fpd-space-sm) 0;
    flex: 1;
    overflow-y: auto;
}

.fpd-mobile-nav__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.fpd-mobile-nav__link {
    flex: 1;
    padding: 0.75rem var(--fpd-space-md);
    font-size: 0.9375rem;
    color: var(--fpd-dark);
}

.fpd-mobile-nav__item--active > .fpd-mobile-nav__link {
    color: var(--fpd-green);
    font-weight: 500;
}

.fpd-mobile-nav__toggle {
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    color: var(--fpd-gray);
    transition: transform var(--fpd-transition);
}

.fpd-mobile-nav__submenu {
    width: 100%;
    list-style: none;
    background: var(--fpd-cream);
    display: none;
}

.fpd-mobile-nav__submenu.is-open {
    display: block;
}

.fpd-mobile-nav__submenu .fpd-mobile-nav__link {
    padding-left: calc(var(--fpd-space-md) + 1rem);
    font-size: 0.875rem;
}

.fpd-mobile-overlay__footer {
    padding: var(--fpd-space-md);
    border-top: 1px solid var(--fpd-gray-light);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fpd-mobile-overlay__contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fpd-dark);
    font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */

.fpd-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fpd-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fpd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.85) 0%, rgba(30, 66, 32, 0.7) 100%);
}

.fpd-hero__content {
    position: relative;
    z-index: 1;
    padding: var(--fpd-space-xl) 0;
    color: var(--fpd-white);
}

.fpd-hero__title {
    font-family: var(--fpd-font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--fpd-white);
    margin-bottom: var(--fpd-space-sm);
    line-height: 1.2;
}

.fpd-hero__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 540px;
    margin-bottom: var(--fpd-space-lg);
}

.fpd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fpd-space-sm);
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */

.fpd-section {
    padding: var(--fpd-space-xl) 0;
}

.fpd-section--cream {
    background-color: var(--fpd-cream);
}

.fpd-section--dark-green {
    background-color: var(--fpd-green);
    color: var(--fpd-white);
}

.fpd-section--center {
    text-align: center;
}

.fpd-section__title {
    font-family: var(--fpd-font-serif);
    font-size: 1.625rem;
    margin-bottom: var(--fpd-space-xs);
}

.fpd-section__title--center {
    text-align: center;
}

.fpd-section__subtitle {
    color: var(--fpd-gray);
    font-size: 0.9375rem;
    margin-bottom: var(--fpd-space-lg);
}

.fpd-section--dark-green .fpd-section__subtitle {
    color: rgba(255,255,255,0.8);
}

.fpd-section__cta {
    text-align: center;
    margin-top: var(--fpd-space-lg);
}

/* ─── Intro ─── */
.fpd-intro__text {
    max-width: 640px;
}

.fpd-intro__excerpt {
    margin: var(--fpd-space-sm) 0;
    color: var(--fpd-gray);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   TREATMENTS GRID
   ═══════════════════════════════════════════════ */

.fpd-treatments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fpd-space-md);
}

.fpd-treatment-card {
    display: block;
    background: var(--fpd-white);
    border: 1px solid var(--fpd-gray-light);
    border-radius: var(--fpd-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all var(--fpd-transition);
}

.fpd-treatment-card:hover {
    border-color: var(--fpd-green);
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.1);
    transform: translateY(-2px);
    color: inherit;
}

.fpd-treatment-card__img {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.fpd-treatment-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fpd-transition-slow);
}

.fpd-treatment-card:hover .fpd-treatment-card__img img {
    transform: scale(1.05);
}

.fpd-treatment-card__body {
    padding: var(--fpd-space-md);
}

.fpd-treatment-card__title {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--fpd-black);
}

/* ═══════════════════════════════════════════════
   POSTS GRID
   ═══════════════════════════════════════════════ */

.fpd-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fpd-space-md);
}

.fpd-card {
    background: var(--fpd-white);
    border: 1px solid var(--fpd-gray-light);
    border-radius: var(--fpd-radius-lg);
    overflow: hidden;
    transition: all var(--fpd-transition);
}

.fpd-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.fpd-card__img {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.fpd-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fpd-card__body {
    padding: var(--fpd-space-md);
}

.fpd-card__date {
    font-size: 0.75rem;
    color: var(--fpd-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fpd-card__title {
    font-size: 1.0625rem;
    margin: 0.5rem 0;
}

.fpd-card__title a {
    color: var(--fpd-black);
}

.fpd-card__title a:hover {
    color: var(--fpd-green);
}

.fpd-card__excerpt {
    font-size: 0.875rem;
    color: var(--fpd-gray);
    margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════ */

.fpd-cta-section {
    text-align: center;
    padding: var(--fpd-space-lg) 0;
}

.fpd-cta-section__title {
    font-family: var(--fpd-font-serif);
    font-size: 1.625rem;
    color: var(--fpd-white);
    margin-bottom: var(--fpd-space-xs);
}

.fpd-cta-section__text {
    opacity: 0.9;
    margin-bottom: var(--fpd-space-lg);
}

.fpd-cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--fpd-space-sm);
}

/* ═══════════════════════════════════════════════
   CONTENT (Gutenberg output)
   ═══════════════════════════════════════════════ */

.fpd-content p {
    margin-bottom: 1.25em;
}

.fpd-content h2 {
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.fpd-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.fpd-content ul,
.fpd-content ol {
    margin-bottom: 1.25em;
    padding-left: 1.5em;
}

.fpd-content li {
    margin-bottom: 0.5em;
}

.fpd-content img {
    border-radius: var(--fpd-radius);
    margin: 1.5em 0;
}

.fpd-content blockquote {
    border-left: 3px solid var(--fpd-gold);
    padding: var(--fpd-space-sm) var(--fpd-space-md);
    margin: 1.5em 0;
    background: var(--fpd-cream);
    border-radius: 0 var(--fpd-radius) var(--fpd-radius) 0;
    font-style: italic;
}

/* ═══════════════════════════════════════════════
   PAGE & POST
   ═══════════════════════════════════════════════ */

.fpd-page__title,
.fpd-post__title,
.fpd-page-title {
    font-family: var(--fpd-font-serif);
    font-size: 2rem;
    margin-bottom: var(--fpd-space-md);
}

.fpd-post__date {
    font-size: 0.8125rem;
    color: var(--fpd-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fpd-post__thumbnail {
    margin: var(--fpd-space-md) 0;
    border-radius: var(--fpd-radius-lg);
    overflow: hidden;
}

.fpd-post__thumbnail img {
    width: 100%;
}

/* Related */
.fpd-related {
    margin-top: var(--fpd-space-xl);
    padding-top: var(--fpd-space-lg);
    border-top: 1px solid var(--fpd-gray-light);
}

.fpd-related__title {
    font-size: 1.25rem;
    margin-bottom: var(--fpd-space-md);
}

/* ─── Breadcrumb ─── */
.fpd-breadcrumb {
    font-size: 0.8125rem;
    color: var(--fpd-gray);
    margin-bottom: var(--fpd-space-md);
}

.fpd-breadcrumb a {
    color: var(--fpd-gray);
}

.fpd-breadcrumb a:hover {
    color: var(--fpd-green);
}

/* ─── Pagination ─── */
.fpd-pagination {
    margin-top: var(--fpd-space-lg);
    text-align: center;
}

.fpd-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.fpd-pagination a,
.fpd-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid var(--fpd-gray-light);
    border-radius: var(--fpd-radius);
    font-size: 0.875rem;
}

.fpd-pagination .current {
    background: var(--fpd-green);
    color: var(--fpd-white);
    border-color: var(--fpd-green);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.fpd-footer {
    background-color: var(--fpd-black);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--fpd-space-xl) 0 var(--fpd-space-md);
}

.fpd-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fpd-space-lg);
    margin-bottom: var(--fpd-space-lg);
}

.fpd-footer__title {
    font-family: var(--fpd-font-serif);
    font-size: 1rem;
    color: var(--fpd-white);
    margin-bottom: var(--fpd-space-sm);
}

.fpd-footer__subtitle {
    font-size: 0.8125rem;
    color: var(--fpd-gold);
    margin-bottom: var(--fpd-space-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fpd-footer__info {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.fpd-footer__info svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}

.fpd-footer__info a {
    color: rgba(255,255,255,0.8);
}

.fpd-footer__info a:hover {
    color: var(--fpd-white);
}

.fpd-footer__links {
    list-style: none;
}

.fpd-footer__links li {
    margin-bottom: 0.5rem;
}

.fpd-footer__links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: color var(--fpd-transition);
}

.fpd-footer__links a:hover {
    color: var(--fpd-white);
}

/* Working Hours */
.fpd-footer__hours {
    list-style: none;
}

.fpd-footer__hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8125rem;
}

.fpd-footer__day {
    color: rgba(255,255,255,0.6);
}

.fpd-footer__time {
    color: var(--fpd-white);
}

/* Footer Bottom */
.fpd-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: var(--fpd-space-sm);
    padding-top: var(--fpd-space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.fpd-footer__social {
    display: flex;
    gap: var(--fpd-space-sm);
}

.fpd-footer__social a {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fpd-footer__social a:hover {
    color: var(--fpd-gold);
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════ */

.fpd-whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--fpd-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--fpd-transition);
}

.fpd-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: var(--fpd-white);
}

/* ─── No Content ─── */
.fpd-no-content {
    text-align: center;
    color: var(--fpd-gray);
    padding: var(--fpd-space-xl) 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Tablet (768px+)
   ═══════════════════════════════════════════════ */

@media (min-width: 768px) {
    :root {
        --fpd-header-height: 80px;
    }

    .fpd-container {
        padding: 0 var(--fpd-space-md);
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .fpd-hero {
        min-height: 70vh;
    }

    .fpd-hero__title {
        font-size: 2.75rem;
    }

    .fpd-hero__subtitle {
        font-size: 1.125rem;
    }

    .fpd-section {
        padding: var(--fpd-space-2xl) 0;
    }

    .fpd-section__title {
        font-size: 2rem;
    }

    .fpd-treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fpd-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fpd-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fpd-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .fpd-header__actions .fpd-btn {
        display: inline-flex;
    }

    .fpd-page__title,
    .fpd-post__title {
        font-size: 2.5rem;
    }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Desktop (1024px+)
   ═══════════════════════════════════════════════ */

@media (min-width: 1024px) {
    .fpd-nav--desktop {
        display: block;
    }

    .fpd-header__hamburger {
        display: none;
    }

    .fpd-hero__title {
        font-size: 3.25rem;
    }

    .fpd-treatments-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fpd-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fpd-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .fpd-cta-section__title {
        font-size: 2rem;
    }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Large (1280px+)
   ═══════════════════════════════════════════════ */

@media (min-width: 1280px) {
    .fpd-container {
        padding: 0 var(--fpd-space-lg);
    }

    .fpd-hero__title {
        font-size: 3.5rem;
        max-width: 680px;
    }
}

/* ═══════════════════════════════════════════════
   HERO ENHANCEMENTS
   ═══════════════════════════════════════════════ */

.fpd-hero {
    min-height: 85vh;
}

.fpd-hero__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--fpd-gold-light);
    border: 1px solid rgba(212, 168, 67, 0.4);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    margin-bottom: var(--fpd-space-md);
}

.fpd-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: fpd-bounce 2s infinite;
}

@keyframes fpd-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */

.fpd-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fpd-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fpd-reveal--delay-1 { transition-delay: 0.15s; }
.fpd-reveal--delay-2 { transition-delay: 0.3s; }
.fpd-reveal--delay-3 { transition-delay: 0.45s; }

/* ═══════════════════════════════════════════════
   SECTION EYEBROW
   ═══════════════════════════════════════════════ */

.fpd-section__eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--fpd-gold);
    margin-bottom: 0.5rem;
}

.fpd-section__eyebrow--light {
    color: var(--fpd-gold-light);
}

.fpd-section__header {
    text-align: center;
    margin-bottom: var(--fpd-space-xl);
}

.fpd-section__desc {
    color: var(--fpd-gray);
    font-size: 0.9375rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════ */

.fpd-trust-bar {
    background: var(--fpd-white);
    padding: var(--fpd-space-lg) 0;
    border-bottom: 1px solid var(--fpd-gray-light);
}

.fpd-trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--fpd-space-md);
    text-align: center;
}

.fpd-trust-bar__item {
    padding: var(--fpd-space-sm);
}

.fpd-trust-bar__number {
    display: block;
    font-family: var(--fpd-font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fpd-green);
    line-height: 1.2;
}

.fpd-trust-bar__label {
    display: block;
    font-size: 0.75rem;
    color: var(--fpd-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════
   ABOUT GRID
   ═══════════════════════════════════════════════ */

.fpd-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fpd-space-lg);
    align-items: center;
}

.fpd-about-grid__excerpt {
    margin: var(--fpd-space-md) 0;
    color: var(--fpd-gray);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.fpd-about-grid__photo {
    border-radius: var(--fpd-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.fpd-about-grid__photo img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════
   TREATMENT CARD ICON MODE
   ═══════════════════════════════════════════════ */

.fpd-treatment-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    color: var(--fpd-green);
    background: var(--fpd-green-light);
    transition: all var(--fpd-transition);
}

.fpd-treatment-card:hover .fpd-treatment-card__icon {
    background: var(--fpd-green);
    color: var(--fpd-white);
}

.fpd-treatment-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--fpd-green);
    transition: gap var(--fpd-transition);
}

.fpd-treatment-card:hover .fpd-treatment-card__cta {
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════
   PHILOSOPHY / YAKLASIM
   ═══════════════════════════════════════════════ */

.fpd-philosophy {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fpd-space-xl);
}

.fpd-philosophy__title {
    font-family: var(--fpd-font-serif);
    font-size: 1.625rem;
    color: var(--fpd-white);
    line-height: 1.3;
    margin-bottom: var(--fpd-space-sm);
}

.fpd-philosophy__text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.fpd-philosophy__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fpd-space-md);
}

.fpd-philosophy__feature {
    padding: var(--fpd-space-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--fpd-radius-lg);
    transition: background var(--fpd-transition);
}

.fpd-philosophy__feature:hover {
    background: rgba(255, 255, 255, 0.12);
}

.fpd-philosophy__feature-icon {
    color: var(--fpd-gold-light);
    margin-bottom: 0.75rem;
}

.fpd-philosophy__feature h4 {
    font-family: var(--fpd-font-serif);
    color: var(--fpd-white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.fpd-philosophy__feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   GOOGLE REVIEWS
   ═══════════════════════════════════════════════ */

.fpd-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    color: var(--fpd-dark);
    margin-top: 0.5rem;
}

.fpd-google-badge span {
    color: var(--fpd-gray);
    font-size: 0.8125rem;
}

.fpd-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fpd-space-md);
}

.fpd-review-card {
    background: var(--fpd-white);
    border: 1px solid var(--fpd-gray-light);
    border-radius: var(--fpd-radius-lg);
    padding: var(--fpd-space-md);
    transition: box-shadow var(--fpd-transition);
}

.fpd-review-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.fpd-review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.fpd-review-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--fpd-dark);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.fpd-review-card__author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fpd-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   MAP SECTION
   ═══════════════════════════════════════════════ */

.fpd-map-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fpd-space-lg);
    align-items: start;
}

.fpd-map-grid__detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: var(--fpd-space-sm);
    font-size: 0.9375rem;
    color: var(--fpd-dark);
}

.fpd-map-grid__detail svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--fpd-green);
}

.fpd-map-grid__detail a {
    color: var(--fpd-dark);
}

.fpd-map-grid__hours {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--fpd-space-md);
    padding-top: var(--fpd-space-md);
    border-top: 1px solid var(--fpd-gray-light);
}

.fpd-map-grid__hours > svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--fpd-green);
}

.fpd-map-grid__hour-row {
    display: flex;
    justify-content: space-between;
    gap: var(--fpd-space-lg);
    font-size: 0.8125rem;
    padding: 0.25rem 0;
    color: var(--fpd-gray);
}

.fpd-map-grid__hour-row span:last-child {
    color: var(--fpd-dark);
    font-weight: 500;
}

.fpd-map-grid__map {
    border-radius: var(--fpd-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ═══════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════ */

.fpd-cta-final {
    background: linear-gradient(135deg, var(--fpd-green) 0%, var(--fpd-green-dark) 100%);
    color: var(--fpd-white);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE ADDITIONS — Tablet (768px+)
   ═══════════════════════════════════════════════ */

@media (min-width: 768px) {
    .fpd-trust-bar__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .fpd-trust-bar__number {
        font-size: 2rem;
    }

    .fpd-about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fpd-philosophy__features {
        grid-template-columns: repeat(3, 1fr);
    }

    .fpd-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fpd-map-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (min-width: 1024px) {
    .fpd-hero {
        min-height: 90vh;
    }

    .fpd-philosophy {
        grid-template-columns: 1fr 1.5fr;
        align-items: center;
    }

    .fpd-philosophy__title {
        font-size: 2rem;
    }

    .fpd-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ═══════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════ */

@media print {
    .fpd-header,
    .fpd-mobile-overlay,
    .fpd-whatsapp-float,
    .fpd-footer__social {
        display: none !important;
    }

    .fpd-hero {
        min-height: auto;
        background: none;
    }

    .fpd-hero__overlay {
        display: none;
    }

    body.fpd-body {
        font-size: 12pt;
        color: #000;
    }

    .fpd-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
