/* ─────────────────────────────────────────
    CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
    --nude:       #e2d1c7;
    --nude-light: #ede4dd;
    --nude-dark:  #d4bfb3;
    --taupe:      #917861;
    --taupe-light:#b09a85;
    --chocolate:  #4a2917;
    --chocolate-mid: #6b3d24;
    --white:      #faf8f6;
    --off-white:  #f5f0ec;
    --black:      #1a1208;
    --shadow-soft: 0 4px 30px rgba(74, 41, 23, 0.08);
    --shadow-card: 0 2px 20px rgba(74, 41, 23, 0.10);
    --shadow-hover:0 12px 40px rgba(74, 41, 23, 0.18);
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  28px;
    --radius-xl:  40px;
    --transition: 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-alt:   'Cormorant Garamond', serif;
    --font-sans:  'Lato', sans-serif;
}

/* ─────────────────────────────────────────
    RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background-color: var(--white);
    color: var(--chocolate);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────
    TYPOGRAPHY SCALE
───────────────────────────────────────── */
.t-display {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
}
.t-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.t-subhead {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
}
.t-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.t-body {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}
.t-taupe  { color: var(--taupe); }
.t-choc   { color: var(--chocolate); }
.t-white  { color: var(--white); }

/* ─────────────────────────────────────────
    LAYOUT HELPERS
───────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.section-pad { padding: clamp(5rem, 10vw, 9rem) 0; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.gap-s { gap: 1rem; }
.gap-m { gap: 2rem; }
.gap-l { gap: 3rem; }

/* ─────────────────────────────────────────
    ORNAMENT / DECORATIVE LINE
───────────────────────────────────────── */
.ornament {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.ornament::before,
.ornament::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--taupe);
    opacity: 0.6;
}

/* ─────────────────────────────────────────
    BUTTONS
───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--chocolate);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(74, 41, 23, 0.3);
}
.btn-primary:hover {
    background: var(--chocolate-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 41, 23, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-taupe {
    background: var(--taupe);
    color: var(--white);
}
.btn-taupe:hover {
    background: var(--chocolate);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--chocolate);
    border: 1.5px solid var(--chocolate);
    padding: 0.7rem 1.6rem;
}
.btn-ghost:hover {
    background: var(--chocolate);
    color: var(--white);
}

/* ─────────────────────────────────────────
    HEADER / NAVIGATION
───────────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
    background: rgba(226, 209, 199, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(74, 41, 23, 0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height var(--transition);
}
.header.scrolled .header-inner { height: 64px; }
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-name {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--chocolate);
    letter-spacing: 0.02em;
}
.logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-top: 2px;
}

/* Logo image variants */
.logo-img { display: none; height: 90px; width: auto; vertical-align: middle; }
.logo .logo-name { display: none; /* keep textual logo for SEO/screen readers */ }
.logo-img--brown { display: inline-block; }
.logo-img--offwhite { display: none; }
.home-page .header:not(.scrolled) .logo-img--white { display: inline-block; }
.home-page .header:not(.scrolled) .logo-img--brown { display: none; }
.header.scrolled .logo-img--brown { display: inline-block; }
.header.scrolled .logo-img--white { display: none; }
.footer-logo { display: block; height: 90px; margin-bottom: 0.5rem; }
@media (max-width: 640px) { .logo-img { height: 50px; } .footer-logo { height: 50px; } }
.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-link {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--chocolate);
    position: relative;
    padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: var(--taupe);
    transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.header-cta { margin-left: 1rem; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.menu-toggle span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--chocolate);
    transition: all var(--transition);
}
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(226, 209, 199, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(145, 120, 97, 0.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
    font-size: 1rem;
    letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────
    HERO SECTION
───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/* Layered background: gradient + placeholder for real image */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        135deg,
        rgba(74, 41, 23, 0.62) 0%,
        rgba(145, 120, 97, 0.38) 50%,
        rgba(226, 209, 199, 0.18) 100%
    ),
    /* Simulated luxury nail scene using CSS gradients */
    radial-gradient(ellipse at 70% 50%, #c4a48a 0%, #8b6047 40%, #3d1e0e 100%);
    /* When real image is available, add: url('hero-nail.jpg') center/cover no-repeat; */
}
/* Decorative grain overlay for depth */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    mix-blend-mode: overlay;
    pointer-events: none;
}
/* Decorative circle accent */
.hero-circle {
    position: absolute;
    right: -120px; top: 50%;
    transform: translateY(-50%);
    width: 680px; height: 680px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}
.hero-circle::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.07);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-top: 80px;
    animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-label {
    animation: heroFadeUp 1.1s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero h1 {
    color: var(--white);
    animation: heroFadeUp 1.1s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
    margin: 1.25rem 0 1.5rem;
}
.hero-sub {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    animation: heroFadeUp 1.1s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
    margin-bottom: 2.5rem;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: heroFadeUp 1.1s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: heroFadeUp 1.1s 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.scroll-hint span {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
}
.scroll-mouse {
    width: 22px; height: 34px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.scroll-dot {
    width: 4px; height: 6px;
    background: rgba(255,255,255,0.55);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(8px); opacity: 0.3; }
}

/* Hero floating stats */
.hero-stats {
    position: absolute;
    right: clamp(2rem, 5vw, 6rem);
    bottom: 4rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: heroFadeUp 1.1s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.stat-card {
    background: rgba(250, 248, 246, 0.10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 120px;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--white);
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-top: 4px;
}

/* ─────────────────────────────────────────
    SECTION HEADERS (reusable)
───────────────────────────────────────── */
.section-header { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.section-header.centered { text-align: center; }
.section-header.centered .ornament { justify-content: center; }

/* ─────────────────────────────────────────
    TRUST BAR
───────────────────────────────────────── */
.trust-bar {
    background: var(--nude);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(145, 120, 97, 0.15);
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--taupe);
    background: rgba(250, 248, 246, 0.5);
    border: 1px solid rgba(145, 120, 97, 0.16);
    border-radius: 999px;
    padding: 0.6rem 0.85rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.trust-item:hover {
    transform: translateY(-2px);
    border-color: rgba(145, 120, 97, 0.35);
    box-shadow: 0 8px 22px rgba(74, 41, 23, 0.08);
}
.trust-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(145, 120, 97, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; stroke: var(--taupe); fill: none; stroke-width: 1.8; }
.trust-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 1200px) {
    .trust-items { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .trust-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-item { border-radius: var(--radius-md); }
    .trust-text { font-size: 0.66rem; }
}

@media (max-width: 420px) {
    .trust-items { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
    SERVICES SECTION
───────────────────────────────────────── */
.services { background: var(--off-white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}

/* Featured nail card — takes up 7 of 12 columns, 2 rows */
.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-card);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.service-card:hover .card-img-inner { transform: scale(1.06); }

.service-card--featured {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    min-height: 520px;
}
.service-card--sm {
    grid-column: span 5;
    min-height: 240px;
}
.service-card--third {
    grid-column: span 4;
    min-height: 220px;
}

.card-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.card-img-inner {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Simulated image backgrounds using CSS for cards */
.img-manicure {
    /* layered gradients + image — gradients must be declared together with the image */
    background-image:
      linear-gradient(160deg, rgba(74,41,23,0.45) 0%, transparent 60%),
      radial-gradient(ellipse at 60% 70%, #c4a08a 0%, #a0734d 30%, #5c3318 80%),
      url('../images/img-manicure.jpg');
    background-size: cover, cover, cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}
.img-extensions {
    background-image:
      linear-gradient(160deg, rgba(74,41,23,0.5) 0%, transparent 55%),
      radial-gradient(ellipse at 40% 60%, #d4b8a0 0%, #8c5e3a 50%, #3d1e0e 100%),
      url('../images/Nail Extensions.jpg');
    background-size: cover, cover, cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}
.img-gel {
    /* gradient-only (no image file present) — consistent format */
    background-image:
      linear-gradient(160deg, rgba(74,41,23,0.5) 0%, transparent 55%),
      radial-gradient(ellipse at 65% 45%, #e8c4b8 0%, #b87a5a 45%, #4a2410 100%),
      url('../images/Gel\ &\ Nail\ Art.jpg');
    background-size: cover, cover, cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}
.img-facial {
    background-image:
      linear-gradient(160deg, rgba(74,41,23,0.5) 0%, transparent 55%),
      radial-gradient(ellipse at 45% 55%, #e0c8b8 0%, #c49478 45%, #5a2e1a 100%),
      url('../images/Facial\ Care.jpg');
    background-size: cover, cover, cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 41, 23, 0.78) 0%, transparent 55%);
}
.card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 2rem 1.75rem;
}
.card-badge {
    display: inline-block;
    background: rgba(250, 248, 246, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.75rem;
}
.card-title {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.card-title--lg { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.card-title--sm { font-size: 1.2rem; }
.card-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    line-height: 1.5;
}
.card-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    transition: background var(--transition), transform var(--transition);
}
.service-card:hover .card-arrow {
    background: rgba(255,255,255,0.28);
    transform: translate(3px, -3px);
}
.card-arrow svg { width: 14px; height: 14px; stroke: var(--white); stroke-width: 2; fill: none; }

/* Secondary service cards (Hair & Facial) — muted styling */
.service-card--secondary .card-overlay {
    background: linear-gradient(to top, rgba(74, 41, 23, 0.65) 0%, transparent 65%);
}
.card-secondary-label {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
}

/* ─────────────────────────────────────────
    PRICING SECTION
───────────────────────────────────────── */
.pricing-section { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); }
.price-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: clamp(1rem, 2vw, 1.5rem);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(145,120,97,0.06);
}
.price-card--highlight { background: linear-gradient(180deg, var(--nude-light), var(--off-white)); border-left: 3px solid var(--taupe); }
.section-title { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 0.85rem; }
.price-item { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; padding: 0.55rem 0; border-bottom: 1px dashed rgba(145,120,97,0.06); }
.price-item:last-child { border-bottom: none; }
.price-name { color: var(--chocolate); font-weight: 600; font-size: 0.95rem; }
.price-cost { color: var(--taupe); font-weight: 700; min-width: 78px; text-align: right; }
.price-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.price-table th, .price-table td { padding: 0.6rem 0.5rem; border-bottom: 1px solid rgba(145,120,97,0.06); font-size: 0.95rem; }
.price-table th { text-align: left; color: var(--taupe); font-weight: 700; }
.price-table td { color: var(--chocolate); }
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } .price-cost { min-width: 64px; } }
@media print { .pricing-section { page-break-inside: avoid; } }

/* ─────────────────────────────────────────
    PHILOSOPHY SECTION
───────────────────────────────────────── */
.philosophy { background: var(--white); }
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}
.philosophy-img-wrap {
    position: relative;
}
.philosophy-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: clamp(400px, 55vw, 620px);
    background:
    linear-gradient(170deg, rgba(74,41,23,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 60%, #d4b89a 0%, #a0724a 35%, #5c3018 80%),
    url('../images/btcty.png');
    background-size: cover, cover, cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    box-shadow: var(--shadow-hover);
}
/* Decorative offset frame */
.philosophy-img-frame {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70%;
    height: 70%;
    border: 2px solid var(--nude);
    border-radius: var(--radius-lg);
    z-index: -1;
}
/* Floating accent card */
.philosophy-accent {
    position: absolute;
    top: 40px;
    right: -28px;
    background: var(--chocolate);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-hover);
    min-width: 120px;
}
.philosophy-accent-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    display: block;
}
.philosophy-accent-text {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 4px;
}

.philosophy-text { max-width: 520px; }
.philosophy-text .ornament { margin-bottom: 1.25rem; }
.philosophy-text h2 { margin-bottom: 1.5rem; }
.philosophy-text p {
    font-size: 1.02rem;
    color: var(--chocolate-mid);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.philosophy-pillars {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.pillar {
    background: var(--nude-light);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    border-left: 2px solid var(--taupe);
}
.pillar-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.3rem;
}
.pillar-text {
    font-size: 0.85rem;
    color: var(--chocolate-mid);
}

/* Single-column variant (image removed) — center text & widen content */
.philosophy-grid.philosophy-grid--single {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    justify-items: center;
}
.philosophy-grid.philosophy-grid--single .philosophy-text {
    max-width: 760px;
    text-align: center;
}
.philosophy-grid.philosophy-grid--single .philosophy-pillars {
    margin-top: 2rem;
    justify-content: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.philosophy-grid.philosophy-grid--single .pillar { text-align: center; }

/* ─────────────────────────────────────────
    PROCESS SECTION
───────────────────────────────────────── */
.process { background: var(--nude-light); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
/* Connecting line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--taupe-light), transparent);
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--nude-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
}
.process-step:hover .step-num {
    background: var(--chocolate);
    border-color: var(--chocolate);
}
.step-num-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--taupe);
    font-style: italic;
    transition: color var(--transition);
}
.process-step:hover .step-num-text { color: var(--white); }
.step-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.step-desc {
    font-size: 0.85rem;
    color: var(--taupe);
    line-height: 1.6;
}

/* ─────────────────────────────────────────
    BOOKING FORM SECTION
───────────────────────────────────────── */
.booking {
    background:
    linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-mid) 60%, #8b5a35 100%);
    position: relative;
    overflow: hidden;
}
.booking::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.booking::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.booking-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}
.booking-copy { padding-top: 1rem; }
.booking-copy .ornament::before,
.booking-copy .ornament::after { background: rgba(255,255,255,0.4); }
.booking-copy h2 { color: var(--white); margin-bottom: 1.25rem; }
.booking-offer {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    margin: 1.5rem 0 2rem;
}
.booking-offer-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1;
    display: block;
}
.booking-offer-text {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.booking-copy p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
}

/* The form */
.booking-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 2.75rem);
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

/* Centered single-column layout when copy is removed */
.booking-inner.booking-inner--centered {
    grid-template-columns: 1fr;
    justify-items: center;
}
.booking-inner.booking-inner--centered .booking-form-wrap {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--chocolate);
    margin-bottom: 0.5rem;
}
.form-sub {
    font-size: 0.82rem;
    color: var(--taupe);
    margin-bottom: 1.75rem;
}
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--taupe);
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid rgba(145, 120, 97, 0.25);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    color: var(--chocolate);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--taupe);
    box-shadow: 0 0 0 3px rgba(145, 120, 97, 0.12);
    background: var(--white);
}
.form-input::placeholder { color: rgba(145, 120, 97, 0.5); }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
    content: '↓';
    position: absolute;
    right: 1rem; top: 50%;
    transform: translateY(-50%);
    color: var(--taupe);
    font-size: 0.85rem;
    pointer-events: none;
}
.form-submit {
    width: 100%;
    padding: 1.05rem;
    background: var(--chocolate);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 0.75rem;
    box-shadow: 0 6px 24px rgba(74,41,23,0.3);
}
.form-submit:hover {
    background: var(--chocolate-mid);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(74,41,23,0.38);
}
.form-note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--taupe);
    margin-top: 1rem;
    opacity: 0.75;
}

/* ─────────────────────────────────────────
    GALLERY SECTION
───────────────────────────────────────── */
.gallery { background: var(--off-white); }
.gallery-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}
.gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 4/3;
}
.gallery-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }

/* CSS nail art image simulations for gallery */
.gnail-1 { 
    background: url('../images/Gel\ French\ Manicure.jpg'); 
    background-size: cover;
}
.gnail-2 { 
    background: url('../images/Ombre\ Nail\ Art.jpg'); 
    background-size: cover;
}

.gnail-3 { 
    background: url('../images/Classic\ Pedicure.jpg'); 
    background-size: cover;
}

.gnail-4 { 
    background: url('../images/Chrome\ Extensions.jpg'); 
    background-size: cover;
}

.gnail-5 { 
    background: url('../images/Luxury\ Nail\ Art\ Set.jpg'); 
    background-size: cover;
}

.gnail-6 { 
    background: url('../images/Minimalist\ Gel.jpg'); 
    background-size: cover;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74,41,23,0.75) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
}

/* ─────────────────────────────────────────
    TESTIMONIALS
───────────────────────────────────────── */
.testimonials { background: var(--nude); }
.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}
.star {
    width: 14px; height: 14px;
    fill: var(--taupe);
}
.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--chocolate);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--nude);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--taupe);
    font-weight: 600;
    flex-shrink: 0;
}
.author-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--chocolate);
}
.author-meta {
    font-size: 0.72rem;
    color: var(--taupe);
}

/* ─────────────────────────────────────────
    FOOTER
───────────────────────────────────────── */
.footer {
    background: var(--chocolate);
    padding: 5rem 0 0;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: 4rem;
}
.footer-brand .logo-name { color: var(--nude-light); font-size: 1.65rem; }
.footer-brand .logo-tagline { color: rgba(226, 209, 199, 0.5); }
.footer-desc {
    font-size: 0.88rem;
    color: rgba(226, 209, 199, 0.6);
    line-height: 1.8;
    margin: 1.25rem 0 2rem;
}
.footer-socials {
    display: flex;
    gap: 0.75rem;
}
.social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(226, 209, 199, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: rgba(226, 209, 199, 0.6);
}
.social-btn:hover {
    background: rgba(226, 209, 199, 0.15);
    border-color: rgba(226, 209, 199, 0.5);
    color: var(--nude-light);
}
.social-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.8; }
/* WhatsApp gets a fill */
.social-btn--wa svg { fill: currentColor; stroke: none; }

.footer-col-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nude);
    margin-bottom: 1.5rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.footer-link {
    font-size: 0.88rem;
    color: rgba(226, 209, 199, 0.6);
    transition: color var(--transition);
}
.footer-link:hover { color: var(--nude-light); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-contact-item svg {
    width: 16px; height: 16px;
    stroke: var(--taupe-light); fill: none; stroke-width: 1.8;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-text {
    font-size: 0.88rem;
    color: rgba(226, 209, 199, 0.6);
    line-height: 1.5;
}

/* Newsletter */
.newsletter-input-wrap {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(226, 209, 199, 0.2);
}
.newsletter-input {
    flex: 1;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.05);
    border: none;
    color: var(--nude-light);
    font-size: 0.85rem;
    font-family: var(--font-sans);
    outline: none;
}
.newsletter-input::placeholder { color: rgba(226, 209, 199, 0.35); }
.newsletter-btn {
    padding: 0.85rem 1.25rem;
    background: var(--taupe);
    border: none;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}
.newsletter-btn:hover { background: var(--taupe-light); }
.newsletter-note {
    font-size: 0.7rem;
    color: rgba(226, 209, 199, 0.35);
    margin-top: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(226, 209, 199, 0.1);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 0.75rem;
    color: rgba(226, 209, 199, 0.35);
}
.footer-legal {
    display: flex;
    gap: 2rem;
}
.footer-legal-link {
    font-size: 0.75rem;
    color: rgba(226, 209, 199, 0.35);
    transition: color var(--transition);
}
.footer-legal-link:hover { color: rgba(226, 209, 199, 0.7); }

/* Floating action buttons (bottom-right) */
.fab-container {
    position: fixed;
    right: clamp(12px, 2.5vw, 24px);
    bottom: clamp(12px, 2.5vw, 24px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1600;
}
.fab-btn {
    width: 52px; height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--taupe);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(26,18,8,0.18);
    transition: transform .18s var(--transition), box-shadow .18s var(--transition);
    text-decoration: none;
}
.fab-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.fab-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.fab-btn--wa { background: #25D366; color: #fff; }
.fab-btn--call { background: var(--chocolate); color: #fff; }
.fab-btn--book { background: var(--taupe-light); color: var(--chocolate); }
@media (max-width: 420px) {
    .fab-container { right: 12px; bottom: 12px; }
    .fab-btn { width: 48px; height: 48px; }
}
@media print { .fab-container { display: none !important; } }

/* ─────────────────────────────────────────
    SCROLL REVEAL ANIMATION
───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────
    RESPONSIVE — TABLET (≤ 1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-stats { display: none; }

    .services-grid {
    grid-template-columns: 1fr 1fr;
    }
    .service-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
    }
    .service-card--sm { grid-column: span 1; }
    .service-card--third { grid-column: span 1; }

    .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    .philosophy-img-frame { display: none; }
    .philosophy-accent { right: 1.5rem; }

    .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    }
    .process-steps::before { display: none; }

    .booking-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    }

    .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    }
    .gallery-item--wide { grid-column: span 2; }

    .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    }
}

/* ─────────────────────────────────────────
    RESPONSIVE — MOBILE (≤ 640px)
───────────────────────────────────────── */
@media (max-width: 640px) {
    .nav { display: none; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }

    .hero-content { max-width: 100%; }
    .hero-ctas { flex-direction: column; }
    .btn-outline { text-align: center; }

    .services-grid {
    grid-template-columns: 1fr;
    }
    .service-card--featured,
    .service-card--sm,
    .service-card--third {
    grid-column: 1 / -1;
    min-height: 280px;
    }

    .philosophy-pillars { grid-template-columns: 1fr; }

    .process-steps { grid-template-columns: 1fr; gap: 2rem; }

    .form-row--2 { grid-template-columns: 1fr; }

    .gallery-grid {
    grid-template-columns: 1fr 1fr;
    }
    .gallery-item--wide { grid-column: span 2; }

    .testimonials-track { grid-template-columns: 1fr; }
    .testimonial-card:not(:first-child) { display: none; }

    .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    }
    .gallery-header-row {
    flex-direction: column;
    align-items: flex-start;
    }
    .footer-bottom {
    flex-direction: column;
    text-align: center;
    }
}

/* Shared refactor utilities and multi-page components */
.nav-link.is-active,
.nav-link[aria-current="page"] { color: var(--taupe); }
.nav-link.is-active::after,
.nav-link[aria-current="page"]::after { width: 100%; }

/* Homepage header contrast over dark hero */
.home-page .header:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(26, 18, 8, 0.62), rgba(26, 18, 8, 0));
}
.home-page .header:not(.scrolled) .logo-name { color: var(--white); }
.home-page .header:not(.scrolled) .logo-tagline { color: rgba(250, 248, 246, 0.74); }
.home-page .header:not(.scrolled) .nav-link { color: rgba(250, 248, 246, 0.92); }
.home-page .header:not(.scrolled) .nav-link::after { background: rgba(250, 248, 246, 0.92); }
.home-page .header:not(.scrolled) .nav-link.is-active,
.home-page .header:not(.scrolled) .nav-link[aria-current="page"] { color: var(--white); }
.home-page .header:not(.scrolled) .header-cta {
    background: rgba(250, 248, 246, 0.14);
    color: var(--white);
    border: 1px solid rgba(250, 248, 246, 0.46);
    box-shadow: 0 6px 24px rgba(26, 18, 8, 0.26);
}
.home-page .header:not(.scrolled) .header-cta:hover {
    background: rgba(250, 248, 246, 0.24);
    color: var(--white);
}
.home-page .header:not(.scrolled) .menu-toggle span { background: var(--white); }
.btn-mobile-center {
    text-align: center;
    justify-content: center;
}
.hero-container {
    position: relative;
    z-index: 2;
}
.hero-label-muted { color: rgba(255,255,255,0.7); }
.hero-emphasis {
    font-style: italic;
    font-weight: 400;
}
.img-body-treatment { filter: hue-rotate(10deg) brightness(0.9); }
.booking-label-muted { color: rgba(255,255,255,0.65); }
.booking-offer-sup {
    font-size: 1.4rem;
    vertical-align: super;
}
.social-icon-fill {
    fill: currentColor;
    stroke: none;
    width: 17px;
    height: 17px;
}
.contact-block { font-style: normal; }
.footer-contact-link { text-decoration: none; }
.footer-desc-small {
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
}
.menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}
body.no-scroll { overflow: hidden; }
.form-input.field-error,
.form-select.field-error,
.form-textarea.field-error {
    border-color: #c0392b;
}
.form-submit.is-success { background: #27ae60; }

.page-hero {
    padding: clamp(8rem, 13vw, 11rem) 0 clamp(4rem, 8vw, 6rem);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(74, 41, 23, 0.06);
}
.page-hero::after {
    content: '';
    position: absolute;
    left: -220px;
    bottom: -220px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(145, 120, 97, 0.08);
}
.page-hero--about { background: linear-gradient(180deg, var(--nude-light), var(--off-white)); }
.page-hero--contact { background: linear-gradient(180deg, var(--off-white), var(--white)); }
.page-hero__content {
    max-width: 780px;
    position: relative;
    z-index: 1;
}
.page-hero__subtitle {
    max-width: 620px;
    color: var(--taupe);
    font-size: 1.02rem;
}

.about-story { background: var(--white); }
.about-story__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}
.about-story__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.about-story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-story__content p {
    color: var(--taupe);
    margin-bottom: 1rem;
}

.about-mission { background: var(--off-white); }
.about-mission__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
.about-mission__card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.5rem, 3vw, 2.25rem);
}
.about-mission__card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.about-mission__card p { color: var(--taupe); }

.about-values { background: var(--nude); }
.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.about-values__card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}
.about-values__card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.about-values__card p {
    color: var(--taupe);
    font-size: 0.92rem;
}

.about-team { background: var(--white); }
.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.about-team__card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.about-team__image {
    width: 100%;
    height: 270px;
    object-fit: cover;
}
.about-team__content { padding: 1rem 1.1rem 1.25rem; }
.about-team__name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
}
.about-team__role {
    color: var(--taupe);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.about-cta {
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-mid) 100%);
    color: var(--white);
}
.about-cta__inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.about-cta__inner p {
    color: rgba(255,255,255,0.75);
    margin: 1rem 0 1.8rem;
}

.contact-section { background: var(--off-white); }
.contact-section__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(1.5rem, 4vw, 3rem);
}
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.5rem, 3vw, 2.25rem);
}
.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-form__grid .form-group:last-child,
.contact-form__grid .form-group:nth-child(4),
.contact-form__grid .form-group:nth-child(5) {
    grid-column: 1 / -1;
}
.contact-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.5rem, 3vw, 2.25rem);
}
.contact-info__list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}
.contact-info__item {
    border: 1px solid rgba(145, 120, 97, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
}
.contact-info__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.3rem;
}
.contact-info__text {
    color: var(--chocolate);
    font-size: 0.95rem;
}
@media (max-width: 1024px) {
    .about-story__grid { grid-template-columns: 1fr; }
    .about-values__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-section__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .page-hero { padding-top: 7.5rem; }
    .about-mission__grid { grid-template-columns: 1fr; }
    .about-values__grid { grid-template-columns: 1fr; }
    .about-team__grid { grid-template-columns: 1fr; }
    .contact-form__grid { grid-template-columns: 1fr; }
}
