:root {
    --primary: #e1c265;
    --primary-dark: #806c00;
    --navy: #000117;
    --bg-light: #ffffff;
    --bg-marble: #f6f5f5;
    --bg-navy: #000117;
    --text-dark: #333333;
    --text-medium: #545438;
    --text-light: #808080;
    --text-white: #ffffff;
    --border-gold: rgba(225, 194, 101, 0.5);
    --border-light: rgba(0, 0, 0, 0.08);
    --font-main: 'Lato', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-accent: 'Roboto Slab', serif;
    --container-max: 1200px;
    --section-padding: 80px 20px;
    --section-container: 2px solid var(--text-dark);
    --section-radius: 10px;
    --section-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
}

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

body {
    background-image: url('/static/images/marble-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1 { font-family: var(--font-heading); font-weight: 400; font-size: 3.75em; line-height: 1.26; }
h2 { font-family: var(--font-accent); font-weight: 400; font-size: 2.625em; line-height: 1.143; }
h3 { font-family: var(--font-accent); font-weight: 400; font-size: 2.25em; line-height: 1.25; }
h4 { font-family: var(--font-main); font-weight: 900; font-size: 1.25em; line-height: 1.6; text-transform: uppercase; }

a { text-decoration: none; color: var(--primary); transition: 0.3s ease; }
a:hover { color: #e1af1a; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Header ── */
header {
    padding: 8px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo: image stacked above text (vertical layout) */
.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.logo-img {
    max-height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-dark);
    line-height: 1.15;
    letter-spacing: 3.5px;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-links > li {
    position: relative;
    margin: 0 20px;
    padding: 10px 0;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
    letter-spacing: 0;
    line-height: 1.5em;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

/* Dropdown chevron */
.nav-dropdown > a::after {
    content: ' \25BE';
    font-size: 0.7em;
    opacity: 0.7;
}

/* Nav phone button */
.nav-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.nav-phone-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    border: 5px solid rgba(246, 245, 245, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-phone-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--navy);
}

.nav-phone-number {
    font-family: var(--font-heading) !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
}

/* Dropdown */
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-light);
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-accent) !important;
    font-size: 14px !important;
    color: #544438 !important;
    text-transform: none !important;
    border-bottom: 1px solid rgb(225, 213, 176);
}

.dropdown-menu li a::after { content: none !important; }

.dropdown-menu li a:hover {
    color: var(--text-white) !important;
    background: var(--primary);
}

/* ── Buttons ── */
.btn {
    padding: 12px 28px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--primary);
    color: var(--navy);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-white);
}

.btn-outline {
    background: var(--navy);
    color: var(--text-white);
    border: 4px solid var(--bg-marble);
    border-radius: 10px;
    box-shadow: 0px 0px 0px 5px rgba(225, 194, 101, 0.5);
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 18px 30px;
}

.btn-outline:hover {
    background: rgb(84, 68, 56);
    color: var(--text-white);
    box-shadow: 0px 0px 0px 5px rgb(225, 194, 101);
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary-dark);
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: var(--navy);
}

/* ── Main ── */
main { padding-top: 105px; }

/* ── Hero / Service Images ── */
.hero-services {
    display: flex;
    margin: 0 20px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: var(--section-shadow);
    background: var(--navy);
    height: 75vh;
    border: 2px solid var(--navy);
    border-top: none;
    padding: 0 20px 20px;
    gap: 6px;
}

.hero-service-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 0;
    color: var(--text-white);
    transition: box-shadow 0.4s ease;
}

.hero-service-item img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    margin: 0;
    filter: brightness(0.85);
}

.hero-service-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.hero-service-item:hover {
    box-shadow: inset 0 0 0 2px #fff, 0 0 10px 2px #FFFFFF;
    z-index: 2;
}

.hero-service-label {
    background: var(--navy);
    padding: 20px 10px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-service-label .hero-icon {
    display: block;
    margin-bottom: 4px;
}

.hero-service-label .hero-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-dark);
}

.hero-service-label .hero-title {
    font-family: var(--font-heading);
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1;
}

/* ── Trust Section (inside rounded container) ── */
.trust-section {
    margin: 20px 20px 0;
    padding: 50px 5%;
    background: var(--bg-light);
    border: var(--section-container);
    border-radius: var(--section-radius);
    box-shadow: var(--section-shadow);
}

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

.trust-item h3 {
    font-family: var(--font-main);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.6;
}

.trust-item p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Content section on marble bg ── */
.marble-section {
    margin: 20px 20px 0;
    padding: 60px 5%;
    background-image: url('/static/images/marble-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border: var(--section-container);
    border-radius: var(--section-radius);
    box-shadow: var(--section-shadow);
    overflow: hidden;
}

.marble-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(246, 245, 245, 0.75);
}

.marble-section .container { position: relative; z-index: 1; }

/* ── Reusable section box (rounded container with marble bg + shadow) ── */
.section-box {
    margin: 20px 20px 0;
    padding: 60px 5%;
    background-image: url('/static/images/marble-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border: var(--section-container);
    border-radius: var(--section-radius);
    box-shadow: var(--section-shadow);
    overflow: hidden;
}

.section-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(246, 245, 245, 0.75);
}

.section-box .container { position: relative; z-index: 1; }

@media (max-width: 768px) {
    .section-box { margin-left: 10px; margin-right: 10px; }
}

/* ── About page layout ── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-gold-banner {
    background: var(--primary);
    color: #fff;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    margin: 20px 0 28px;
    max-width: 460px;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.about-check-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

.check-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(186,155,72,0.12);
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 2px;
}

.director-photo-wrapper {
    position: relative;
}

.director-photo-wrapper img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.director-name-card {
    position: absolute;
    bottom: -30px;
    right: -10px;
    background: #fff;
    padding: 18px 28px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    line-height: 1.6;
}

.director-name-card strong {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.director-name-card span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Why work with us cards */
.why-card {
    background: #fff;
    border-radius: 6px;
    padding: 50px 24px 28px;
    text-align: center;
    position: relative;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Gold triangle fold at top-left */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: var(--primary) transparent transparent transparent;
    opacity: 0.15;
}

.why-icon-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(186,155,72,0.3);
}

.why-card h3 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-layout { grid-template-columns: 1fr; }
    .director-name-card { position: relative; bottom: 0; right: 0; margin-top: 16px; }
}

/* ── Home page about grid (text + overlapping images) ── */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-images {
    position: relative;
    min-height: 500px;
}

.about-images img {
    position: absolute;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.about-images img:nth-child(1) {
    width: 65%;
    height: 55%;
    top: 0;
    left: 0;
    z-index: 3;
}

.about-images img:nth-child(2) {
    width: 55%;
    height: 50%;
    top: 25%;
    right: 0;
    z-index: 2;
}

.about-images img:nth-child(3) {
    width: 60%;
    height: 45%;
    bottom: 0;
    left: 10%;
    z-index: 1;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-images { min-height: 400px; }
}

.marble-section h2 {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-style: normal;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.marble-section .subtitle {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    color: rgb(102, 102, 102);
    margin-bottom: 30px;
    line-height: 1.6;
}

.marble-section p {
    color: var(--text-dark);
    font-size: 0.93rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.marble-section strong { color: var(--text-dark); }

/* ── CTA Banner ── */
.cta-banner {
    padding: 0 20px;
    margin: 20px 0 0;
    text-align: center;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    border: var(--section-container);
    border-radius: var(--section-radius);
    box-shadow: var(--section-shadow);
    background-color: var(--primary);
    background-image: url('/static/images/marble-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(246, 245, 245, 0.75);
}

.cta-banner .cta-phone-img {
    width: 80px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.cta-banner .cta-phone {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-banner .cta-phone:hover { color: var(--primary-dark); }

/* ── Projects Section (rounded container) ── */
.projects-section {
    margin: 20px 20px 0;
    padding: 60px 5%;
    text-align: center;
    background-image: url('/static/images/marble-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    border: var(--section-container);
    border-radius: var(--section-radius);
    box-shadow: var(--section-shadow);
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(246, 245, 245, 0.6);
}

.projects-section .container,
.projects-section > h2,
.projects-section > .projects-grid { position: relative; z-index: 1; }

.projects-section h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-style: italic;
    margin-bottom: 50px;
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.project-circle {
    text-align: center;
    display: block;
    color: var(--text-dark);
}

.project-circle-img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    border-radius: 300px;
    border: 10px solid rgba(225, 194, 101, 0.5);
    object-fit: cover;
    margin: 0 auto 18px;
    transition: border-color 0.5s ease;
}

.project-circle:hover .project-circle-img {
    border-color: var(--primary);
}

.project-circle span {
    font-family: var(--font-heading);
    font-size: 1.25em;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0;
}

/* ── Page Hero Banner (inner pages) ── */
.page-hero-banner {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('/static/images/hero-subpage.jpg');
    background-size: cover;
    background-position: center;
    margin: 0 20px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: var(--section-shadow);
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 1, 23, 0.55);
}

.page-hero-banner h1 {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.26;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Fallback for pages that use the simpler hero */
.page-hero {
    padding: 60px 0 40px;
    background: var(--bg-marble);
    border-bottom: 1px solid var(--border-light);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
}

.page-hero p {
    color: var(--text-medium);
    font-size: 1.05rem;
    max-width: 580px;
    margin-top: 12px;
}

/* ── Section helpers ── */
section { padding: var(--section-padding); }

.section-header { margin-bottom: 40px; }
.section-header.centered { text-align: center; }

.section-eyebrow {
    font-family: var(--font-main);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 900;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.8;
}

.section-header.centered p { margin: 0 auto; }

.rule {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 16px;
}

.rule-left { margin-right: auto; }

/* ── Grid ── */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ── Cards (light theme) ── */
.card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--text-medium); font-size: 0.9rem; line-height: 1.8; }
.card-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }

/* ── Feature list ── */
.feature-list { list-style: none; padding: 0; margin: 20px 0; }

.feature-list li {
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-medium);
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li::before {
    content: '\2014';
    color: var(--primary-dark);
    flex-shrink: 0;
}

/* ── Service cards (linked) ── */
.service-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: inherit;
}

.service-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.service-card-body p { color: var(--text-medium); font-size: 0.9rem; margin-bottom: 14px; }

.service-card-link {
    font-family: var(--font-main);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card-link::after { content: '\2192'; transition: transform 0.2s ease; }
.service-card:hover .service-card-link::after { transform: translateX(4px); }

/* ── Gallery ── */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.image-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-gallery img:hover { transform: scale(1.02); }

/* ── Contact page ── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.contact-card h3 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.contact-card address {
    font-style: normal;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hours-table {
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hours-table td:first-child {
    font-weight: 700;
    width: 140px;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-medium);
}

.hours-table tr.closed td {
    color: rgba(154, 125, 10, 0.5);
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 1, 23, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active { display: flex; opacity: 1; }

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 3px;
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content { transform: scale(1); }

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(225, 194, 101, 0.15);
    border: 1px solid rgba(225, 194, 101, 0.3);
    color: var(--text-white);
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2001;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--primary);
    color: var(--navy);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ── Contact Form ── */
.contact-form {
    background: var(--bg-marble);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 6px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 3px;
    padding: 12px 14px;
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: 0.93rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }

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

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

/* ── Footer ── */
footer {
    background: transparent;
    color: var(--text-white);
}

.footer-main {
    padding: 60px 5% 40px;
    background: var(--bg-navy);
    color: rgb(153, 153, 153);
    border: var(--section-container);
    border-radius: var(--section-radius);
    box-shadow: var(--section-shadow);
    margin: 20px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-white);
}

.footer-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-main);
    font-size: 1.25em;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-col ul li a:hover { color: var(--primary); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: var(--primary); }

/* Footer READ MORE — same dark navy style as "learn more" */
.footer-btn-outline {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 24px;
    background: var(--navy);
    color: var(--text-white);
    border: 4px solid var(--bg-marble);
    border-radius: 10px;
    box-shadow: 0px 0px 0px 4px rgba(225, 194, 101, 0.5);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-btn-outline:hover {
    background: rgb(84, 68, 56);
    color: var(--text-white);
    box-shadow: 0px 0px 0px 4px rgb(225, 194, 101);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
    transition: fill 0.3s ease;
}

.footer-social a:hover svg { fill: var(--text-white); }

.footer-bottom {
    padding: 18px 0;
    background: var(--primary-dark);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--navy);
}

.footer-backlink {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    padding: 8px 0;
    background: var(--navy);
}

.footer-backlink a { color: rgba(255,255,255,0.4); }
.footer-backlink a:hover { color: var(--primary); }

/* ── Scroll to top ── */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--navy);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.4rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--primary-dark); color: var(--text-white); }

/* ── Mobile Menu ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-services { flex-direction: column; min-height: auto; padding: 0 10px 10px; }
    .hero-service-item { aspect-ratio: 16/9; }
    .hero-service-label .hero-title { font-size: 2em; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 24px 20px;
        gap: 0;
        border-bottom: 1px solid var(--border-light);
        text-align: center;
        z-index: 999;
    }

    .nav-links > li { margin: 0; padding: 10px 0; }
    .nav-links.active { display: flex; }

    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 6px 0 0;
        display: block;
    }

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

    .hero-services { min-height: auto; margin: 0; border-radius: 0; }
    .trust-section, .marble-section, .projects-section, .footer-main { margin-left: 10px; margin-right: 10px; }
    .cta-banner { padding: 0 10px; }

    .trust-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { font-size: 0.72rem; }

    .nav-phone-wrapper { display: none; }
}

@media (max-width: 480px) {
    .hero-services { flex-direction: column; }
    .hero-service-item { aspect-ratio: 16/9; }
    .trust-grid { grid-template-columns: 1fr; }
    .hero-service-label .hero-title { font-size: 1.8em; }
}
