:root {
    --navy: #063b5c;
    --blue: #087ca5;
    --turquoise: #12a9c7;
    --turquoise-dark: #078fa9;
    --light-turquoise: #dff5f9;
    --very-light-blue: #f4fafc;
    --white: #ffffff;
    --grey: #617481;
    --dark: #173746;
    --dark-soft: #2d4c5b;
    --border: #dce8ed;
    --sand: #f6f8f9;
    --shadow: 0 20px 55px rgba(6, 59, 92, .10);
    --radius: 16px;
    --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", Arial, sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: 860px; }
.centered-heading { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow { color: var(--turquoise); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: var(--light-turquoise); }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(220,232,237,.85); backdrop-filter: blur(10px); }
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo { width: 150px; display: block; flex: 0 0 auto; }
.logo img { width: 100%; display: block; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--navy); font-size: .95rem; font-weight: 700; transition: .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--turquoise); }
.nav-cta { padding: 13px 20px; background: var(--turquoise); color: var(--white) !important; border-radius: 8px; }
.nav-cta:hover { background: var(--blue); color: var(--white) !important; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); font-size: 1.8rem; line-height: 1; }

/* HERO */
.home-hero { position: relative; min-height: 720px; color: var(--white); overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background: url("../images/hero.jpg") center/cover no-repeat; transform: scale(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(6,59,92,.88) 0%, rgba(6,59,92,.64) 48%, rgba(6,59,92,.20) 100%); }
.hero-inner { min-height: 720px; display: flex; align-items: center; position: relative; z-index: 2; }
.hero-copy { max-width: 780px; padding: 90px 0; }
.hero-copy h1 { margin: 16px 0 24px; font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1.04; letter-spacing: -.045em; }
.hero-copy h1 span { color: var(--light-turquoise); }
.hero-lead { max-width: 670px; font-size: 1.12rem; color: rgba(255,255,255,.9); line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { position: absolute; right: 0; bottom: 42px; display: flex; align-items: center; gap: 12px; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.8); }
.hero-note-line { width: 34px; height: 1px; background: rgba(255,255,255,.55); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 8px; font-weight: 800; font-size: .9rem; transition: .2s ease; border: 1px solid transparent; }
.btn-primary { background: var(--turquoise); color: var(--white); }
.btn-primary:hover { background: var(--blue); }
.btn-outline { border-color: rgba(255,255,255,.72); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--blue); }

/* SECTIONS */
.section { padding: 100px 0; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading h2 { margin: 12px 0 18px; color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.1; letter-spacing: -.03em; }
.section-heading > p:last-child { color: var(--grey); font-size: 1.02rem; line-height: 1.8; }

/* SERVICES */
.intro-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--very-light-blue); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: 0 10px 30px rgba(6,59,92,.04); }
.service-icon { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; margin-bottom: 24px; background: var(--light-turquoise); color: var(--navy); border-radius: 10px; font-weight: 800; font-size: .8rem; }
.service-card h3 { margin-bottom: 12px; color: var(--navy); font-size: 1.4rem; }
.service-card p { color: var(--grey); margin-bottom: 20px; }
.service-card a { color: var(--blue); font-weight: 800; font-size: .9rem; }

/* PORTFOLIO */
.portfolio-preview { background: var(--very-light-blue); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-grid.large { grid-template-columns: repeat(2, 1fr); }
.portfolio-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(6,59,92,.05); transition: transform .2s ease, box-shadow .2s ease; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.portfolio-card-image { aspect-ratio: 16 / 10; overflow: hidden; background: #e8f0f4; }
.portfolio-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.portfolio-card:hover .portfolio-card-image img { transform: scale(1.03); }
.portfolio-card-content { padding: 25px; }
.portfolio-card-content .card-category { color: var(--turquoise); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.portfolio-card-content h3, .portfolio-card-content h2 { color: var(--navy); margin: 8px 0 10px; font-size: 1.45rem; }
.portfolio-card-content p { color: var(--grey); margin-bottom: 16px; }
.portfolio-card-content span { color: var(--blue); font-weight: 800; }
.empty-portfolio { padding: 38px; border: 1px dashed #b7cdd7; background: var(--white); border-radius: var(--radius); color: var(--grey); text-align: center; }
.centered-action { text-align: center; margin-top: 36px; }
.text-link { color: var(--blue); font-weight: 800; }

/* WHY */
.why-section { position: relative; min-height: 560px; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.why-background { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,59,92,.90), rgba(6,59,92,.58)), url("../images/why-background.jpg") center/cover no-repeat; }
.why-inner { position: relative; z-index: 2; }
.why-copy { max-width: 720px; padding: 90px 0; }
.why-copy h2 { margin: 12px 0 22px; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.05; letter-spacing: -.04em; }
.why-copy p { color: rgba(255,255,255,.9); margin-bottom: 18px; font-size: 1.04rem; line-height: 1.85; }

/* PRICING */
.pricing-preview { background: var(--white); }
.price-strip { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-strip > div { padding: 30px 24px; text-align: center; border-right: 1px solid var(--border); }
.price-strip > div:last-child { border-right: 0; }
.price-strip span { display: block; color: var(--grey); font-size: .9rem; margin-bottom: 8px; }
.price-strip strong { display: block; color: var(--navy); font-size: 2rem; }

/* PROCESS */
.process-section { background: var(--very-light-blue); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-grid > div { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.process-grid span { color: var(--turquoise); font-weight: 800; font-size: .78rem; letter-spacing: .15em; }
.process-grid h3 { margin: 12px 0 10px; color: var(--navy); }
.process-grid p { color: var(--grey); font-size: .94rem; }

/* CTA */
.cta-section { padding: 100px 20px; background: var(--light-turquoise); }
.cta-section h2 { margin: 12px 0 18px; color: var(--navy); font-size: clamp(2.3rem, 4vw, 3.5rem); line-height: 1.08; }
.cta-section > .container > p:not(.eyebrow) { max-width: 700px; margin: 0 auto 30px; color: var(--grey); font-size: 1.05rem; }

/* PAGE HERO */
.page-hero { padding: 100px 0; color: var(--white); text-align: center; background: linear-gradient(135deg, rgba(6,59,92,.95), rgba(8,124,165,.88)), url("../images/hero.jpg") center/cover no-repeat; }
.page-hero h1 { margin: 14px auto 18px; max-width: 900px; font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: 1.05; letter-spacing: -.04em; }
.page-hero > .container > p:last-child { max-width: 740px; margin: 0 auto; color: rgba(255,255,255,.9); font-size: 1.08rem; line-height: 1.8; }

/* ABOUT */
.about-main { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about-copy h2 { margin: 12px 0 20px; color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.08; }
.about-copy p { color: var(--grey); margin-bottom: 18px; line-height: 1.85; }
.values-section { background: var(--very-light-blue); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.values-grid > div { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.values-grid span { color: var(--turquoise); font-weight: 800; font-size: .78rem; letter-spacing: .15em; }
.values-grid h3 { margin: 12px 0 10px; color: var(--navy); }
.values-grid p { color: var(--grey); font-size: .93rem; }

/* SERVICES PAGE */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pricing-card { position: relative; padding: 36px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 35px rgba(6,59,92,.05); }
.pricing-card.featured { border: 2px solid var(--turquoise); box-shadow: var(--shadow); }
.popular-badge { position: absolute; top: 18px; right: 18px; padding: 6px 10px; border-radius: 999px; background: var(--light-turquoise); color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.pricing-card h3 { color: var(--navy); margin: 8px 0 4px; font-size: 1.7rem; }
.price { color: var(--turquoise); font-size: 2.4rem; font-weight: 800; margin: 12px 0 16px; }
.pricing-card > p:not(.eyebrow) { color: var(--grey); margin-bottom: 20px; }
.pricing-card ul, .care-card ul { list-style: none; margin: 20px 0 26px; }
.pricing-card li, .care-card li { padding: 9px 0 9px 26px; border-bottom: 1px solid #edf2f4; color: var(--dark-soft); position: relative; font-size: .93rem; }
.pricing-card li::before, .care-card li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: var(--turquoise); font-weight: 800; }
.price-note, .care-rules { margin-top: 24px; color: var(--grey); font-size: .9rem; line-height: 1.75; }
.add-ons { background: var(--very-light-blue); }
.addon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.addon-grid > div { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.addon-grid h3 { color: var(--navy); margin-bottom: 8px; }
.addon-grid strong { display: block; color: var(--turquoise); margin-bottom: 10px; }
.addon-grid p { color: var(--grey); }
.care-section { background: var(--white); }
.care-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.care-card { position: relative; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; background: var(--very-light-blue); }
.care-card.featured { border: 2px solid var(--turquoise); background: var(--white); box-shadow: var(--shadow); }
.care-card h3 { color: var(--navy); font-size: 2.4rem; margin: 10px 0; }
.care-card h3 span { font-size: .95rem; font-weight: 600; color: var(--grey); }
.care-intro { color: var(--grey); min-height: 74px; }
.client-responsibilities { background: var(--very-light-blue); }
.client-responsibilities h2 { color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.6rem); margin: 12px 0 20px; line-height: 1.1; }
.client-responsibilities p { color: var(--grey); margin-bottom: 18px; }

/* PORTFOLIO DETAIL */
.project-hero { background: var(--very-light-blue); padding: 100px 0; }
.project-hero-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.project-hero h1 { margin: 10px 0 18px; color: var(--navy); font-size: clamp(3rem, 5vw, 5rem); line-height: 1; }
.project-hero p { color: var(--grey); margin-bottom: 25px; }
.project-featured { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.project-featured img { width: 100%; display: block; }
.project-gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 30px; }
.gallery-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }
.gallery-empty { padding: 30px; border: 1px dashed #b7cdd7; border-radius: var(--radius); color: var(--grey); margin-bottom: 30px; }

/* CONTACT */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-copy h2 { color: var(--navy); margin: 12px 0 20px; font-size: clamp(2.3rem, 4vw, 3.5rem); line-height: 1.08; }
.contact-copy > p { color: var(--grey); line-height: 1.85; }
.contact-note { margin-top: 28px; display: grid; gap: 5px; padding: 22px; border-left: 3px solid var(--turquoise); background: var(--very-light-blue); }
.contact-note strong { color: var(--navy); }
.contact-note span, .contact-note a { color: var(--grey); }
.form-card { padding: 36px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--very-light-blue); box-shadow: var(--shadow); }
.form-card form > div, .form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card label { display: block; color: var(--navy); font-weight: 800; font-size: .88rem; margin-bottom: 8px; }
.form-card input, .form-card select, .form-card textarea { width: 100%; border: 1px solid #c9dbe3; border-radius: 10px; background: var(--white); padding: 13px 14px; color: var(--dark); outline: none; transition: .2s; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--turquoise); box-shadow: 0 0 0 3px rgba(18,169,199,.12); }
.form-note { margin-top: 10px; color: var(--grey); font-size: .8rem; }
.form-success { margin-bottom: 18px; padding: 14px 16px; background: #e8f7ee; border: 1px solid #bddfc9; color: #256c43; border-radius: 10px; }

/* LEGAL */
.legal h2 { margin: 34px 0 10px; color: var(--navy); }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--grey); line-height: 1.85; margin-bottom: 16px; }
.legal a { color: var(--blue); font-weight: 700; }
.legal-note { margin-top: 36px; padding: 18px; background: var(--very-light-blue); border-left: 3px solid var(--turquoise); }

/* FOOTER */
.site-footer { padding: 70px 0 25px; background: var(--navy); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 45px; padding-bottom: 55px; }
.footer-brand img { width: 155px; margin-bottom: 18px; background: var(--white); }
.footer-brand p, .footer-links p { color: rgba(255,255,255,.68); font-size: .9rem; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links h3 { margin-bottom: 17px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--light-turquoise); }
.footer-links a { margin-bottom: 10px; color: rgba(255,255,255,.72); font-size: .9rem; }
.footer-links a:hover { color: white; }
.footer-email { margin-top: 12px; color: white !important; font-weight: 800; }
.footer-cta { margin-top: 4px; color: var(--light-turquoise) !important; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a:hover { color: white; }

/* ADMIN-FRIENDLY PLACEHOLDERS */
body.admin-preview { background: #fff; }

/* RESPONSIVE */
@media (max-width: 1000px) {
    .main-nav { gap: 18px; }
    .main-nav a { font-size: .88rem; }
    .logo { width: 130px; }
    .services-grid, .portfolio-grid { grid-template-columns: repeat(2,1fr); }
    .portfolio-grid.large { grid-template-columns: 1fr 1fr; }
    .process-grid, .values-grid { grid-template-columns: repeat(2,1fr); }
    .price-strip { grid-template-columns: repeat(2,1fr); }
    .price-strip > div:nth-child(2) { border-right: 0; }
    .price-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .pricing-grid, .care-grid, .addon-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-note { display: none; }
}

@media (max-width: 760px) {
    .container { width: calc(100% - 32px); }
    .site-header { position: sticky; }
    .header-inner { min-height: 78px; }
    .logo { width: 125px; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
    .main-nav { position: fixed; inset: 78px 0 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 24px; padding: 45px 25px; background: white; transform: translateX(100%); transition: transform .3s ease; border-top: 1px solid var(--border); }
    .main-nav.open { transform: translateX(0); }
    .main-nav a { font-size: 1.05rem; }
    .nav-cta { margin-top: 4px; }
    .home-hero, .hero-inner { min-height: 700px; }
    .hero-copy { padding: 100px 0 80px; }
    .hero-copy h1 { font-size: clamp(2.8rem, 12vw, 4.4rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; max-width: 330px; }
    .section { padding: 76px 0; }
    .section-heading { margin-bottom: 36px; }
    .services-grid, .portfolio-grid, .portfolio-grid.large, .process-grid, .values-grid, .pricing-grid, .care-grid, .addon-grid, .about-grid, .project-hero-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .price-strip { grid-template-columns: 1fr 1fr; }
    .price-strip > div { border-right: 0; border-bottom: 1px solid var(--border); }
    .price-strip > div:nth-child(odd) { border-right: 1px solid var(--border); }
    .price-strip > div:nth-last-child(-n+2) { border-bottom: 0; }
    .page-hero { padding: 78px 0; }
    .about-grid, .contact-grid, .project-hero-grid { gap: 38px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .footer-bottom div { flex-wrap: wrap; }
}
