/*
Theme Name: Tete-A-Tete
Theme URI: https://teteatete.co.uk
Author: Antigravity
Description: A custom, high-end WordPress theme designed for Tete-A-Tete Hair Salon.
Version: 1.0.6
Text Domain: tete
*/


:root {
    --bg-dark: #000000;
    --bg-light: #111111;
    --text-main: #FAF8EF;
    --text-muted: rgba(250, 248, 239, 0.7);
    --accent-ruby: #A81A1A;
    --accent-gold: #C7B58A;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-padding-top: 88px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1rem;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-ruby);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
}

.btn,
.tab-btn,
.mobile-toggle,
.social-links a,
.text-link,
.nav-links a,
.footer-links a {
    cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-gold) !important;
    outline-offset: 4px;
}

.btn:focus-visible,
.tab-btn:focus-visible,
.mobile-toggle:focus-visible,
.social-links a:focus-visible,
.text-link:focus-visible {
    box-shadow: 0 0 0 4px rgba(199, 181, 138, 0.24);
}

.btn-solid {
    background-color: var(--accent-ruby);
    color: var(--text-main);
    border-color: var(--accent-ruby);
}

.btn:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
}

.btn-solid:hover {
    background-color: transparent;
    color: var(--accent-ruby);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: padding var(--transition), background var(--transition);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
}

.logo span {
    color: var(--accent-gold); /* Keep gold to a minimum */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Container */
.container {
    width: min(calc(100% - 40px), 1200px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.section-padding {
    padding: 100px 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero_salon_interior.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    z-index: -1;
}

.hero-content {
    width: min(100%, 1000px);
    max-width: 1000px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    color: var(--accent-ruby);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-actions {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-actions .btn {
    min-width: 180px;
    text-align: center;
}

/* Rotating Badge */
.rotating-badge {
    --badge-scale: 1;
    position: absolute;
    bottom: 50px;
    right: 100px;
    animation: rotate 15s linear infinite;
    transform-origin: center;
    will-change: transform;
    z-index: 10;
}

@keyframes rotate {
    from { transform: scale(var(--badge-scale)) rotate(0deg); }
    to { transform: scale(var(--badge-scale)) rotate(360deg); }
}

.rotating-badge svg text {
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 600;
}

.rotating-badge svg path {
    fill: none;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--accent-ruby);
    color: var(--text-main);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-features {
    margin-bottom: 30px;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--accent-ruby);
}

/* Generics */
.text-center { text-align: center; }
.w-100 { width: 100%; display: block; }

.section-header { margin-bottom: 50px; }

.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;
}

/* Brands Section */
.brands {
    background-color: var(--bg-dark);
    border-top: 1px solid #202020;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.brand-card {
    background-color: var(--bg-light);
    border: 1px solid #242424;
    border-radius: 6px;
    padding: 34px;
    min-height: 100%;
}

.brand-kicker {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
    margin-bottom: 12px;
}

.brand-card h3 {
    font-size: 2rem;
    line-height: 1.1;
}

.brand-card p:not(.brand-kicker) {
    color: var(--text-muted);
    margin-bottom: 22px;
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-light);
}

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    cursor: pointer;
    min-height: 44px;
    padding: 8px 0 5px;
    position: relative;
    opacity: 0.5;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    opacity: 1;
    color: var(--accent-ruby);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-ruby);
    transition: var(--transition);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.price-info {
    min-width: 0;
}

.price-info h4 {
    font-size: 1.2rem;
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    overflow-wrap: anywhere;
}

.price-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-line {
    flex-grow: 1;
    border-bottom: 1px dotted var(--text-muted);
    height: 10px;
    opacity: 0.5;
}

.price-val {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    color: var(--accent-ruby);
    font-size: 1.5rem;
    white-space: nowrap;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-item {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(168, 26, 26, 0.5); /* Deep ruby tint */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-overlay span {
    color: var(--text-main);
    font-size: 1.25rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--bg-light);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: clamp(260px, 31vw, 320px);
    object-fit: cover;
    object-position: center top;
    border-bottom: 2px solid var(--accent-ruby);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: var(--text-main);
}

.team-info p {
    color: var(--accent-ruby);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info .team-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
    margin-top: 15px;
    line-height: 1.5;
}

/* Booking Section */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-details i {
    color: var(--accent-ruby);
    font-size: 1.2rem;
}

form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-dark);
    border: 1px solid #333;
    color: var(--text-main);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent-ruby);
}

textarea {
    resize: vertical;
}

/* Footer Map */
.footer-map iframe {
    display: block;
    width: 100%;
}

.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent-ruby);
    padding-left: 5px;
}

/* Footer Section */
.footer {
    background-color: var(--bg-light);
    border-top: 1px solid #333;
    color: var(--text-muted);
    padding: 60px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.footer-col h3 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}
.footer-col p {
    margin-bottom: 10px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: var(--text-main);
    background-color: var(--bg-dark);
    width: 40px;
    height: 40px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.social-links a:hover {
    background-color: var(--accent-ruby);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
    font-size: 0.85rem;
}

/* Blog */
.blog-page main,
.article-page main,
.blog-main,
.article-main {
    padding-top: 88px;
}

.blog-header {
    background-color: rgba(0, 0, 0, 0.95);
}

.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.92)), url('assets/hero_bg.png') center/cover no-repeat;
    min-height: 52vh;
    display: flex;
    align-items: end;
}

.blog-hero .container {
    padding-bottom: 30px;
}

.blog-title {
    font-size: 4rem;
    line-height: 1.08;
    max-width: 820px;
    text-transform: uppercase;
}

.blog-intro {
    max-width: 680px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.breadcrumbs {
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs li + li::before {
    content: "/";
    color: var(--accent-ruby);
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover,
.breadcrumbs [aria-current="page"] {
    color: var(--text-main);
}

.blog-list-section {
    background-color: var(--bg-dark);
    padding: 80px 0 100px;
}

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

.blog-card {
    background-color: var(--bg-light);
    border: 1px solid #242424;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.blog-card-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.04);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta,
.article-meta,
.article-kicker {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
    margin-bottom: 12px;
}

.blog-card h2 {
    font-size: 1.65rem;
    line-height: 1.2;
}

.blog-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    min-height: 44px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
    font-weight: 500;
}

.text-link i {
    margin-left: 8px;
    transition: transform var(--transition);
}

.text-link:hover i {
    transform: translateX(4px);
}

.blog-cta {
    background-color: var(--bg-light);
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
    padding: 70px 0;
    text-align: center;
}

.blog-cta .section-desc {
    margin: 0 auto 26px;
}

.article-hero {
    padding: 80px 0 60px;
    background-color: var(--bg-dark);
}

.article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 52px;
    align-items: center;
}

.article-hero h1 {
    font-size: 3.6rem;
    line-height: 1.08;
    text-transform: uppercase;
}

.article-intro {
    color: var(--text-muted);
    font-size: 1.08rem;
    max-width: 680px;
}

.article-hero-image {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #242424;
}

.article-hero-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
}

.article-section {
    padding: 20px 0 90px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 320px;
    gap: 54px;
    align-items: start;
}

.article-body {
    color: rgba(250, 248, 239, 0.86);
    font-size: 1.02rem;
}

.article-body h2 {
    font-size: 2rem;
    margin-top: 42px;
}

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

.article-body ul {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 24px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-panel {
    background-color: var(--bg-light);
    border: 1px solid #242424;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 22px;
}

.sidebar-panel h3 {
    font-size: 1.35rem;
}

.sidebar-panel p,
.sidebar-panel li {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.related-links li {
    margin-bottom: 14px;
}

/* Mobile Toggle Default Hidden */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .fade-up {
        opacity: 1;
        transform: none;
    }

    .rotating-badge {
        animation: none;
    }
}

/* ========================================= */
/* Responsive Media Queries                  */
/* ========================================= */
@media (max-width: 900px) {
    .container { width: min(calc(100% - 32px), 1200px); }
    .header, .header.scrolled { padding: 16px 28px; }
    .hero-bg { background-position: 55% center; }
    .hero-title { font-size: clamp(3rem, 8vw, 3.8rem); }
    .about-grid, .pricing-grid, .team-grid { grid-template-columns: 1fr; }
    .about-image img { max-height: 560px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { aspect-ratio: 4 / 5; }
    .brands-grid { grid-template-columns: 1fr; }
    .team-grid { max-width: 680px; }
    .team-member img { height: clamp(240px, 52vw, 340px); }
    .booking-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .article-hero-grid, .article-layout { grid-template-columns: 1fr; }
    .article-hero-image { max-width: 640px; margin: 0 auto; }
    .article-sidebar { position: static; }
    .section-padding { padding: 60px 0; }
    .rotating-badge { --badge-scale: 0.7; right: 20px; bottom: 20px; }
}

@media (max-width: 768px) {
    .header { padding: 14px 16px; }
    .header.scrolled { padding: 12px 16px; }
    .logo {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        letter-spacing: 1px;
        padding-right: 48px;
    }
    .mobile-toggle { display: block; }
    .header-action { display: none; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(84vw, 360px);
        height: 100vh;
        height: 100dvh;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 96px 28px 40px;
        overflow-y: auto;
        transition: right var(--transition);
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 15px 0; }
    .nav-links a { font-size: 0.95rem; }
    
    .hero {
        min-height: 100svh;
        padding: 112px 0 54px;
    }
    .hero-bg { background-position: 60% center; }
    .hero::after { background: linear-gradient(to bottom, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.88) 100%); }
    .hero-content { padding: 0; }
    .hero-subtitle {
        font-size: 0.78rem;
        letter-spacing: 2px;
    }
    .hero-title { font-size: clamp(2.25rem, 12vw, 3.2rem); }
    .blog-title, .article-hero h1 { font-size: 2.5rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
        gap: 12px !important;
    }
    .hero-actions .btn { width: 100%; }
    .experience-badge { 
        position: relative; 
        bottom: 0; 
        right: 0; 
        margin: 20px auto 0 auto;
        transform: none;
    }
    .pricing-tabs {
        gap: 12px 18px;
        margin-bottom: 30px;
    }
    .tab-btn {
        font-size: 1rem;
        line-height: 1.25;
    }
    .pricing-grid { gap: 30px; }
    .price-item { flex-direction: column; align-items: flex-start; text-align: left; }
    .price-line { display: none; }
    .price-val { align-self: flex-start; margin-top: 5px; }
    .gallery-item { aspect-ratio: 4 / 5; }
    .team-grid { gap: 28px; }
    .team-member:hover { transform: none; }
    .team-member img { height: clamp(220px, 64vw, 320px); }
    .contact-details p {
        align-items: flex-start;
        font-size: 1rem;
    }
    form { padding: 28px; }
    .footer-map iframe { height: 220px; }
    .blog-hero { min-height: 44vh; }
    .blog-card-content { padding: 20px; }
    .brand-card { padding: 26px; }
    .article-hero { padding: 64px 0 42px; }
    .article-body h2 { font-size: 1.65rem; }
    .sidebar-panel { padding: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-col { grid-column: span 1 !important; }
}

@media (max-width: 480px) {
    .container { width: min(calc(100% - 24px), 1200px); }
    .nav-links { width: 86vw; }
    .hero-title { font-size: clamp(2rem, 11vw, 2.55rem); }
    .blog-title, .article-hero h1 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .btn { padding: 10px 20px; font-size: 0.8rem; }
    .gallery-item { aspect-ratio: 4 / 5; }
    .blog-card-media { aspect-ratio: 1 / 1; }
    .team-member img { height: clamp(210px, 72vw, 290px); }
    form { padding: 22px; }
    .article-hero-image img { aspect-ratio: 4 / 3; }
    .rotating-badge { display: none; }
}

