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

:root {
    /* Cream Theme with Orange Accent */
    --ink: #1a1a1a;
    --ink-secondary: #4a4a4a;
    --muted: #6b6b6b;
    --surface: #fdf8f3;
    --surface-elevated: hsla(48, 8%, 50%, 0.295);
    --surface-card: #ffffff;
    --accent: #ff6b35;
    --accent-hover: #aa5b41;
    --accent-glow: rgba(175, 142, 105, 0.897);
    --forest: #ff6b35;
    --clay: #ff6b35;
    --line: #e8e0d5;
    --line-light: #d9cfc2;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 12px 30px rgba(27, 26, 26, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--ink);
    background-color: var(--surface);
    background-image: none;
    line-height: 1.6;
    max-width: 100vw;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    padding: 10px 16px;
    background: var(--surface-card);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
    z-index: 999;
}

.skip-link:focus {
    left: 16px;
}

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.section.soft {
    background: var(--surface-elevated);
}

/* Service page redesign */
.service-hero {
    padding: 110px 0 70px;
    background: linear-gradient(135deg, #fff4e9 0%, #f6f2ed 45%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::after {
    content: '';
    position: absolute;
    right: -140px;
    top: -160px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.18) 0%, rgba(255, 107, 53, 0) 70%);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    align-items: center;
}

.service-hero-copy {
    grid-column: span 6;
}

.service-hero-copy h1 {
    font-size: clamp(36px, 3.8vw, 58px);
    line-height: 1.15;
    margin-bottom: 18px;
}

.service-hero-copy p {
    color: var(--muted);
    font-size: 16px;
}

.service-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 24px 0 10px;
}

.service-media {
    grid-column: 7 / span 6;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
}

.service-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.service-card {
    background: var(--ink);
    color: #ffffff;
    padding: 22px;
    border-radius: 18px;
    grid-column: span 2;
}

.service-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'Fraunces', serif;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.service-stat {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid var(--line);
}

.service-stat span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.service-stat strong {
    font-size: 20px;
    display: block;
    margin-top: 8px;
}

.service-section-alt {
    background: var(--surface-elevated);
}

.service-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    align-items: start;
}

.service-panel {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.service-panel ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.service-panel li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--ink-secondary);
    font-size: 14px;
}

.service-panel li:last-child {
    border-bottom: none;
}

.service-title-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.service-title-split p {
    max-width: 520px;
    color: var(--ink-secondary);
}

.service-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.service-type-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.service-type-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Fraunces', serif;
}

.service-process {
    border-left: 2px solid var(--line);
    padding-left: 20px;
}

.service-process-step {
    margin-bottom: 22px;
}

.service-process-step:last-child {
    margin-bottom: 0;
}

.service-process-step strong {
    display: block;
    margin-bottom: 6px;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.service-gallery figure {
    margin: 0;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.service-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-gallery figcaption {
    padding: 16px;
}

.service-faq {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.service-faq details {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--line);
    padding: 14px 18px;
}

.service-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
}

.service-cta {
    background: linear-gradient(120deg, #1e1e1e 0%, #2c2c2c 55%, #3a3a3a 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 36px;
    display: grid;
    gap: 16px;
    align-items: center;
}

.service-cta h2 {
    color: #ffffff;
}

.reveal {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.reveal.delay-1 {
    animation-delay: 0.15s;
}

.reveal.delay-2 {
    animation-delay: 0.3s;
}

.reveal.delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Projects page */
.projects-hero {
    background: linear-gradient(135deg, #fff6ee 0%, #f7f3ef 50%, #ffffff 100%);
}

.projects-featured {
    display: grid;
    gap: 28px;
    margin-top: 32px;
}

.project-feature {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 24px;
}

.project-feature.reverse .project-feature-image {
    order: 2;
}

.project-feature-image {
    grid-column: span 5;
}

.project-feature-image img {
    width: 100%;
    border-radius: 16px;
    height: 240px;
    object-fit: cover;
}

.project-feature-content {
    grid-column: span 7;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.project-location {
    display: block;
    margin: 10px 0;
    color: var(--muted);
    font-size: 14px;
}

.project-detail-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.project-detail-card {
    background: var(--surface-elevated);
    border-radius: 12px;
    padding: 14px;
    font-size: 14px;
    color: var(--ink-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.projects-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.projects-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.projects-card-content {
    padding: 16px;
}

.projects-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
}

.projects-callout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.projects-callout-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

@media (max-width: 900px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-copy,
    .service-media {
        grid-column: span 1;
    }

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

    .service-card {
        grid-column: span 1;
    }

    .service-title-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-feature {
        grid-template-columns: 1fr;
    }

    .project-feature-image,
    .project-feature-content {
        grid-column: span 1;
    }

    .project-feature.reverse .project-feature-image {
        order: 0;
    }
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 600;
    color: var(--clay);
    margin-bottom: 14px;
}

.section-title h2,
.section-title h3,
.hero h1,
.page-hero h1 {
    font-family: 'Fraunces', serif;
    letter-spacing: -0.02em;
}

.section-title h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    margin-bottom: 14px;
}

.section-lead {
    color: var(--muted);
    max-width: 620px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgb(17, 17, 16);
}

.btn-secondary {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--accent);
    color: #ffffff;
}

.top-bar {
    background: #ffffff;
    color: var(--ink-secondary);
    font-size: 13px;
    border-bottom: 1px solid var(--line);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

.top-bar a {
    color: var(--ink-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.top-bar a:hover {
    color: var(--accent);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.header-content-new {
    align-items: center;
    gap: 24px;
}

.header-content-new .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-family: 'Fraunces', serif;
    color: var(--ink);
}

.brand-new span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-new strong {
    font-size: 18px;
}

.brand-new small {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 5px;
}

.brand span {
    font-size: 17px;
}

.footer-brand img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 6px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    font-weight: 500;
}

.nav-links-new {
    gap: 22px;
}

.nav-links a {
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-secondary);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 38px;
    left: -20px;
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    min-width: 340px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: var(--shadow);
}

.dropdown-menu-wide {
    min-width: 380px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

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

.dropdown-item {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--surface-elevated);
    color: var(--ink-secondary);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--accent);
    color: #ffffff;
}

.dropdown-icon {
    font-size: 18px;
}

.header-cta {
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.header-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.header-cta-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-cta-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    box-shadow: none;
}

.header-cta-outline:hover {
    background: var(--accent);
    color: #ffffff;
}

.header-cta-solid {
    background: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--accent);
}

.mobile-menu-overlay {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 100;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-panel {
    background: var(--surface-card);
    width: min(360px, 88vw);
    height: 100%;
    padding: 24px;
    box-shadow: var(--shadow);
    overflow-y: auto;
}

.mobile-menu-tagline {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 0 18px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-secondary);
    transition: color 0.2s ease;
}

.mobile-menu-close:hover {
    color: var(--accent);
}

.mobile-nav ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.mobile-nav a {
    color: var(--ink-secondary);
    transition: color 0.2s ease;
}

.mobile-nav a:hover {
    color: var(--accent);
}

.mobile-dropdown ul {
    margin-top: 10px;
    padding-left: 14px;
    display: none;
}

.mobile-dropdown.active ul {
    display: grid;
    gap: 10px;
}

.hero {
    padding: 90px 0 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(34px, 4.6vw, 58px);
    margin-bottom: 18px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--accent-glow);
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-card {
    background: var(--surface-card);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.hero-card img {
    border-radius: 18px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.stat-item {
    padding: 14px 16px;
    background: var(--surface-elevated);
    border-radius: 14px;
    border: 1px solid var(--line);
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
}

.card {
    background: var(--surface-card);
    border-radius: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: all 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card h3 {
    margin: 14px 0 8px;
    font-size: 20px;
    color: var(--ink);
}

.card p {
    color: var(--muted);
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--accent-glow);
    display: grid;
    place-items: center;
    font-size: 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.project-card {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--surface-card);
    transition: all 0.25s ease;
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.project-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.team-portrait-top {
    object-position: 50% 37%;
}

.team-portrait-up2 {
    object-position: 50% 38%;
}


.project-card .project-body {
    padding: 18px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.process-step {
    padding: 18px;
    border-radius: 18px;
    background: var(--surface-card);
    border: 1px solid var(--line);
    transition: all 0.25s ease;
}

.process-step:hover {
    border-color: var(--accent);
}

.process-step span {
    font-weight: 700;
    color: var(--accent);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.testimonial {
    padding: 22px;
    background: var(--surface-card);
    border-radius: 18px;
    border: 1px solid var(--line);
}

.quote-mark {
    font-size: 28px;
    color: var(--accent);
}

.review-slider {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
}

.review-viewport {
    overflow: hidden;
}

.review-track {
    display: flex;
    transition: transform 0.4s ease;
}

.review-slide {
    min-width: 100%;
}

.review-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface-card);
    color: var(--ink);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.review-dots {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface-card);
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-dot.active {
    background: var(--accent);
    border-color: var(--accent);
}

.gallery-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 18px;
}

.gallery-buttons button {
    border: 1px solid var(--line);
    background: var(--surface-card);
    color: var(--ink-secondary);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-buttons button:hover,
.gallery-buttons button.active {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery-images img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.page-hero {
    padding: 90px 0 70px;
}

.hero-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
    align-items: center;
}

.hero-list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-top: 18px;
    color: var(--muted);
}

.hero-media {
    position: relative;
}

.media-card {
    position: absolute;
    right: 14px;
    bottom: -18px;
    background: var(--surface-card);
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--ink);
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.panel {
    padding: 24px;
    border-radius: 18px;
    background: var(--surface-card);
    border: 1px solid var(--line);
}

.panel ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 12px;
    color: var(--muted);
}

.cta-panel {
    background: linear-gradient(135deg, var(--accent) 0%, #e55a2b 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.cta-panel h2,
.cta-panel h3 {
    color: #ffffff;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.85);
}

.cta-panel .btn-primary {
    background: #ffffff;
    color: var(--accent);
}

.cta-panel .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    margin-top: 32px;
}

.contact-card {
    padding: 26px;
    background: var(--surface-card);
    border-radius: 20px;
    border: 1px solid var(--line);
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

form {
    display: grid;
    gap: 18px;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface-elevated);
    color: var(--ink);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: var(--muted);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
}

.contact-card {
    background: var(--surface-card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-card h2 {
    font-family: 'Fraunces', serif;
    margin-bottom: 8px;
    color: var(--ink);
}

.contact-card form > div {
    display: grid;
}

.contact-card .btn {
    width: 100%;
}

.form-response {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    border: 1px solid transparent;
}

.form-response.success {
    background: rgba(46, 125, 50, 0.12);
    border-color: rgba(46, 125, 50, 0.3);
    color: #1e4d26;
}

.form-response.error {
    background: rgba(198, 40, 40, 0.12);
    border-color: rgba(198, 40, 40, 0.3);
    color: #6d1f1f;
}

.site-footer {
    background: var(--surface-elevated);
    color: var(--ink-secondary);
    padding: 64px 0 30px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 24px;
}

.footer-brand {
    display: grid;
    gap: 14px;
}

.footer-brand p strong {
    color: var(--ink);
}

.footer-brand img {
    width: 56px;
    background: #ffffff;
    border-radius: 14px;
    padding: 6px;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: var(--ink-secondary);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.site-footer p strong {
    color: var(--ink);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--ink-secondary);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--accent);
}

.site-footer-new {
    background: #1f1f1f;
    color: #d7d2cc;
    border-top: none;
}

.site-footer-new .footer-links a {
    color: #d7d2cc;
}

.site-footer-new .footer-links a:hover {
    color: #ffffff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 36px;
}

.footer-brand-new {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
}

.footer-brand-new img {
    width: 84px;
    height: 84px;
    border-radius: 16px;
    background: #ffffff;
    padding: 8px;
}

.footer-brand-new strong {
    display: block;
    font-size: 20px;
    color: #ffffff;
}

.footer-brand-new p {
    margin-top: 8px;
    color: #cfc8c2;
}

.footer-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
}

.footer-cta h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 8px;
    font-family: 'Fraunces', serif;
}

.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.footer-grid-new {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-grid-new p strong {
    color: #ffffff;
}

.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #bfb8b2;
}

/* ==================== */
/* Contact Page Styles  */
/* ==================== */

.contact-hero-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-center h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    margin-bottom: 16px;
}

.contact-hero-center .section-lead {
    margin: 0 auto;
}

/* Trust Badges */
.trust-badges-section {
    padding: 40px 0;
    background: var(--surface-card);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-badge {
    padding: 20px;
}

.trust-icon {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.trust-text {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-form-wrapper .contact-card {
    padding: 36px;
}

.contact-form-wrapper h2 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--muted);
    margin-bottom: 24px;
}

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

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 12px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-sidebar .contact-card {
    padding: 24px;
}

.contact-sidebar h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-sidebar > .contact-card > p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 14px;
}

/* Contact Methods */
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.contact-method:last-of-type {
    border-bottom: none;
}

.contact-method-icon {
    font-size: 20px;
    width: 32px;
    text-align: center;
}

.contact-method strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-method a,
.contact-method span {
    font-size: 14px;
    color: var(--muted);
}

.contact-method a:hover {
    color: var(--accent);
}

/* Service Areas Tags */
.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-tag {
    padding: 6px 12px;
    background: var(--surface-elevated);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-secondary);
}

/* Testimonial Highlight */
.testimonial-highlight {
    background: var(--accent-glow);
    border-color: rgba(255, 107, 53, 0.3);
}

.testimonial-highlight .quote-mark {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-highlight p {
    font-style: italic;
    margin-bottom: 12px;
    color: var(--ink-secondary);
}

.testimonial-highlight strong {
    color: var(--accent);
    font-size: 14px;
}

/* Credentials Grid */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.credential-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: all 0.25s ease;
}

.credential-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.credential-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.credential-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.credential-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Select Dropdown Styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

select option {
    background: var(--surface-card);
    color: var(--ink);
}

/* ==================== */
/* Guarantees Page      */
/* ==================== */

/* Guarantee Cards */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guarantee-card {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.25s ease;
}

.guarantee-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.guarantee-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.guarantee-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    margin-bottom: 12px;
}

.guarantee-card > p {
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.guarantee-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.guarantee-list li {
    padding-left: 24px;
    position: relative;
    color: var(--ink-secondary);
    font-size: 14px;
}

.guarantee-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Quality Timeline */
.quality-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.quality-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.quality-step:last-child {
    border-bottom: none;
}

.quality-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.quality-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.quality-content p {
    color: var(--muted);
    line-height: 1.6;
}

/* Site Standards Layout */
.site-standards-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.site-standards-content h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    margin: 12px 0 16px;
}

.site-standards-content > p {
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.standard-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.standard-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.standard-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.standard-item p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.site-standards-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    box-shadow: var(--shadow);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== */
/* FAQ Page Styles      */
/* ==================== */

.faq-category {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--line);
}

.faq-category-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    background: var(--accent-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-category-header h2 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    margin-bottom: 4px;
}

.faq-category-header p {
    color: var(--muted);
    font-size: 15px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-accordion:hover {
    border-color: var(--accent);
}

.faq-accordion.active {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-question h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-accordion.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
}

.faq-answer a:hover {
    text-decoration: none;
}

/* FAQ Contact Box */
.faq-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
}

.faq-contact-content h2 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.faq-contact-content > p {
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 500px;
}

.faq-contact-methods {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.faq-contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--surface-elevated);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.faq-contact-method:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.faq-contact-icon {
    font-size: 18px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeUp 0.6s ease both;
}

@media (max-width: 1024px) {
    .hero-container,
    .hero-split,
    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .project-grid,
    .testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

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

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

    .site-standards-layout {
        grid-template-columns: 1fr;
    }

    .site-standards-image {
        order: -1;
    }

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

@media (max-width: 860px) {
    .main-nav,
    .header-content-new .main-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
    }

    .header-cta,
    .header-cta-group {
        display: none !important;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .top-bar-content > div:last-child {
        padding-left: 0;
    }

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

    .footer-grid-new {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 32px;
    }

    .footer-grid-new p strong {
        font-size: 15px;
        display: block;
        margin-bottom: 12px;
    }

    .footer-cta-actions .btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .footer-brand-new {
        grid-template-columns: auto 1fr !important;
    }
}

@media (max-width: 720px) {
    .service-grid,
    .project-grid,
    .testimonials,
    .gallery-images {
        grid-template-columns: 1fr;
    }

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

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 70px 0;
    }

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

    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .trust-badge {
        padding: 16px 10px;
    }

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

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

    .footer-brand-new {
        grid-template-columns: 1fr !important;
    }

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

    .contact-form-wrapper .contact-card {
        padding: 24px;
    }

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

    .guarantee-card {
        padding: 24px;
    }

    .quality-step {
        flex-direction: column;
        gap: 16px;
    }

    .faq-category-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 14px;
    }

    .faq-contact-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .faq-contact-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .faq-contact-methods {
        justify-content: center;
    }
}

/* About Page Styles */
.about-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2 {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 24px;
}

.about-story-content p {
    color: var(--ink-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.signature-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.story-signature strong {
    display: block;
    font-size: 16px;
    color: var(--ink);
}

.story-signature span {
    font-size: 13px;
    color: var(--muted);
}

.about-story-image img {
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--surface-card);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.value-number {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-glow);
    line-height: 1;
    margin-bottom: 16px;
}

.value-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--ink-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--surface-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.team-photo {
    height: 280px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.team-info {
    padding: 28px;
}

.team-info h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.team-info > p {
    font-size: 14px;
    color: var(--ink-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-responsibilities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-responsibilities li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
}

.team-responsibilities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.approach-item {
    background: var(--surface-card);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    text-align: center;
}

.approach-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.approach-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

.approach-item p {
    font-size: 14px;
    color: var(--ink-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Areas Showcase */
.areas-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.area-group h3 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
}

.areas-note {
    text-align: center;
    padding: 24px;
    background: var(--surface-elevated);
    border-radius: 12px;
}

.areas-note p {
    font-size: 14px;
    color: var(--ink-secondary);
    margin: 0;
}

/* Testimonial Highlight */
.testimonial-highlight {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-highlight-content {
    background: var(--surface-card);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.testimonial-highlight .quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 80px;
    color: var(--accent);
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 20px;
    color: var(--ink);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--muted);
}

/* About Page Responsive */
@media (max-width: 1000px) {
    .about-story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-image {
        order: -1;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .about-story-content h2 {
        font-size: 26px;
    }

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

    .value-card {
        padding: 24px;
    }

    .value-number {
        font-size: 36px;
    }

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

    .areas-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-highlight-content {
        padding: 30px;
    }

    .testimonial-quote {
        font-size: 17px;
    }

    .testimonial-highlight .quote-mark {
        font-size: 60px;
    }
}

/* Reviews Page Styles */
.rating-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.rating-number {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.rating-stars {
    font-size: 28px;
    color: #f5b342;
    letter-spacing: 4px;
    margin: 8px 0;
}

.rating-source {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rating-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.rating-stat strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.rating-stat span {
    font-size: 13px;
    color: var(--muted);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.review-card {
    background: var(--surface-card);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.review-card.featured {
    border: 2px solid var(--accent);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-meta strong {
    display: block;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 2px;
}

.review-stars {
    color: #f5b342;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-badge {
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 999px;
}

.review-content {
    flex: 1;
}

.review-content p {
    color: var(--ink-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.review-content p:last-child {
    margin-bottom: 0;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.review-service {
    background: var(--surface-elevated);
    color: var(--ink-secondary);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 999px;
}

.review-verified {
    font-size: 12px;
    color: var(--muted);
}

/* Review Highlights */
.review-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-highlight {
    display: flex;
    gap: 20px;
    background: var(--surface-card);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 14px;
    color: var(--ink-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Reviews Page Responsive */
@media (max-width: 900px) {
    .rating-hero {
        flex-direction: column;
        gap: 30px;
    }

    .rating-stats {
        justify-content: center;
    }

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

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

    .review-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .rating-number {
        font-size: 56px;
    }

    .rating-stats {
        gap: 24px;
    }

    .rating-stat strong {
        font-size: 26px;
    }

    .reviews-grid-small {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 22px;
    }

    .review-highlight {
        flex-direction: column;
        gap: 12px;
        padding: 22px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Medium mobile header improvements */
    .top-bar-content {
        font-size: 12px;
        gap: 10px;
    }

    .brand-mark {
        width: 50px;
        height: 50px;
    }

    .brand-new strong {
        font-size: 16px;
    }

    .brand-new small {
        font-size: 11px;
    }

    .container {
        width: min(1180px, 90vw);
    }

    /* Medium mobile footer improvements */
    .footer-brand-new img {
        width: 70px;
        height: 70px;
    }

    .footer-brand-new strong {
        font-size: 17px;
    }

    .footer-cta h3 {
        font-size: 20px;
    }

    .footer-bottom-new {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

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

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

/* Process Page Timeline */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-timeline-item:last-child {
    margin-bottom: 0;
}

.process-timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, var(--accent) 0%, var(--line) 100%);
}

.process-timeline-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 1;
}

.process-timeline-content {
    flex: 1;
    background: var(--surface-card);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.process-timeline-header {
    margin-bottom: 12px;
}

.process-phase {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.process-timeline-header h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.process-timeline-desc {
    color: var(--ink-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.process-timeline-details {
    background: var(--surface-elevated);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-detail strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    display: block;
    margin-bottom: 6px;
}

.process-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-detail ul li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: var(--ink-secondary);
    line-height: 1.7;
}

.process-detail ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.process-detail > p,
.process-detail:not(:has(ul)) {
    font-size: 14px;
    color: var(--ink-secondary);
}

/* Payment Stages */
.payment-stages {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.payment-stage {
    background: var(--surface-card);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-stage:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.payment-stage-header {
    margin-bottom: 12px;
}

.payment-percent {
    display: inline-block;
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.payment-stage-header h3 {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.payment-stage > p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Process Page Responsive */
@media (max-width: 900px) {
    .payment-stages {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .process-timeline-item {
        flex-direction: column;
        gap: 16px;
    }

    .process-timeline-item:not(:last-child)::before {
        display: none;
    }

    .process-timeline-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .process-timeline-content {
        padding: 24px;
    }

    .process-timeline-header h3 {
        font-size: 19px;
    }

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

    .payment-percent {
        font-size: 28px;
    }

    .payment-stage-header h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .payment-stages {
        grid-template-columns: 1fr;
    }

    .payment-stage {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }

    .payment-stage-header {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .payment-percent {
        font-size: 24px;
        margin-bottom: 4px;
    }

    /* Enhanced mobile header improvements */
    .top-bar {
        font-size: 11px;
    }

    .top-bar-content {
        padding: 10px 0;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar-content > div {
        width: 100%;
    }

    .top-bar span:not(.top-bar-content span) {
        display: none;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-new strong {
        font-size: 14px;
    }

    .brand-new small {
        font-size: 9px;
    }

    .header-content,
    .header-content-new {
        padding: 10px 0;
    }

    .container {
        width: min(1180px, 88vw);
    }

    .main-nav,
    .header-content-new .main-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
    }

    .header-cta,
    .header-cta-group {
        display: none !important;
    }

    /* Enhanced mobile footer improvements */
    .footer-top {
        gap: 20px;
        padding-bottom: 24px;
        margin-bottom: 24px;
        grid-template-columns: 1fr !important;
    }

    .footer-brand-new {
        grid-template-columns: auto 1fr !important;
    }

    .footer-brand-new img {
        width: 55px;
        height: 55px;
    }

    .footer-brand-new strong {
        font-size: 15px;
    }

    .footer-brand-new p {
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-cta {
        padding: 16px;
    }

    .footer-cta h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .footer-cta p {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-cta-actions {
        margin-top: 12px;
        gap: 8px;
        flex-direction: column;
    }

    .footer-cta-actions .btn {
        width: 100%;
        font-size: 13px;
        padding: 11px 18px;
    }

    .footer-grid-new {
        gap: 24px;
        grid-template-columns: 1fr !important;
    }

    .footer-grid-new p strong {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-links {
        font-size: 13px;
        gap: 8px;
    }

    .footer-bottom-new {
        padding-top: 18px;
        margin-top: 18px;
        font-size: 11px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 6px;
        line-height: 1.6;
    }

    .site-footer {
        padding: 35px 0 25px;
    }

    .site-footer-new {
        padding: 35px 0 25px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    display: block;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #1a1a1a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* WhatsApp Button - Mobile Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
