/* ============================================
   RWEMA NURSING CARE SERVICES — Stylesheet
   Palette inspired by the logo: burgundy, gold, cream
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Brand colors (sampled from logo) */
    --burgundy: #7a1a3a;
    --burgundy-dark: #5c0f2a;
    --burgundy-light: #a82e55;
    --burgundy-soft: #f4e3ea;
    --burgundy-tint: #fbf2f5;

    --gold: #c19a6b;
    --gold-dark: #a07c4f;
    --gold-light: #d8b88a;
    --gold-soft: #f5ebdc;

    --ruby: #c8102e;

    /* Neutrals */
    --cream: #fdf8f1;
    --cream-warm: #faf3e7;
    --ivory: #fffaf3;

    --text: #2a1a1f;
    --text-light: #5c4a4f;
    --muted: #8a7a7f;

    --bg: #ffffff;
    --bg-alt: #fdf8f1;
    --bg-soft: #faf3e7;
    --border: #ece1d8;

    --shadow-sm: 0 1px 2px rgba(122, 26, 58, 0.05);
    --shadow: 0 6px 20px rgba(122, 26, 58, 0.08);
    --shadow-lg: 0 20px 50px rgba(122, 26, 58, 0.15);
    --shadow-xl: 0 30px 70px rgba(122, 26, 58, 0.22);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --container: 1240px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --gradient-primary: linear-gradient(135deg, #7a1a3a 0%, #a82e55 100%);
    --gradient-gold: linear-gradient(135deg, #c19a6b 0%, #d8b88a 100%);
    --gradient-warm: linear-gradient(135deg, #7a1a3a 0%, #a82e55 50%, #c19a6b 100%);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hide-mobile {
    display: inline-flex;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

.btn--primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(122, 26, 58, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(122, 26, 58, 0.45);
    background: linear-gradient(135deg, #a82e55 0%, #7a1a3a 100%);
}

.btn--gold {
    background: var(--gradient-gold);
    color: #fff;
    box-shadow: 0 8px 24px rgba(193, 154, 107, 0.35);
}

.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(193, 154, 107, 0.5);
}

.btn--whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

.btn--outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn--outline:hover {
    background: var(--burgundy);
    color: #fff;
    transform: translateY(-3px);
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
    background: #fff;
    color: var(--burgundy);
    border-color: #fff;
}

.btn--large {
    padding: 16px 32px;
    font-size: 15px;
}

.btn--block {
    width: 100%;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--burgundy-dark);
    color: #f5dde6;
    font-size: 13px;
    padding: 10px 0;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar__info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar__info span i {
    margin-right: 7px;
    color: var(--gold-light);
}

.top-bar__social {
    display: flex;
    gap: 12px;
}

.top-bar__social a {
    color: #f5dde6;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(245, 221, 230, 0.25);
    font-size: 12px;
}

.top-bar__social a:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 248, 241, 0.95);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 1px solid rgba(193, 154, 107, 0.15);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 24px;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar__logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.navbar__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar__brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--burgundy);
    letter-spacing: 0.5px;
}

.navbar__brand-tag {
    font-size: 11px;
    color: var(--gold-dark);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.navbar__menu {
    display: flex;
    gap: 4px;
}

.navbar__link {
    padding: 10px 16px;
    font-weight: 500;
    color: var(--text);
    font-size: 14.5px;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--burgundy);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 18px;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.navbar__toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar__toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.navbar__toggle.open span:nth-child(2) {
    opacity: 0;
}
.navbar__toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(193, 154, 107, 0.18), transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(122, 26, 58, 0.10), transparent 50%),
        linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.hero__bg::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--gold);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    font-weight: 600;
    font-size: 12.5px;
    border-radius: 999px;
    margin-bottom: 26px;
    border: 1px solid rgba(122, 26, 58, 0.15);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero__pill i {
    color: var(--burgundy);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--burgundy);
}

.hero__subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 38px;
    max-width: 600px;
    line-height: 1.75;
}

.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
}

.hero__stat span:nth-child(2) {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
}

.hero__stat p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero__image-wrap {
    position: relative;
    padding: 20px;
}

.hero__image-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    background: var(--gradient-warm);
    border-radius: 50% 50% 0 50%;
    opacity: 0.18;
    z-index: 0;
}

.hero__image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: var(--shadow-xl);
    border: 10px solid #fff;
}

.hero__floating-card {
    position: absolute;
    background: #fff;
    padding: 14px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    border: 1px solid var(--border);
}

.hero__floating-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    font-size: 15px;
    font-weight: 700;
}

.hero__floating-card p {
    color: var(--muted);
    font-size: 12px;
    margin: 0;
}

.hero__floating-card--top {
    top: 50px;
    left: -10px;
}

.hero__floating-card--bottom {
    bottom: 50px;
    right: -20px;
    animation-delay: 1.5s;
}

.hero__floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hero__floating-icon--alt {
    background: var(--gradient-gold);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ---------- Value Circles (Below Hero) ---------- */
.values {
    padding: 60px 0 30px;
    background: var(--bg);
    position: relative;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value {
    text-align: center;
    padding: 20px 10px;
}

.value__circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 12px 30px rgba(122, 26, 58, 0.25);
    position: relative;
    transition: var(--transition);
}

.value__circle::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed var(--gold-light);
    border-radius: 50%;
    opacity: 0.5;
    transition: var(--transition);
}

.value:hover .value__circle {
    transform: translateY(-8px);
    background: var(--gradient-gold);
    box-shadow: 0 16px 36px rgba(193, 154, 107, 0.35);
}

.value:hover .value__circle::after {
    transform: rotate(45deg);
}

.value h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.value p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Section Defaults ---------- */
.section {
    padding: 100px 0;
    position: relative;
}

.section--alt {
    background: var(--bg-alt);
}

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section__pill {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
    color: var(--text);
}

.section__subtitle {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

/* ---------- About ---------- */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about__images {
    position: relative;
    padding: 0 30px 30px 0;
}

.about__decor {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 140px;
    height: 140px;
    border: 8px solid var(--gold-soft);
    border-radius: 50%;
    z-index: 0;
}

.about__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.about__img--big {
    width: 90%;
    aspect-ratio: 4 / 5;
}

.about__img--small {
    width: 60%;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 8px solid #fff;
    z-index: 2;
}

.about__badge {
    position: absolute;
    top: 24px;
    right: -10px;
    background: #fff;
    padding: 14px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border-left: 4px solid var(--gold);
}

.about__badge i {
    font-size: 26px;
    color: var(--gold);
}

.about__badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: var(--burgundy);
}

.about__badge p {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.about__cards {
    display: grid;
    gap: 18px;
    margin-bottom: 32px;
}

.about__card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    padding-left: 92px;
}

.about__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold-light);
}

.about__card-icon {
    position: absolute;
    left: 24px;
    top: 24px;
    width: 48px;
    height: 48px;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 18px;
    transition: var(--transition);
}

.about__card:hover .about__card-icon {
    background: var(--gradient-primary);
    color: #fff;
}

.about__card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.about__card p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.7;
}

.about__quote {
    background: var(--gradient-primary);
    color: #fff;
    padding: 30px 34px 30px 70px;
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about__quote::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border: 12px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.about__quote i {
    position: absolute;
    top: 22px;
    left: 24px;
    font-size: 30px;
    color: var(--gold-light);
}

.about__quote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.55;
    margin-bottom: 10px;
    color: #fff;
}

.about__quote span {
    display: block;
    font-weight: 600;
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* ---------- How We Do ---------- */
.how__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.how__content .section__pill {
    margin-bottom: 14px;
}

.how__content .section__title {
    text-align: left;
    margin-bottom: 20px;
}

.how__content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.how__list {
    margin: 28px 0;
    display: grid;
    gap: 14px;
}

.how__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    font-weight: 500;
}

.how__list li i {
    color: var(--gold);
    font-size: 20px;
}

.how__image-wrap {
    position: relative;
}

.how__image {
    width: 100%;
    aspect-ratio: 4 / 4.6;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.how__experience {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 22px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-bottom: 4px solid var(--gold);
}

.how__experience-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
}

.how__experience-num small {
    font-size: 1.5rem;
    color: var(--gold);
}

.how__experience p {
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ---------- Services ---------- */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.service-card__img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-card__img img {
    transform: scale(1.08);
}

.service-card__icon {
    position: absolute;
    bottom: -26px;
    left: 26px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow);
    border: 4px solid #fff;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--gradient-gold);
    transform: rotate(-6deg);
}

.service-card__body {
    padding: 42px 28px 30px;
}

.service-card__body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--burgundy);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card__body ul {
    display: grid;
    gap: 10px;
}

.service-card__body li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 14.5px;
}

.service-card__body li i {
    color: var(--gold);
    font-size: 12px;
    background: var(--gold-soft);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- Why Choose Us ---------- */
.why__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.why__image-wrap {
    position: relative;
    padding: 30px 30px 0 0;
}

.why__decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--gradient-gold);
    opacity: 0.18;
    border-radius: 50%;
    z-index: 0;
}

.why__image {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.why__content .section__title {
    text-align: left;
    margin-bottom: 22px;
}

.why__intro {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.why__features {
    display: grid;
    gap: 22px;
}

.why__feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why__feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px dashed var(--gold-light);
    transition: var(--transition);
}

.why__feature:hover .why__feature-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotate(360deg);
}

.why__feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--burgundy);
    margin-bottom: 6px;
    font-weight: 700;
}

.why__feature p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
    background: var(--gradient-warm);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
    border-radius: 50%;
}

.cta-strip::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.3), transparent 60%);
    border-radius: 50%;
}

.cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-strip h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    margin-bottom: 8px;
    font-weight: 700;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
}

.cta-strip__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---------- Reviews ---------- */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '\201D';
    position: absolute;
    top: 0;
    right: 26px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 110px;
    color: var(--gold-soft);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.review-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 15px;
}

.review-card__text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--text);
    font-size: 18px;
    margin-bottom: 26px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.review-card__user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.review-card__user img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-soft);
}

.review-card__user strong {
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    font-size: 16px;
    font-weight: 700;
}

.review-card__user span {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.review-card__user--no-avatar {
    gap: 0;
}

.reviews__cta {
    text-align: center;
}

/* Review form — avatar upload */
.review-avatar-upload input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    background: var(--cream-warm);
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.review-avatar-upload input[type="file"]:hover {
    border-color: var(--gold);
    background: #fff;
}

.form-label-optional {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.9em;
}

.form-hint {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.review-avatar-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.review-avatar-preview[hidden] {
    display: none !important;
}

.review-avatar-preview img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-soft);
    flex-shrink: 0;
}

.review-avatar-preview__remove {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--cream-warm);
    color: var(--burgundy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.review-avatar-preview__remove:hover {
    background: var(--burgundy);
    color: #fff;
}

/* ---------- Contact ---------- */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact__info {
    display: grid;
    gap: 18px;
}

.contact__info-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
}

.contact__info-card:hover {
    transform: translateX(8px);
    border-color: var(--gold-light);
    box-shadow: var(--shadow);
}

.contact__info-icon {
    width: 54px;
    height: 54px;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact__info-card:hover .contact__info-icon {
    background: var(--gradient-primary);
    color: #fff;
}

.contact__info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--burgundy);
}

.contact__info-card p {
    color: var(--text-light);
    font-size: 14.5px;
}

.contact__form {
    background: #fff;
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact__form::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient-gold);
    opacity: 0.08;
    border-radius: 50%;
}

.contact__form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--burgundy);
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--cream-warm);
    color: var(--text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(122, 26, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ---------- Footer ---------- */
.footer {
    background: #1a0710;
    color: #d4b8c2;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(80px);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    position: relative;
}

.footer__col h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 18px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
    font-weight: 700;
}

.footer__col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.footer__brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    border-radius: 50%;
}

.footer__brand strong {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.footer__brand span {
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer__col p {
    color: #b29ba3;
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.7;
}

.footer__col ul li {
    margin-bottom: 12px;
    font-size: 14.5px;
}

.footer__col ul a {
    color: #b29ba3;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer__col ul a::before {
    content: '\203A';
    margin-right: 0;
    opacity: 0;
    color: var(--gold);
    transition: var(--transition);
}

.footer__col ul a:hover {
    color: var(--gold-light);
    padding-left: 14px;
}

.footer__col ul a:hover::before {
    opacity: 1;
    margin-right: 6px;
    margin-left: -14px;
}

.footer__contact li {
    color: #b29ba3;
    font-size: 14.5px;
}

.footer__contact li i {
    color: var(--gold);
    margin-right: 10px;
    width: 16px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4b8c2;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid rgba(212, 184, 194, 0.1);
}

.footer__social a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer__bottom {
    border-top: 1px solid rgba(212, 184, 194, 0.1);
    padding: 24px 0;
    position: relative;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #b29ba3;
}

/* ---------- Floating WhatsApp + Back to Top ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 99;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    animation: pulseRing 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--burgundy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 99;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--burgundy-dark);
    transform: translateY(-3px);
}

/* ============================================
   INNER PAGE COMPONENTS
   (page banner, breadcrumb, process steps, blog, FAQ, team)
   ============================================ */

/* ---------- Page Banner (smaller hero for inner pages) ---------- */
.page-banner {
    position: relative;
    padding: 90px 0 80px;
    background:
        linear-gradient(135deg, rgba(122, 26, 58, 0.92) 0%, rgba(92, 15, 42, 0.92) 100%),
        url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&auto=format&fit=crop&q=80') center/cover;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-gold);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(60px);
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--gold);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(80px);
}

.page-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-banner__pill {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -1px;
}

.page-banner h1 span {
    color: var(--gold-light);
    font-style: italic;
}

.page-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a {
    color: #fff;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb i {
    font-size: 9px;
    color: var(--gold-light);
}

.breadcrumb span {
    color: var(--gold-light);
    font-weight: 600;
}

/* ---------- Process Steps (4-step layout) ---------- */
.process {
    padding: 100px 0;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.process-step__num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow);
}

.process-step__icon {
    width: 70px;
    height: 70px;
    margin: 20px auto 18px;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--transition);
}

.process-step:hover .process-step__icon {
    background: var(--gradient-gold);
    color: #fff;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.6;
}

/* Connector dotted line between process steps */
.process__grid {
    position: relative;
}

.process__grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12%;
    right: 12%;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, var(--gold-light), var(--gold-light) 6px, transparent 6px, transparent 12px);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
}

/* ---------- Blog ---------- */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.blog-card__img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.06);
}

.blog-card__date {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.blog-card__category {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--gradient-gold);
    color: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card__body {
    padding: 26px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--muted);
}

.blog-card__meta i {
    color: var(--gold);
    margin-right: 6px;
}

.blog-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    color: var(--burgundy);
    margin-bottom: 12px;
    line-height: 1.35;
    transition: var(--transition);
}

.blog-card:hover .blog-card__title {
    color: var(--gold-dark);
}

.blog-card__excerpt {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--burgundy);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    align-self: flex-start;
}

.blog-card__link i {
    transition: var(--transition);
}

.blog-card__link:hover {
    color: var(--gold);
}

.blog-card__link:hover i {
    transform: translateX(4px);
}

/* Featured / Large blog post */
.blog-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 60px;
}

.blog-featured__img {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.blog-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured__body {
    padding: 40px;
}

.blog-featured__pill {
    display: inline-block;
    padding: 5px 14px;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    font-size: 11px;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.blog-featured h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--burgundy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-featured__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--muted);
}

.blog-featured__meta i {
    color: var(--gold);
    margin-right: 6px;
}

.blog-featured p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ---------- FAQ Accordion ---------- */
.faq__grid {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--gold-light);
    box-shadow: var(--shadow);
}

.faq-item__question {
    width: 100%;
    text-align: left;
    padding: 22px 26px;
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--burgundy);
    transition: var(--transition);
}

.faq-item__question:hover {
    color: var(--gold-dark);
}

.faq-item__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.faq-item.open .faq-item__icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 26px;
}

.faq-item.open .faq-item__answer {
    max-height: 500px;
    padding: 0 26px 22px;
}

.faq-item__answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* ---------- Team ---------- */
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.team-card__img {
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
}

.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover .team-card__img img {
    transform: scale(1.05);
}

.team-card__body {
    padding: 22px 18px 26px;
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.team-card__role {
    color: var(--gold-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
}

.team-card__social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-card__social a {
    width: 34px;
    height: 34px;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.team-card__social a:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- Service Detail (services.html) ---------- */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail__img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.service-detail__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail__icon {
    position: absolute;
    bottom: -20px;
    left: 24px;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: var(--shadow);
    border: 4px solid #fff;
}

.service-detail__content .section__pill {
    margin-bottom: 14px;
}

.service-detail__content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.3rem);
    color: var(--burgundy);
    margin-bottom: 16px;
    line-height: 1.25;
}

.service-detail__content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail__list {
    display: grid;
    gap: 10px;
    margin: 22px 0 28px;
}

.service-detail__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 15px;
}

.service-detail__list li i {
    color: #fff;
    background: var(--gradient-gold);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* ---------- Review Stats (reviews.html) ---------- */
.review-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 70px;
}

.review-stat {
    text-align: center;
    padding: 32px 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.review-stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold-light);
}

.review-stat__num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 8px;
}

.review-stat__num small {
    font-size: 1.6rem;
    color: var(--gold);
}

.review-stat p {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.review-stat__stars {
    color: var(--gold);
    font-size: 15px;
    margin-bottom: 12px;
}

/* ---------- Philosophy Cards (image + icon + content) ---------- */
.philosophy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.philosophy-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.philosophy-card__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.philosophy-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.philosophy-card:hover .philosophy-card__img img {
    transform: scale(1.08);
}

.philosophy-card__body {
    padding: 36px 28px 30px;
    position: relative;
    flex: 1;
}

.philosophy-card__icon {
    position: absolute;
    top: -32px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow);
    border: 4px solid #fff;
    transition: var(--transition);
}

.philosophy-card:hover .philosophy-card__icon {
    background: var(--gradient-gold);
    transform: rotate(360deg) scale(1.08);
}

.philosophy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--burgundy);
    margin-bottom: 12px;
}

.philosophy-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
}

/* ---------- Gallery ---------- */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(122, 26, 58, 0.85) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__caption {
    position: absolute;
    bottom: 16px;
    left: 18px;
    right: 18px;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery__item:hover .gallery__caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery__caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 2px;
}

.gallery__caption p {
    font-size: 12px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.gallery__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    z-index: 2;
    opacity: 0;
    transform: scale(0.7);
    transition: var(--transition);
}

.gallery__item:hover .gallery__zoom {
    opacity: 1;
    transform: scale(1);
}

/* Masonry-style featured items */
.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

/* Lightbox overlay */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 7, 16, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 6px solid #fff;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__close:hover {
    background: var(--burgundy);
    transform: rotate(90deg);
}

/* ---------- Contact map ---------- */
.contact-map {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: var(--bg-alt);
}

.contact-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* ======================================================
   RESPONSIVE / MOBILE-FIRST POLISH
   Breakpoints: 1024, 880, 768, 640, 480, 380
   ====================================================== */

/* ---------- Tablet landscape & small desktop (iPads, small laptops) ---------- */
@media (max-width: 1024px) {
    html {
        scroll-padding-top: 76px;
    }

    .container {
        padding: 0 22px;
    }

    .section {
        padding: 90px 0;
    }

    .section__head {
        margin-bottom: 56px;
    }

    .hero__inner,
    .about__grid,
    .how__grid,
    .why__grid,
    .contact__grid {
        gap: 50px;
    }

    .services__grid,
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px;
    }

    /* ----- Header: switch to hamburger menu for iPads & small desktops ----- */
    .navbar__inner {
        padding: 10px 22px;
        gap: 14px;
    }

    .navbar__logo {
        width: 50px;
        height: 50px;
    }

    .navbar__brand-name {
        font-size: 19px;
    }

    .navbar__brand-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    /* Hide the "Book Consultation" button in navbar (it's clutter on smaller screens) */
    .navbar__actions .btn.hide-mobile,
    .navbar__actions .btn--primary {
        display: none;
    }

    /* Mobile sidebar navigation */
    .navbar {
        z-index: 1002;
    }

    .navbar__menu {
        position: fixed !important;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(300px, 88vw);
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        box-shadow: 8px 0 32px rgba(26, 7, 16, 0.18);
        transform: translateX(-105%);
        opacity: 1;
        visibility: visible;
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: none;
        border-right: 1px solid var(--border);
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        z-index: 1100;
        will-change: transform;
    }

    .navbar__menu.open {
        transform: translateX(0);
    }

    .navbar__sidebar-head,
    .navbar__sidebar-foot {
        display: flex;
    }

    .navbar__sidebar-head {
        align-items: center;
        justify-content: space-between;
        padding: 22px 20px 18px;
        border-bottom: 1px solid var(--border);
        background: linear-gradient(135deg, var(--burgundy-tint) 0%, #fff 100%);
        flex-shrink: 0;
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .navbar__sidebar-title {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--burgundy);
    }

    .navbar__sidebar-close {
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 50%;
        background: #fff;
        color: var(--burgundy);
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
    }

    .navbar__sidebar-close:hover {
        background: var(--burgundy);
        color: #fff;
    }

    .navbar__menu > .navbar__link {
        margin: 4px 14px;
    }

    .navbar__sidebar-foot {
        margin-top: auto;
        padding: 20px 18px 28px;
        border-top: 1px solid var(--border);
        background: var(--cream-warm);
        flex-shrink: 0;
    }

    .navbar__sidebar-foot .btn {
        width: 100%;
        justify-content: center;
    }

    .navbar__link {
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 10px;
    }

    .navbar__link::after {
        display: none;
    }

    .navbar__link:hover,
    .navbar__link.active {
        background: var(--burgundy-tint);
    }

    .navbar__toggle {
        display: flex;
        z-index: 1003;
    }
}

@media (min-width: 1025px) {
    .navbar__sidebar-head,
    .navbar__sidebar-foot {
        display: none;
    }
}

/* ---------- Tablet portrait — stack two-column sections ---------- */
@media (max-width: 880px) {
    html {
        scroll-padding-top: 76px;
    }

    .hero__inner,
    .about__grid,
    .how__grid,
    .why__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .hero__image-wrap,
    .why__image-wrap,
    .how__image-wrap,
    .about__images {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .how__content .section__title,
    .why__content .section__title {
        text-align: center;
    }

    .why__content .section__pill,
    .how__content .section__pill {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: max-content;
    }

    .how__experience {
        left: 50%;
        transform: translateX(-50%);
        bottom: -28px;
        white-space: nowrap;
    }
}

/* ---------- Mobile (tablet portrait small + phablet) ---------- */
@media (max-width: 768px) {
    body {
        font-size: 15.5px;
    }

    .container {
        padding: 0 18px;
    }

    .section {
        padding: 64px 0;
    }

    .section__head {
        margin-bottom: 44px;
    }

    .section__title {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .section__subtitle {
        font-size: 15.5px;
    }

    /* Top bar slimmer on mobile */
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }

    .top-bar__inner {
        justify-content: center;
    }

    .top-bar__info {
        gap: 12px;
        justify-content: center;
        width: 100%;
    }

    .top-bar__info span {
        white-space: nowrap;
    }

    .top-bar__social {
        display: none;
    }

    .hide-mobile {
        display: none !important;
    }

    /* Navbar fine-tuning for phones (header rules already set at 1024px) */
    .navbar__inner {
        padding: 10px 18px;
        gap: 12px;
    }

    .navbar__logo {
        width: 46px;
        height: 46px;
    }

    .navbar__brand-name {
        font-size: 18px;
    }

    .navbar__brand-tag {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    /* Hero — mobile centered layout */
    .hero {
        padding: 40px 0 60px;
        text-align: center;
    }

    .hero__inner {
        gap: 40px;
    }

    .hero__content {
        max-width: 560px;
        margin: 0 auto;
    }

    .hero__pill {
        font-size: 11px;
        padding: 7px 14px;
        margin-bottom: 18px;
    }

    .hero__title {
        font-size: clamp(1.9rem, 8.5vw, 2.6rem);
        margin-bottom: 18px;
        letter-spacing: -0.5px;
    }

    .hero__subtitle {
        font-size: 15.5px;
        margin: 0 auto 28px;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 40px;
    }

    .hero__cta .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14.5px;
    }

    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding-top: 26px;
        text-align: center;
    }

    .hero__stat {
        align-items: center;
    }

    .hero__stat-num,
    .hero__stat span:nth-child(2) {
        font-size: 1.8rem;
    }

    .hero__stat p {
        font-size: 10px;
        letter-spacing: 0.3px;
        margin-top: 4px;
        line-height: 1.3;
    }

    /* Hero image — simpler, cleaner shape on mobile */
    .hero__image-wrap {
        padding: 10px;
        max-width: 380px;
    }

    .hero__image-shape {
        display: none;
    }

    .hero__image {
        aspect-ratio: 1 / 1;
        border-radius: 24px;
        border-width: 6px;
    }

    .hero__floating-card {
        padding: 10px 14px;
        gap: 10px;
        animation-duration: 5s;
    }

    .hero__floating-card strong {
        font-size: 13px;
    }

    .hero__floating-card p {
        font-size: 10.5px;
    }

    .hero__floating-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
        border-radius: 10px;
    }

    .hero__floating-card--top {
        top: 16px;
        left: -4px;
    }

    .hero__floating-card--bottom {
        bottom: 16px;
        right: -4px;
    }

    /* Values */
    .values {
        padding: 50px 0 20px;
    }

    .values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }

    .value {
        padding: 8px 4px;
    }

    .value__circle {
        width: 78px;
        height: 78px;
        font-size: 28px;
        margin-bottom: 16px;
    }

    .value__circle::after {
        inset: -8px;
    }

    .value h4 {
        font-size: 15.5px;
    }

    .value p {
        font-size: 13px;
    }

    /* About */
    .about__images {
        padding: 0;
        max-width: 480px;
    }

    .about__decor {
        width: 90px;
        height: 90px;
        border-width: 6px;
        top: -12px;
        left: -12px;
    }

    .about__img--big {
        width: 100%;
        aspect-ratio: 4 / 4.4;
    }

    .about__img--small {
        position: relative;
        bottom: auto;
        right: auto;
        width: 60%;
        margin: -70px 0 0 auto;
        border-width: 6px;
        aspect-ratio: 1 / 1;
    }

    .about__badge {
        top: 12px;
        right: 0;
        padding: 10px 14px;
        gap: 10px;
    }

    .about__badge i {
        font-size: 20px;
    }

    .about__badge strong {
        font-size: 13px;
    }

    .about__badge p {
        font-size: 10px;
    }

    .about__card {
        padding: 22px 22px 22px 80px;
    }

    .about__card-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
        top: 22px;
        left: 22px;
    }

    .about__card h3 {
        font-size: 17px;
    }

    .about__card p {
        font-size: 14px;
    }

    .about__quote {
        padding: 24px 24px 24px 56px;
    }

    .about__quote i {
        font-size: 22px;
        top: 18px;
        left: 18px;
    }

    .about__quote p {
        font-size: 16px;
    }

    /* How */
    .how__image {
        aspect-ratio: 4 / 4.3;
    }

    .how__experience {
        padding: 14px 22px;
        bottom: -22px;
    }

    .how__experience-num {
        font-size: 2.2rem;
    }

    .how__experience-num small {
        font-size: 1.1rem;
    }

    .how__experience p {
        font-size: 10px;
        margin-top: 4px;
    }

    .how__list li {
        font-size: 14.5px;
        gap: 10px;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-card__body {
        padding: 36px 22px 24px;
    }

    .service-card__body h3 {
        font-size: 20px;
    }

    .service-card__icon {
        width: 52px;
        height: 52px;
        font-size: 19px;
        bottom: -22px;
        left: 22px;
    }

    /* Why Choose Us */
    .why__image-wrap {
        padding: 16px 16px 0 0;
        max-width: 460px;
    }

    .why__decor {
        width: 110px;
        height: 110px;
    }

    .why__feature {
        gap: 14px;
    }

    .why__feature-icon {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .why__feature h4 {
        font-size: 16px;
    }

    .why__feature p {
        font-size: 13.5px;
    }

    .why__intro {
        font-size: 15px;
        text-align: center;
    }

    /* CTA Strip */
    .cta-strip {
        padding: 48px 0;
    }

    .cta-strip__inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-strip__buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-strip__buttons .btn {
        width: 100%;
    }

    /* Reviews */
    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 36px;
    }

    .review-card {
        padding: 28px 24px;
    }

    .review-card__text {
        font-size: 16px;
    }

    .review-card::before {
        font-size: 80px;
        right: 18px;
    }

    /* Contact */
    .contact__form {
        padding: 28px 22px;
    }

    .contact__form h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 13px 15px;
        font-size: 15px;
    }

    .contact__info-card {
        padding: 18px;
        gap: 14px;
    }

    .contact__info-card:hover {
        transform: none;
    }

    .contact__info-icon {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }

    .contact__info-card h4 {
        font-size: 15px;
    }

    .contact__info-card p {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding-top: 56px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
        text-align: center;
    }

    .footer__col h4 {
        font-size: 17px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .footer__col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer__brand {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__contact li {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer__bottom {
        padding: 18px 0;
    }

    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        font-size: 12.5px;
    }

    /* Floating buttons */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 24px;
        bottom: 18px;
        right: 18px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 14px;
        bottom: 82px;
        right: 22px;
    }
}

/* ---------- Small phones ---------- */
@media (max-width: 640px) {
    .top-bar__info {
        gap: 10px;
        font-size: 11.5px;
    }

    .top-bar__info span:last-child {
        display: none;
    }

    .hero__floating-card {
        max-width: 160px;
    }

    .hero__floating-card p {
        display: none;
    }

    .hero__floating-card strong {
        font-size: 12.5px;
    }

    .hero__floating-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    /* About cards: icon on top, content centered, no left padding */
    .about__card {
        padding: 76px 22px 22px;
        text-align: center;
    }

    .about__card-icon {
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
    }

    .about__card h3 {
        font-size: 18px;
    }

    /* About quote — icon top, content centered */
    .about__quote {
        padding: 60px 24px 24px;
        text-align: center;
    }

    .about__quote i {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 22px;
    }

    .about__quote p {
        font-size: 16px;
    }

    /* About images: vertical stack, no overlap mess */
    .about__images {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 0;
    }

    .about__decor {
        display: none;
    }

    .about__img--big {
        width: 100%;
        aspect-ratio: 16 / 11;
        max-width: 480px;
    }

    .about__img--small {
        position: relative;
        bottom: auto;
        right: auto;
        width: 75%;
        max-width: 320px;
        margin: -50px 0 0;
        aspect-ratio: 4 / 3;
        border-width: 6px;
        align-self: center;
    }

    .about__badge {
        top: 16px;
        right: 16px;
        padding: 8px 12px;
    }

    .about__badge i {
        font-size: 18px;
    }

    .about__badge strong {
        font-size: 12px;
    }

    .about__badge p {
        font-size: 9.5px;
    }

    /* Why feature: stack icon on top */
    .why__feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 12px;
    }

    /* Contact info cards centered */
    .contact__info-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 22px 18px;
    }

    /* Values single column */
    .values__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ---------- Extra small (most phones) ---------- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Pull brand back into navbar properly on narrow phones */
    .navbar__brand {
        gap: 10px;
    }

    .navbar__logo {
        width: 42px;
        height: 42px;
    }

    .navbar__brand-name {
        font-size: 16px;
    }

    .navbar__brand-tag {
        font-size: 8.5px;
    }

    /* Top bar: just the phone */
    .top-bar__info span:nth-child(2) {
        display: none;
    }

    .top-bar__info {
        justify-content: center;
    }

    /* Hero further compressed */
    .hero__title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
    }

    .hero__pill {
        font-size: 10.5px;
        letter-spacing: 0.5px;
    }

    .hero__stats {
        gap: 6px;
    }

    .hero__stat-num,
    .hero__stat span:nth-child(2) {
        font-size: 1.55rem;
    }

    .hero__stat p {
        font-size: 9px;
    }

    /* Smaller floating cards */
    .hero__floating-card--top {
        top: 10px;
    }

    .hero__floating-card--bottom {
        bottom: 10px;
    }

    /* About card layout fix on narrow phones */
    .about__card {
        padding: 70px 20px 20px;
        text-align: center;
    }

    .about__card-icon {
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
    }

    .about__card h3 {
        font-size: 17px;
    }

    .about__quote {
        padding: 56px 22px 22px;
        text-align: center;
    }

    .about__quote i {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .about__quote p {
        font-size: 15px;
    }

    .about__quote span {
        text-align: center;
    }

    /* Why feature center layout */
    .why__feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* Contact info cards center */
    .contact__info-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Service card body padding */
    .service-card__body {
        padding: 36px 20px 22px;
    }

    /* Values single column */
    .values__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Sections tighter */
    .section {
        padding: 56px 0;
    }

    .section__head {
        margin-bottom: 36px;
    }

    /* Smaller buttons for narrow screens */
    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .btn--large {
        padding: 14px 24px;
        font-size: 14.5px;
    }
}

/* ---------- Tiny phones (iPhone SE etc.) ---------- */
@media (max-width: 380px) {
    .top-bar__info {
        font-size: 11px;
    }

    .navbar__brand-tag {
        display: none;
    }

    .hero__floating-card--top,
    .hero__floating-card--bottom {
        display: none;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 240px;
        margin: 0 auto;
        text-align: center;
    }

    .hero__stat {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .hero__stat p {
        text-align: left;
        font-size: 10px;
        margin: 0;
    }
}

/* ---------- Responsive: Inner Page Components ---------- */
@media (max-width: 1024px) {
    .blog__grid,
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .process__grid::before {
        display: none;
    }

    .review-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail {
        gap: 50px;
    }
}

@media (max-width: 880px) {
    .service-detail,
    .blog-featured {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .blog-featured__body {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 70px 0 60px;
    }

    .page-banner h1 {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
    }

    .page-banner p {
        font-size: 15.5px;
    }

    .process {
        padding: 70px 0;
    }

    .process-step {
        padding: 26px 22px;
    }

    .process-step__icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .blog__grid,
    .team__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .blog-card__body {
        padding: 22px;
    }

    .blog-featured {
        margin-bottom: 40px;
    }

    .blog-featured__body {
        padding: 26px 22px 30px;
    }

    .review-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 50px;
    }

    .review-stat {
        padding: 24px 16px;
    }

    .review-stat__num {
        font-size: 2.4rem;
    }

    .review-stat__num small {
        font-size: 1.3rem;
    }

    .review-stat p {
        font-size: 11.5px;
        letter-spacing: 1px;
    }

    .service-detail {
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-detail__content h2 {
        text-align: center;
    }

    .service-detail__content .section__pill {
        display: block;
        margin: 0 auto 14px;
        width: max-content;
    }

    .faq-item__question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-item__answer {
        padding: 0 20px;
    }

    .faq-item.open .faq-item__answer {
        padding: 0 20px 18px;
    }

    .contact-map iframe {
        height: 320px;
    }

    .breadcrumb {
        font-size: 12.5px;
        padding: 6px 14px;
    }
}

@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 170px;
    }

    .philosophy__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .philosophy__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 460px;
        margin: 0 auto;
    }

    .philosophy-card__body {
        padding: 32px 24px 26px;
    }

    .philosophy-card__icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 12px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .gallery__caption h4 {
        font-size: 14px;
    }

    .gallery__caption p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .review-stats {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto 40px;
    }

    .process__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 30px auto 0;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery__item--wide,
    .gallery__item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ---------- Prevent any horizontal overflow ---------- */
/* Use overflow-x: clip so position: sticky on .navbar still works.
   overflow-x: hidden on html/body creates a new scroll container which breaks sticky. */
html, body {
    max-width: 100%;
    overflow-x: hidden;            /* fallback for older browsers */
    overflow-x: clip;              /* modern: doesn't break sticky */
}

html {
    overflow-x: clip;
}

/* Lock body scroll while mobile sidebar open */
@media (max-width: 1024px) {
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
        touch-action: none;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(26, 7, 16, 0.5);
        z-index: 1050;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        pointer-events: auto;
    }
}

@media (min-width: 1025px) {
    body.nav-open {
        overflow: auto;
        position: static;
        touch-action: auto;
    }

    body.nav-open::before {
        display: none;
    }
}

/* ---------- Touch-friendly: ensure all tap targets are 44px+ ---------- */
@media (pointer: coarse) {
    .btn,
    .navbar__link,
    .footer__col ul a,
    .footer__social a,
    .top-bar__social a {
        min-height: 44px;
    }

    .footer__social a {
        min-width: 44px;
    }

    /* Disable hover transforms on touch devices to avoid sticky hover states */
    .service-card:hover,
    .review-card:hover,
    .about__card:hover,
    .contact__info-card:hover,
    .value:hover .value__circle,
    .why__feature:hover .why__feature-icon {
        transform: none;
    }
}
