/* Triory Construction — warm neutral + blue, material textures */
:root {
  --navy: #143a5e;        /* deep blue, dark bands/overlays */
  --navy-deep: #0f2b46;
  --blue: #1f64a8;        /* primary accent */
  --blue-700: #184f86;    /* hover */
  --blue-bright: #2f81cf;
  --ink: #232a31;         /* headings */
  --body: #515860;        /* body text */
  --muted: #7c838a;
  --cream: #f7f4ef;       /* warm off-white base */
  --sand: #efeae2;        /* alt light section */
  --paper: #ffffff;       /* cards */
  --line: #e4dfd6;        /* warm border */
  --line-cool: #dde2e8;
  --shadow: 0 14px 38px rgba(20, 30, 40, 0.10);
  --shadow-lg: 0 30px 70px rgba(15, 30, 50, 0.24);
  --radius: 5px;
  --radius-lg: 9px;
  --maxw: 1180px;
  --display: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; color: var(--ink); line-height: 1.1; letter-spacing: -0.015em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 3px; background: var(--blue); display: inline-block; border-radius: 2px; }
.center .eyebrow { justify-content: center; }

.section { padding: 94px 0; }
.section.sand { background: var(--sand); }
.section.alt { background: linear-gradient(rgba(247,244,239,0.94), rgba(247,244,239,0.94)), url('assets/tex-herringbone.webp'); background-size: auto, 460px; }
.section-tight { padding: 66px 0; }
.section-head { max-width: 670px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s, transform .16s ease, box-shadow .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); box-shadow: 0 12px 26px rgba(24, 79, 134, 0.32); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); border-color: #fff; }
.btn-light:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-light-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-light-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-lg { padding: 17px 36px; font-size: 0.9rem; }

/* Logo */
.brand { display: flex; align-items: center; }
.brand-img { height: 56px; width: auto; display: block; }
.site-footer .brand-img { height: 66px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-family: var(--sans); color: var(--ink); font-weight: 600; font-size: 0.92rem;
  position: relative; padding: 6px 0; transition: color .15s;
}
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2.5px; background: var(--blue); transition: width .2s ease; border-radius: 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone { color: var(--ink); font-weight: 700; font-size: 0.92rem; display: flex; align-items: center; gap: 8px; }
.nav-phone svg { stroke: var(--blue); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; transition: .2s; }

/* Parallax utility — fixed background, content scrolls over */
.parallax { background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; }

/* Eyebrow on dark */
.eyebrow.light { color: #fff; }
.eyebrow.light::before { background: var(--blue-bright); }
.eyebrow.center { justify-content: center; }

/* Base media watermark (used by feature-img panel) */
.media-watermark { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.media-watermark .watermark-img { width: 54%; height: auto; opacity: 0.92; }

/* Hero — full-bleed parallax */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding: 120px 0; color: #fff; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13,38,62,0.93) 0%, rgba(15,43,70,0.8) 48%, rgba(20,58,94,0.58) 100%); }
.hero-inner { position: relative; max-width: 740px; }
.hero h1 { color: #fff; font-size: clamp(2.9rem, 6.2vw, 5rem); line-height: 0.99; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--blue-bright); }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,0.86); margin-bottom: 36px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 42px; margin-top: 54px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.2); flex-wrap: wrap; }
.hero-trust .stat strong { display: block; font-family: var(--display); font-size: 2.5rem; color: #fff; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.hero-trust .stat span { font-size: 0.82rem; color: rgba(255,255,255,0.72); font-weight: 500; }

/* Statement — parallax band */
.statement { position: relative; padding: 132px 0; color: #fff; text-align: center; overflow: hidden; }
.statement::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(13,38,62,0.9), rgba(15,43,70,0.85)); }
.statement .container { position: relative; max-width: 840px; }
.statement h2 { color: #fff; font-size: clamp(1.9rem, 4.3vw, 3rem); line-height: 1.12; margin-bottom: 18px; }
.statement p { color: rgba(255,255,255,0.82); font-size: 1.12rem; max-width: 640px; margin: 0 auto 30px; }

/* Page banner — concrete material */
.page-banner { position: relative; background: url('assets/tex-concrete.jpg') center/cover fixed; color: #fff; padding: 96px 0; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(15,43,70,0.82), rgba(15,43,70,0.88)); }
.page-banner .container { position: relative; }
.page-banner h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 3.5rem); margin-bottom: 14px; }
.page-banner p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 600px; }
.crumbs { font-family: var(--sans); font-size: 0.8rem; color: rgba(255,255,255,0.62); margin-bottom: 20px; letter-spacing: 0.1em; text-transform: uppercase; }
.crumbs a:hover { color: #fff; }

/* Trust strip — navy bar */
.trust-strip { background: var(--navy); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 16px 48px; justify-content: center; padding-top: 22px; padding-bottom: 22px; }
.trust-item { display: flex; align-items: center; gap: 11px; font-family: var(--sans); font-weight: 600; color: rgba(255,255,255,0.9); font-size: 0.92rem; }
.trust-item svg { stroke: var(--blue-bright); flex-shrink: 0; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  border-top: 3px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-top-color: var(--blue); }
.service-icon { width: 56px; height: 56px; border-radius: var(--radius); background: rgba(31,100,168,0.10); display: grid; place-items: center; margin-bottom: 20px; }
.service-icon svg { stroke: var(--blue); }
.service-card h3 { font-size: 1.34rem; margin-bottom: 12px; }
.service-card > p { color: var(--muted); font-size: 0.98rem; }
.service-card ul { list-style: none; margin-top: 16px; }
.service-card ul li { font-family: var(--sans); font-size: 0.9rem; color: var(--body); padding-left: 22px; position: relative; margin-bottom: 6px; }
.service-card ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(-45deg); }

/* Why us */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; }
.feature-img { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: url('assets/tex-concrete.jpg') center/cover; }
.feature-img::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(150deg, rgba(20,58,94,0.45), rgba(15,43,70,0.78)); }
.feature-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }
.feature-img .media-watermark { z-index: 2; }
.feature-img .media-watermark .watermark-img { width: 46%; opacity: 0.9; }
.feature-list { list-style: none; display: grid; gap: 24px; margin-top: 32px; }
.feature-list li { display: flex; gap: 18px; }
.feature-list .fnum { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.15rem; }
.feature-list h4 { font-family: var(--display); font-size: 1.18rem; margin-bottom: 5px; }
.feature-list p { color: var(--muted); font-size: 0.97rem; }

/* Projects */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card { background: transparent; }
.project-thumb { position: relative; aspect-ratio: 3/2; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 18px; background: url('assets/tex-concrete.jpg') center/cover no-repeat; }
.project-thumb::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(15,43,70,0.40) center/62px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M11 19 L89 19 L50 85 Z' stroke='%23ffffff' stroke-width='6.5' stroke-linejoin='round'/%3E%3Crect x='44.5' y='33' width='11' height='36' rx='1.5' fill='%23ffffff'/%3E%3Crect x='32' y='28' width='33' height='12' rx='2' fill='%23ffffff'/%3E%3Cpath d='M65 29 L74 32 L74 37 L65 40 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  opacity: 0.85;
}
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; position: relative; z-index: 2; }
.project-card:hover .project-thumb img { transform: scale(1.06); }
.project-tag {
  position: absolute; top: 14px; left: 14px; z-index: 3; background: var(--blue); color: #fff;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; padding: 6px 12px; border-radius: 3px; text-transform: uppercase;
}
.project-meta { font-family: var(--sans); font-size: 0.74rem; color: var(--blue); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 9px; }
.project-card h3 { font-size: 1.34rem; margin-bottom: 8px; }
.project-card p { color: var(--muted); font-size: 0.95rem; }

/* Before / after card */
.ba-thumb { display: flex; gap: 3px; aspect-ratio: 3/2; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 18px; }
.ba-half { position: relative; flex: 1; overflow: hidden; background: var(--concrete); }
.ba-half img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .ba-half img { transform: scale(1.05); }
.ba-tag { position: absolute; top: 10px; left: 10px; z-index: 2; font-family: var(--sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; padding: 4px 9px; border-radius: 3px; text-transform: uppercase; color: #fff; }
.ba-tag.before { background: rgba(35,42,49,0.85); }
.ba-tag.after { background: var(--blue); }

/* Testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.quote-stars { color: var(--blue); letter-spacing: 3px; margin-bottom: 16px; font-size: 1.05rem; }
.quote-card p { font-size: 1.06rem; line-height: 1.6; color: var(--ink); margin-bottom: 20px; }
.quote-author { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1rem; }
.quote-author span { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* CTA band — steel material */
.cta-band { position: relative; background: url('assets/tex-steel.jpg') center/cover fixed; color: #fff; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(15,43,70,0.94), rgba(20,58,94,0.84)); }
.cta-band .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.8vw, 2.6rem); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-info-card { display: flex; gap: 17px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card .ci-icon { flex-shrink: 0; width: 50px; height: 50px; border-radius: var(--radius); background: rgba(31,100,168,0.10); display: grid; place-items: center; }
.contact-info-card .ci-icon svg { stroke: var(--blue); }
.contact-info-card h4 { font-family: var(--display); font-size: 1.08rem; margin-bottom: 3px; }
.contact-info-card p, .contact-info-card a { color: var(--body); font-size: 0.98rem; }
.contact-info-card a:hover { color: var(--blue); }

/* Forms */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 38px; }
.form-card h3 { font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.86rem; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-cool); border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.97rem; color: var(--ink); background: var(--paper); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,100,168,0.15); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.83rem; color: var(--muted); margin-top: 8px; }
.form-success { display: none; background: rgba(31,100,168,0.10); border: 1px solid rgba(31,100,168,0.32); color: var(--blue-700); padding: 14px 16px; border-radius: var(--radius); font-weight: 600; margin-bottom: 20px; font-family: var(--sans); }

/* Footer — navy */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.66); padding: 74px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 46px; margin-bottom: 48px; }
.footer-grid h5 { font-family: var(--sans); color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.footer-about p { font-size: 0.95rem; margin: 18px 0 0; max-width: 300px; line-height: 1.7; }
.footer-links { list-style: none; display: grid; gap: 12px; }
.footer-links a { font-family: var(--sans); font-size: 0.93rem; transition: color .15s; }
.footer-links a:hover { color: var(--blue-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.13); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--sans); font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* Sponsor */
.sponsor { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 4px 0 34px; }
.sponsor-label { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.sponsor-logo { display: inline-block; transition: transform .18s ease, filter .18s ease; }
.sponsor-logo:hover { transform: translateY(-2px); filter: brightness(1.12); }
.sponsor-logo .urbids-img { height: 34px; width: auto; display: block; }

/* Quote modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(15,30,50,0.6);
  backdrop-filter: blur(5px); display: none; align-items: flex-start; justify-content: center; padding: 40px 20px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal { background: var(--paper); max-width: 540px; width: 100%; box-shadow: var(--shadow-lg); animation: pop .2s ease; margin: auto; border-radius: var(--radius-lg); overflow: hidden; }
@keyframes pop { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.modal-head { position: relative; background: var(--navy); color: #fff; padding: 28px 34px; border-bottom: 3px solid var(--blue-bright); }
.modal-head h3 { color: #fff; font-size: 1.5rem; margin-bottom: 5px; }
.modal-head p { font-family: var(--sans); color: rgba(255,255,255,0.76); font-size: 0.94rem; }
.modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.9rem; line-height: 1; cursor: pointer; transition: color .15s; }
.modal-close:hover { color: #fff; }
.modal-body { padding: 30px 34px 36px; }

/* Responsive */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-media { aspect-ratio: 16/10; max-height: 400px; order: -1; }
  .services-grid, .quote-grid, .projects-grid { grid-template-columns: 1fr 1fr; }
  .feature-split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 84px; left: 0; right: 0;
    background: #fff; padding: 22px 26px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .services-grid, .projects-grid, .quote-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 66px 0; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  /* iOS does not handle fixed backgrounds well — fall back to scroll */
  .parallax, .hero, .statement, .page-banner, .cta-band { background-attachment: scroll; }
  .hero { min-height: auto; padding: 90px 0; }
  .statement { padding: 88px 0; }
}

/* ============================================================
   Stylistic enhancements (richer, less plain)
   ============================================================ */

/* Scroll reveal — hidden from first paint via html.anim set in <head> */
html.anim .service-card,
html.anim .project-card,
html.anim .section-head,
html.anim .feature-list li,
html.anim .quote-card,
html.anim .contact-info-card,
html.anim .form-card,
html.anim .feature-img {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1);
}
html.anim .is-in { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  html.anim .service-card, html.anim .project-card, html.anim .section-head,
  html.anim .feature-list li, html.anim .quote-card, html.anim .contact-info-card,
  html.anim .form-card, html.anim .feature-img { opacity: 1; transform: none; transition: none; }
}

/* Hero — blueprint grid overlay */
.hero::before {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 58px),
    linear-gradient(105deg, rgba(13,38,62,0.93) 0%, rgba(15,43,70,0.8) 48%, rgba(20,58,94,0.55) 100%);
}
/* Hero scroll cue */
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.45); border-radius: 14px;
  display: flex; justify-content: center; transition: border-color .2s;
}
.hero-scroll:hover { border-color: #fff; }
.hero-scroll span { width: 4px; height: 8px; background: #fff; border-radius: 2px; margin-top: 7px; animation: scrolly 1.6s ease-in-out infinite; }
@keyframes scrolly { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 70% { opacity: 1; } 100% { opacity: 0; transform: translateY(13px); } }

/* Arrow on large CTAs */
.btn-lg::after { content: '\2192'; font-size: 1.06em; line-height: 1; transition: transform .18s ease; }
.btn-lg:hover::after { transform: translateX(4px); }

/* Faint blueprint texture on the sand section */
.section.sand {
  background-color: var(--sand);
  background-image:
    repeating-linear-gradient(0deg, rgba(20,58,94,0.028) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(20,58,94,0.028) 0 1px, transparent 1px 48px);
}

/* Services — ghost numbers + livelier hover */
.services-grid { counter-reset: svc; }
.service-card { counter-increment: svc; position: relative; overflow: hidden; }
.service-card::after {
  content: counter(svc, decimal-leading-zero); position: absolute; top: 10px; right: 20px;
  font-family: var(--display); font-weight: 800; font-size: 3.6rem; line-height: 1;
  color: rgba(31,100,168,0.08); transition: color .25s; pointer-events: none;
}
.service-card:hover::after { color: rgba(31,100,168,0.18); }
.service-icon { transition: background .2s, transform .2s; }
.service-card:hover .service-icon { transform: translateY(-3px); }

/* Project cards — depth + hover gradient */
.project-thumb { box-shadow: 0 10px 26px rgba(20,30,40,0.10); }
.project-thumb::before {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0;
  background: linear-gradient(to top, rgba(15,43,70,0.5), transparent 48%);
  transition: opacity .3s ease;
}
.project-card:hover .project-thumb::before { opacity: 1; }

/* Testimonials hover */
.quote-card { transition: transform .2s ease, box-shadow .2s ease; }
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ===== About / Family-Built section ===== */
.about-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 60px; align-items: center; }
.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-media .about-main { grid-column: 1 / -1; width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-media .about-sm { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.about-copy p { color: var(--body); font-size: 1.05rem; margin-bottom: 16px; }
.about-sign { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.12rem; display: flex; align-items: center; gap: 12px; margin: 22px 0 28px; }
.about-sign::before { content: ''; width: 30px; height: 2px; background: var(--blue); flex-shrink: 0; }
@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { order: -1; }
}
