/* =======================================================
   LALOR DRY CLEANING — STYLESHEET
   Modern, elegant, no frameworks
   ======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --teal-deep: #0D6878;
    --teal-dark: #084651;
    --teal-darker: #052E36;
    --gold: #C9A467;
    --gold-light: #E2C589;
    --cream: #F8F4ED;
    --off-white: #FCFAF6;
    --charcoal: #1A2B30;
    --text: #2C3E44;
    --muted: #6B7B82;
    --border: #E8E0D2;
    --shadow-sm: 0 2px 12px rgba(13, 104, 120, 0.06);
    --shadow-md: 0 8px 30px rgba(13, 104, 120, 0.10);
    --shadow-lg: 0 20px 60px rgba(13, 104, 120, 0.15);
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background: var(--off-white);
    overflow-x: hidden;
}

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

a {
    color: var(--teal-deep);
    text-decoration: none;
    transition: color var(--transition);
}

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

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--teal-deep);
    color: white;
}

.btn-primary:hover {
    background: var(--teal-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--teal-deep);
    border: 1.5px solid var(--teal-deep);
}

.btn-outline:hover {
    background: var(--teal-deep);
    color: white;
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn .arrow {
    transition: transform var(--transition);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* ---------- HEADER / NAV ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(252, 250, 246, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(252, 250, 246, 0.95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo:hover {
    color: var(--charcoal);
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--teal-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    flex-shrink: 0;
}

.logo-text small {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--teal-deep);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--teal-deep);
    color: white !important;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--teal-dark);
    color: white !important;
    transform: translateY(-1px);
}

a.nav-cta {
    padding: 11px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--charcoal);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 5px 0;
    transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 164, 103, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 104, 120, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-deep);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* ---------- LIVE OPEN/CLOSED STATUS CHIP ---------- */
.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 16px 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    transition: border-color var(--transition);
}

.status-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #B0B7BB;
    flex-shrink: 0;
}

.status-dot::before,
.status-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0;
}

.status-chip.is-open .status-dot { background: #16A34A; }
.status-chip.is-closing .status-dot { background: #F59E0B; }
.status-chip.is-closed .status-dot { background: #DC2626; }

.status-chip.is-open { border-color: rgba(22,163,74,0.30); }
.status-chip.is-closing { border-color: rgba(245,158,11,0.40); }
.status-chip.is-closed { border-color: rgba(220,38,38,0.30); }

.status-chip.is-open .status-dot::before {
    animation: status-pulse 2.2s ease-out infinite;
    opacity: 0.55;
}

.status-chip.is-closing .status-dot::before {
    animation: status-pulse 1.4s ease-out infinite;
    opacity: 0.6;
}

@keyframes status-pulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    70%  { transform: scale(2.6); opacity: 0; }
    100% { transform: scale(2.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .status-chip .status-dot::before { animation: none !important; }
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    margin-bottom: 24px;
}

.hero h1 .accent {
    font-style: italic;
    color: var(--teal-deep);
    font-weight: 400;
}

.hero-lede {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--teal-deep);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 6px;
}

/* hero image / collage */
.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
}

.hero-visual-frame {
    position: absolute;
    inset: 0;
    background: var(--cream);
    border-radius: 200px 200px 24px 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}

.hero-badge-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.hero-badge-text strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--charcoal);
    line-height: 1;
}

.hero-badge-text span {
    font-size: 0.78rem;
    color: var(--muted);
}

.hero-tag {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--teal-deep);
    color: white;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

/* ---------- SECTION SHARED ---------- */
section {
    padding: 100px 0;
    position: relative;
}

.section-eyebrow {
    display: block;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-head p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-top: 16px;
}

.section-head--left {
    text-align: left;
    margin-left: 0;
}

/* ---------- SERVICES PREVIEW ---------- */
.services-preview {
    background: var(--off-white);
}

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

.service-card {
    padding: 40px 32px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--teal-deep);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--teal-deep);
    color: white;
    transform: rotate(-6deg);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ---------- ABOUT STRIP ---------- */
.about-strip {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    aspect-ratio: 5 / 6;
}

.about-image-main {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-quote-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--teal-deep);
    color: white;
    padding: 32px;
    border-radius: 20px;
    max-width: 280px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-quote-card .quote-mark {
    font-family: var(--serif);
    font-size: 3rem;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 8px;
}

.about-quote-card p {
    font-style: italic;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--muted);
    margin-bottom: 16px;
}

.about-features {
    list-style: none;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ---------- TESTIMONIAL ---------- */
.testimonials {
    background: var(--off-white);
}

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

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.testimonial-card p {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--cream);
}

.testimonial-author-meta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 600;
}

.testimonial-author-meta span {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
    background: var(--teal-darker);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 164, 103, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-strip h2 {
    color: white;
    margin: 0;
    max-width: 640px;
}

.cta-strip h2 .accent {
    font-style: italic;
    color: var(--gold);
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-col h4 {
    color: white;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-contact-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.footer-contact-row .icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

/* ---------- PAGE HEADER (sub-pages) ---------- */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 60%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 104, 120, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 164, 103, 0.10) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 24px;
}

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

.breadcrumb a:hover {
    color: var(--teal-deep);
}

.breadcrumb-sep {
    color: var(--gold);
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    color: var(--muted);
    font-size: 1.1rem;
    margin: 0;
}

/* ---------- SERVICES PAGE FULL GRID ---------- */
.services-full {
    background: var(--off-white);
}

.service-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-detail-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all var(--transition);
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-deep);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-card h3 {
    margin-bottom: 12px;
}

.service-detail-card p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    display: grid;
    gap: 8px;
}

.service-features li {
    color: var(--text);
    font-size: 0.9rem;
    padding-left: 22px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* process timeline */
.process {
    background: var(--cream);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    counter-reset: step;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.process-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.process-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gold);
    color: var(--teal-deep);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}

.process-step:hover .process-num {
    background: var(--teal-deep);
    color: white;
    transform: scale(1.05);
}

.process-step h4 {
    margin-bottom: 8px;
    color: var(--charcoal);
}

.process-step p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ---------- SPECIALTIES ---------- */
.specialty-feature {
    background: var(--off-white);
}

.specialty-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.specialty-row:last-child {
    margin-bottom: 0;
}

.specialty-row.reverse > :first-child {
    order: 2;
}

.specialty-image {
    aspect-ratio: 5 / 4;
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.specialty-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.specialty-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, #EFE8D8 100%);
    color: var(--teal-deep);
    position: relative;
}

.specialty-image-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: var(--teal-deep);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.specialty-content h2 {
    margin-bottom: 20px;
}

.specialty-content > p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.specialty-list {
    list-style: none;
    margin-bottom: 32px;
}

.specialty-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.specialty-list li:last-child {
    border-bottom: none;
}

.specialty-list .check {
    width: 28px;
    height: 28px;
}

/* ---------- VALUES ---------- */
.values {
    background: var(--cream);
}

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

.value-card {
    text-align: center;
    padding: 40px 28px;
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gold);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-deep);
    transition: all var(--transition);
}

.value-card:hover .value-icon {
    background: var(--teal-deep);
    color: white;
    transform: rotate(-8deg);
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ---------- ABOUT FULL PAGE ---------- */
.about-story {
    background: var(--off-white);
}

.story-content {
    max-width: 760px;
    margin: 0 auto;
}

.story-content p {
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-content p:first-of-type::first-letter {
    font-family: var(--serif);
    font-size: 4.5rem;
    line-height: 0.85;
    float: left;
    margin: 6px 14px 0 0;
    color: var(--teal-deep);
    font-weight: 600;
}

.story-pull {
    margin: 56px 0;
    padding: 36px 40px;
    border-left: 4px solid var(--gold);
    background: var(--cream);
    border-radius: 0 16px 16px 0;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--charcoal);
    font-style: italic;
    line-height: 1.4;
}

/* ---------- REVIEWS PAGE ---------- */
.reviews-summary {
    background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
    padding: 80px 0;
}

.reviews-summary-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
    max-width: 880px;
    margin: 0 auto;
}

.rating-big {
    text-align: center;
}

.rating-big .num {
    font-family: var(--serif);
    font-size: 5rem;
    color: var(--teal-deep);
    line-height: 1;
}

.rating-big .stars {
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin: 12px 0 8px;
}

.rating-big .total {
    color: var(--muted);
    font-size: 0.95rem;
}

.rating-bars {
    display: grid;
    gap: 10px;
}

.rating-bar {
    display: grid;
    grid-template-columns: 30px 1fr 50px;
    align-items: center;
    gap: 12px;
}

.rating-bar-label {
    font-size: 0.9rem;
    color: var(--muted);
}

.rating-bar-track {
    height: 8px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 999px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.rating-bar.in-view .rating-bar-fill {
    transform: scaleX(var(--scale, 1));
}

.rating-bar-pct {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: right;
}

.reviews-list {
    background: var(--off-white);
    padding-bottom: 100px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    color: var(--teal-deep);
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-meta strong {
    display: block;
    color: var(--charcoal);
    font-size: 0.98rem;
}

.review-meta span {
    color: var(--muted);
    font-size: 0.82rem;
}

.review-stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.review-card p {
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
}

.review-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    background: var(--cream);
    color: var(--teal-deep);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.contact-info-card h3 {
    margin-bottom: 24px;
}

.contact-info-block {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    align-items: center;
}

.contact-info-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-block:first-child {
    padding-top: 0;
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 12px;
    color: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-block strong {
    display: block;
    color: var(--charcoal);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-block a,
.contact-info-block span {
    color: var(--text);
    font-size: 1rem;
}

.contact-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--sans);
    font-size: 0.98rem;
    color: var(--text);
    background: var(--off-white);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-deep);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 104, 120, 0.08);
}

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

.form-msg {
    display: none;
    padding: 14px 18px;
    background: rgba(13, 104, 120, 0.08);
    color: var(--teal-deep);
    border-radius: 12px;
    margin-top: 16px;
    font-size: 0.95rem;
    border-left: 3px solid var(--teal-deep);
}

.form-msg.show {
    display: block;
    animation: slide-in 0.5s var(--transition);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--border);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    color: var(--muted);
    font-weight: 500;
}

.hours-row .time {
    color: var(--charcoal);
    font-weight: 500;
}

.hours-row.closed .time {
    color: var(--muted);
}

.hours-row.today {
    color: var(--teal-deep);
}

.hours-row.today .day,
.hours-row.today .time {
    color: var(--teal-deep);
    font-weight: 600;
}

.map-frame {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 21 / 9;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

@keyframes slide-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
    .hero-grid,
    .about-grid,
    .specialty-row,
    .specialty-row.reverse > :first-child,
    .contact-grid,
    .reviews-summary-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .specialty-row.reverse > :first-child { order: 0; }

    .hero-visual { margin: 0 auto; }
    .about-quote-card { right: 20px; bottom: -20px; }

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

    .service-detail { grid-template-columns: 1fr; }

    .process-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 40px 16px;
    }

    .process-timeline::before { display: none; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 700px) {
    section { padding: 70px 0; }
    .hero { padding: 140px 0 80px; }
    .page-header { padding: 130px 0 50px; }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform var(--transition);
        align-items: flex-start;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .menu-toggle { display: block; }

    .service-grid,
    .testimonial-grid,
    .values-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-stats { flex-wrap: wrap; gap: 24px; }

    .form-row { grid-template-columns: 1fr; }

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

    .reviews-summary-inner { gap: 40px; }
}
