/* ===================================================================
   Wallpaper Hanging By Alex — Global Stylesheet
   Palette: Iron Plum / Pearl / Silvered Lilac
   =================================================================== */

/* Google Fonts loaded via <link> in HTML for better performance */

/* CLS prevention: fallback fonts sized to match Inter and Cormorant Garamond
   so text doesn't shift when web fonts load */
@font-face {
    font-family: 'Inter-fallback';
    src: local('Arial');
    size-adjust: 107%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
}
@font-face {
    font-family: 'Cormorant-fallback';
    src: local('Georgia');
    size-adjust: 118%;
    ascent-override: 85%;
    descent-override: 22%;
    line-gap-override: 0%;
}

/* ---------- Custom Properties ---------- */
:root {
    --clr-primary: #1A0F17;
    --clr-primary-deep: #0B060A;
    --clr-sand: #F2ECE5;
    --clr-text-light: #FBF6EF;
    --clr-text-dark: #2A2127;
    --clr-accent: #A79BC7;
    --clr-accent-hover: #8b7db3;
    --clr-accent-glow: rgba(167,155,199,0.25);

    --ff-heading: 'Cormorant Garamond', 'Cormorant-fallback', Georgia, serif;
    --ff-body: 'Inter', 'Inter-fallback', system-ui, sans-serif;

    --radius: 11px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.18);
    --shadow-soft: 0 2px 12px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
    --max-w: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--clr-text-light);
    background: var(--clr-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 109px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-heading); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 12px; }
p { margin-bottom: 16px; }

.section-subtitle {
    font-family: var(--ff-body);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto 36px;
    opacity: 0.85;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--clr-accent);
    border: none;
    margin: 18px auto 30px;
    border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54px;
    padding: 0 32px;
    border-radius: var(--radius);
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}
.btn-accent {
    background: var(--clr-accent);
    color: var(--clr-primary-deep);
    box-shadow: 0 4px 16px var(--clr-accent-glow);
}
.btn-accent:hover {
    background: var(--clr-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--clr-accent-glow);
}
.btn-outline {
    background: transparent;
    color: var(--clr-text-light);
    border: 2px solid rgba(251,246,239,0.3);
}
.btn-outline:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}
.btn-sand {
    background: var(--clr-primary);
    color: var(--clr-text-light);
}
.btn-sand:hover {
    background: var(--clr-accent);
    color: var(--clr-primary-deep);
}

/* ===================================================================
   TOP BAR
   =================================================================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--clr-primary-deep);
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(167,155,199,0.1);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a {
    color: var(--clr-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar a:hover { color: #fff; }
.top-bar .top-bar-left { display: flex; align-items: center; gap: 6px; font-style: italic; color: rgba(251,246,239,0.6); }
.top-bar .top-bar-right { display: flex; align-items: center; gap: 18px; }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-header {
    position: fixed;
    top: 37px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--clr-primary);
    border-bottom: 1px solid rgba(167,155,199,0.08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-family: var(--ff-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--clr-text-light);
    letter-spacing: -0.01em;
}
.logo span { color: var(--clr-accent); }

/* Main nav */
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li > a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(251,246,239,0.88);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    color: var(--clr-accent);
    background: rgba(167,155,199,0.08);
}

/* Dropdown arrow */
.has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: 2px;
    transition: transform var(--transition);
}
.has-dropdown:hover > a::after { transform: rotate(-135deg); }

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--clr-primary);
    border: 1px solid rgba(167,155,199,0.15);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    padding: 10px 0;
    z-index: 100;
}
.has-dropdown { position: relative; }
.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered dropdown item animation */
.dropdown-menu li {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.has-dropdown:hover .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}
.has-dropdown:hover .dropdown-menu li:nth-child(1) { transition-delay: 0.03s; }
.has-dropdown:hover .dropdown-menu li:nth-child(2) { transition-delay: 0.06s; }
.has-dropdown:hover .dropdown-menu li:nth-child(3) { transition-delay: 0.09s; }
.has-dropdown:hover .dropdown-menu li:nth-child(4) { transition-delay: 0.12s; }
.has-dropdown:hover .dropdown-menu li:nth-child(5) { transition-delay: 0.15s; }
.has-dropdown:hover .dropdown-menu li:nth-child(6) { transition-delay: 0.18s; }
.has-dropdown:hover .dropdown-menu li:nth-child(7) { transition-delay: 0.21s; }
.has-dropdown:hover .dropdown-menu li:nth-child(8) { transition-delay: 0.24s; }
.has-dropdown:hover .dropdown-menu li:nth-child(9) { transition-delay: 0.27s; }
.has-dropdown:hover .dropdown-menu li:nth-child(10) { transition-delay: 0.30s; }
.has-dropdown:hover .dropdown-menu li:nth-child(11) { transition-delay: 0.33s; }
.has-dropdown:hover .dropdown-menu li:nth-child(12) { transition-delay: 0.36s; }

.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 9px 24px;
    color: rgba(251,246,239,0.85);
    font-size: 0.88rem;
    font-weight: 400;
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
    border-left: 3px solid transparent;
}
.dropdown-menu li a:hover {
    background: rgba(167,155,199,0.1);
    color: var(--clr-accent);
    padding-left: 30px;
    border-left-color: var(--clr-accent);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--clr-text-light);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,15,23,0.56) 0%, rgba(11,6,10,0.42) 100%);
}
.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.hero-content h1 {
    color: var(--clr-text-light);
    margin-bottom: 22px;
}
.hero-content .hero-taglines {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(251,246,239,0.9);
    margin-bottom: 28px;
    line-height: 1.9;
}
.hero-content .hero-taglines strong {
    display: block;
    font-weight: 600;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; min-height: 54px; }

/* ===================================================================
   FORM STYLES
   =================================================================== */
.feedback-form-container {
    background: rgba(26,15,23,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(167,155,199,0.2);
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: var(--shadow);
    min-height: 460px;
}
.feedback-form-container h2,
.feedback-form-container h3 {
    font-family: var(--ff-heading);
    color: var(--clr-text-light);
    text-align: center;
    margin-bottom: 22px;
    font-size: 22px;
    line-height: 1.2;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.form-group { margin-bottom: 0; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(251,246,239,0.06);
    border: 1px solid rgba(167,155,199,0.25);
    border-radius: var(--radius-sm);
    color: var(--clr-text-light);
    font-family: var(--ff-body);
    font-size: 14px;
    line-height: 1.4;
    height: 50px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(251,246,239,0.45);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px var(--clr-accent-glow);
}
.form-group textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
    margin-top: 14px;
}
.form-submit { margin-top: 18px; }
.submit-btn {
    width: 100%;
    height: 54px;
    background: var(--clr-accent);
    color: var(--clr-primary-deep);
    border: none;
    border-radius: var(--radius);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px var(--clr-accent-glow);
}
.submit-btn:hover {
    background: var(--clr-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--clr-accent-glow);
}
#form-success p {
    text-align: center;
    color: var(--clr-accent);
    font-weight: 500;
    padding: 20px;
}

/* ===================================================================
   TRUST / WHY US SECTION
   =================================================================== */
.trust-section { background: var(--clr-sand); color: var(--clr-text-dark); }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.trust-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}
.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--clr-accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--clr-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.trust-card h3 { color: var(--clr-text-dark); font-size: 1.15rem; }
.trust-card p { color: rgba(42,33,39,0.78); font-size: 0.9rem; margin-bottom: 0; }

/* ===================================================================
   SERVICE CARDS
   =================================================================== */
.services-section { background: var(--clr-primary-deep); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--clr-primary);
    border: 1px solid rgba(167,155,199,0.12);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}
.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-card-body h3 { color: var(--clr-text-light); }
.service-card-body p {
    color: rgba(251,246,239,0.75);
    font-size: 0.9rem;
    flex: 1;
}
.service-card-body .btn {
    margin-top: 16px;
    align-self: flex-start;
}

/* ===================================================================
   CONTENT / SEO TEXT SECTION
   =================================================================== */
.content-section { background: var(--clr-sand); color: var(--clr-text-dark); }
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.content-intro {
    max-width: 820px;
    margin: 0 auto 28px;
}
.content-intro h2 {
    color: var(--clr-text-dark);
    margin-bottom: 10px;
}
.content-intro p {
    color: rgba(42,33,39,0.8);
    margin: 0 auto;
}
.content-grid-longform {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}
.content-images-showcase {
    grid-template-columns: 1fr;
    gap: 12px;
}
.content-stack {
    display: grid;
    gap: 14px;
}
.content-card {
    background: #fff;
    border: 1px solid rgba(42,33,39,0.12);
    border-left: 4px solid var(--clr-accent);
    border-radius: var(--radius-sm);
    padding: 16px 16px 14px;
    box-shadow: 0 6px 18px rgba(31, 25, 20, 0.08);
}
.content-card h3 {
    color: var(--clr-text-dark);
    font-size: 1.06rem;
    margin-bottom: 8px;
}
.content-card p {
    color: rgba(42,33,39,0.8);
    margin: 0;
}
.content-text h2 { color: var(--clr-text-dark); }
.content-text p { color: rgba(42,33,39,0.8); }
.content-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.content-images img {
    border-radius: var(--radius);
    border: 3px solid var(--clr-accent);
    box-shadow: var(--shadow-soft);
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery-section { background: var(--clr-primary); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(167,155,199,0.12);
    transition: transform var(--transition), border-color var(--transition);
}
.gallery-grid img:hover {
    transform: scale(1.03);
    border-color: var(--clr-accent);
}

/* ===================================================================
   SERVICE AREAS GRID
   =================================================================== */
.areas-section { background: var(--clr-primary-deep); }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.area-card {
    background: var(--clr-primary);
    border: 1px solid rgba(167,155,199,0.12);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}
.area-card:hover {
    transform: translateY(-3px);
    border-color: var(--clr-accent);
}
.area-card a {
    color: var(--clr-text-light);
    font-weight: 500;
    font-size: 0.95rem;
}
.area-card:hover a { color: var(--clr-accent); }

/* Light variant used on the homepage after matching the reference layout */
.section-white.areas-section {
    background: #fff;
    color: var(--clr-text-dark);
}
.section-white.areas-section .section-header h2,
.section-white.areas-section .section-header p {
    color: var(--clr-text-dark);
}
.section-white.areas-section .area-card {
    background: #fff;
    border: 1px solid rgba(42,33,39,0.12);
}
.section-white.areas-section .area-card span,
.section-white.areas-section .area-card a {
    color: var(--clr-text-dark);
}
.section-white.areas-section .area-card:hover {
    border-color: var(--clr-accent);
}
.section-white.areas-section .area-card:hover span,
.section-white.areas-section .area-card:hover a {
    color: var(--clr-accent);
}

/* ===================================================================
   MAP SECTION
   =================================================================== */
.map-section { background: var(--clr-sand); color: var(--clr-text-dark); }
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--clr-accent);
    box-shadow: var(--shadow);
    margin-top: 20px;
}
.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-deep) 100%);
    text-align: center;
    padding: 70px 0;
}
.cta-section h2 { color: var(--clr-text-light); margin-bottom: 14px; }
.cta-section p { color: rgba(251,246,239,0.78); max-width: 600px; margin: 0 auto 28px; }

/* ===================================================================
   PAGE HERO (inner pages)
   =================================================================== */
.page-hero {
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
    overflow: hidden;
}
.page-hero-img {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero-img .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-img .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-img .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,15,23,0.85) 0%, rgba(26,15,23,0.95) 100%);
}
.page-hero-img .container {
    position: relative;
    z-index: 1;
}
.page-hero-img h1 {
    color: var(--clr-text-light);
    margin-bottom: 12px;
}
.page-hero-img p {
    color: rgba(251,246,239,0.78);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(251,246,239,0.5); }

/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-story img {
    border-radius: var(--radius);
    border: 3px solid var(--clr-accent);
    box-shadow: var(--shadow);
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--clr-primary);
    border: 1px solid rgba(167,155,199,0.12);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
}
.value-card h3 { color: var(--clr-text-light); }
.value-card p { color: rgba(251,246,239,0.75); font-size: 0.9rem; margin-bottom: 0; }

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.contact-info-card {
    background: var(--clr-primary);
    border: 1px solid rgba(167,155,199,0.12);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: border-color var(--transition);
}
.contact-info-card:hover { border-color: var(--clr-accent); }
.contact-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: var(--clr-accent-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--clr-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-info-card h3 { color: var(--clr-text-light); font-size: 1.1rem; }
.contact-info-card p { color: rgba(251,246,239,0.75); font-size: 0.9rem; margin-bottom: 0; }
.contact-info-card a { color: var(--clr-accent); }
.contact-info-card a:hover { text-decoration: underline; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq-section { background: var(--clr-primary-deep); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid rgba(167,155,199,0.12);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(167,155,199,0.28); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    background: var(--clr-primary);
    font-weight: 500;
    color: var(--clr-text-light);
    font-size: 1rem;
    user-select: none;
    transition: background var(--transition);
}
.faq-question:hover { background: rgba(167,155,199,0.05); }
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--clr-accent);
    font-weight: 300;
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.open .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}
.faq-answer p { color: rgba(251,246,239,0.78); font-size: 0.92rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
    background: var(--clr-primary-deep);
    border-top: 1px solid rgba(167,155,199,0.08);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    margin-bottom: 18px;
    font-family: var(--ff-heading);
}
.footer-col p {
    color: rgba(251,246,239,0.66);
    font-size: 0.88rem;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    color: rgba(251,246,239,0.62);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-accent); }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: rgba(251,246,239,0.62);
    font-size: 0.88rem;
}
.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--clr-accent);
    stroke-width: 2;
    flex-shrink: 0;
}
.footer-contact-item a { color: rgba(251,246,239,0.62); }
.footer-contact-item a:hover { color: var(--clr-accent); }
.footer-yelp-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    color: #ff8f8f;
    font-size: 0.88rem;
    font-weight: 700;
}
.footer-yelp-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}
.footer-yelp-link:hover {
    color: #ffb1b1;
}
.footer-bottom {
    border-top: 1px solid rgba(167,155,199,0.08);
    padding-top: 20px;
    text-align: center;
    color: rgba(251,246,239,0.4);
    font-size: 0.82rem;
}

/* ===================================================================
   STICKY CTA
   =================================================================== */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 990;
    height: 54px;
    padding: 0 28px;
    background: var(--clr-accent);
    color: var(--clr-primary-deep);
    border: none;
    border-radius: var(--radius);
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(167,155,199,0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.sticky-cta:hover {
    background: var(--clr-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(167,155,199,0.5);
}
.sticky-cta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* ===================================================================
   MODAL
   =================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11,6,10,0.85);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: var(--clr-primary);
    border: 1px solid rgba(167,155,199,0.2);
    border-radius: var(--radius);
    padding: 44px 30px 36px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 32px;
    height: 32px;
    background: var(--clr-accent);
    border: none;
    border-radius: 50%;
    color: var(--clr-primary-deep);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.modal-close:hover { background: #fff; transform: rotate(90deg); }

/* ===================================================================
   LOCATION PAGE SPECIFICS
   =================================================================== */
.location-content { background: var(--clr-sand); color: var(--clr-text-dark); }
.location-content h2 { color: var(--clr-text-dark); }
.location-content p { color: rgba(42,33,39,0.8); }
.location-image-panel {
    float: right;
    width: 45%;
    margin: 0 0 20px 30px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--clr-accent);
    box-shadow: var(--shadow-soft);
}
.location-image-panel img {
    width: 100%;
    height: auto;
    display: block;
}
.nearby-areas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.nearby-areas a {
    display: block;
    padding: 12px 16px;
    background: var(--clr-primary);
    border: 1px solid rgba(167,155,199,0.12);
    border-radius: var(--radius-sm);
    color: var(--clr-text-light);
    font-size: 0.9rem;
    text-align: center;
    transition: all var(--transition);
}
.nearby-areas a:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

/* Service features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--clr-primary);
    border: 1px solid rgba(167,155,199,0.12);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
}
.feature-card h3 { color: var(--clr-text-light); font-size: 1.05rem; }
.feature-card p { color: rgba(251,246,239,0.75); font-size: 0.88rem; margin-bottom: 0; }

/* ===================================================================
   SERVICE AREA INDEX — CARDS WITH IMAGES
   =================================================================== */
.area-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.area-detail-card {
    background: var(--clr-primary);
    border: 1px solid rgba(167,155,199,0.12);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.area-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.area-detail-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.area-detail-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.area-detail-card-body h3 { color: var(--clr-text-light); }
.area-detail-card-body p {
    color: rgba(251,246,239,0.75);
    font-size: 0.88rem;
    flex: 1;
}
.area-detail-card-body .btn { margin-top: 14px; align-self: flex-start; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .about-story { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .site-header { top: 0; }
    body { padding-top: 72px; }

    /* Mobile nav */
    .menu-toggle {
        display: flex;
        position: fixed;
        top: 18px;
        right: 20px;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--clr-primary-deep);
        z-index: 1000;
        padding: 80px 24px 40px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0,0,0,0.4);
    }
    .main-nav.open { right: 0; }
    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .main-nav > ul > li > a {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(167,155,199,0.16);
        text-align: left;
    }

    /* Mobile dropdown */
    .has-dropdown > a::after { position: absolute; right: 0; }
    .has-dropdown > a { position: relative; padding-right: 24px; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0;
        min-width: auto;
    }
    .dropdown-menu.mobile-open {
        max-height: 600px;
        padding: 4px 0;
    }
    .dropdown-menu li {
        opacity: 1;
        transform: none;
    }
    .dropdown-menu li a {
        padding: 10px 0 10px 16px;
        font-size: 0.88rem;
        border-left: 2px solid rgba(167,155,199,0.3);
        margin-left: 0;
        text-align: left;
    }

    .nav-overlay {
        display: none;
    }
    .nav-overlay.active { display: none; }

    /* Layout adjustments */
    .hero { min-height: auto; padding: 40px 0; }
    .hero .container { gap: 30px; }
    .trust-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .location-image-panel { float: none; width: 100%; margin: 0 0 20px 0; }
    .content-images { grid-template-columns: 1fr; }
    .content-grid-longform { grid-template-columns: 1fr; gap: 16px; }
    .content-intro { margin-bottom: 20px; }

    .section-pad { padding: 50px 0; }

    /* Sticky CTA mobile */
    .sticky-cta {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: calc(100% - 24px);
        bottom: 16px;
    }
    .sticky-cta svg { display: none; }
    .sticky-cta:hover { transform: translateX(-50%) translateY(-2px); }
}

@media (max-width: 480px) {
    .areas-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---------- Select field styling ---------- */
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(251,246,239,0.06);
    border: 1px solid rgba(167,155,199,0.25);
    border-radius: var(--radius-sm);
    color: var(--clr-text-light);
    font-family: var(--ff-body);
    font-size: 14px;
    line-height: 1.4;
    height: 50px;
    appearance: none;
    -webkit-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='rgba(251,246,239,0.45)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group select:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px var(--clr-accent-glow);
}
.form-group select option {
    background: var(--clr-primary);
    color: var(--clr-text-light);
}

/* ---------- CTA Button Gold Variant ---------- */
.btn-cta {
    background: #C9A84C;
    color: #fff;
    box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-cta:hover {
    background: #b8952f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
