@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

:root {
  --navy: #031c43;
  --navy-2: #0a2e5d;
  --gold: #f5a800;
  --gold-dark: #d98f00;
  --ink: #10213a;
  --muted: #607089;
  --line: #dce3ec;
  --soft: #f3f6fa;
  --white: #ffffff;
  --success: #147a44;
  --error: #b42318;
  --shadow: 0 24px 70px rgba(3, 28, 67, .14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 29px; height: 3px; background: var(--gold); }
h1, h2, h3, h4 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.65rem, 5.1vw, 5.25rem); }
h2 { font-size: clamp(2.1rem, 3.5vw, 3.55rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 20px; }
.lead { color: var(--muted); font-size: 1.15rem; line-height: 1.75; }
.section-heading { max-width: 730px; margin-bottom: 48px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow::before { display: none; }

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #ffb818; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn svg { width: 19px; height: 19px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.topbar { background: var(--navy); color: #e7edf7; font-size: .88rem; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-items { display: flex; align-items: center; gap: 22px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; color: var(--gold); }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(3,28,67,.08); backdrop-filter: blur(16px); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; }
.brand img { width: 142px; height: 72px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 31px; }
.nav a:not(.btn) { position: relative; color: #273b57; font-size: .94rem; font-weight: 700; }
.nav a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--gold); transition: right .2s ease; }
.nav a:not(.btn):hover::after,
.nav a.active::after { right: 0; }
.mobile-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 0; border-radius: 8px; color: var(--navy); background: var(--soft); }
.mobile-toggle svg { width: 25px; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: grid;
  align-items: center;
  background: var(--navy) url('../images/lima-hero.webp') center/cover no-repeat;
  color: var(--white);
}
.hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(2,18,46,.96) 0%, rgba(3,28,67,.86) 48%, rgba(3,28,67,.24) 100%); }
.hero::after { content: ''; position: absolute; inset: auto 0 0; z-index: -1; height: 6px; background: var(--gold); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .72fr); gap: 62px; align-items: center; padding: 70px 0; }
.hero-copy { max-width: 690px; }
.hero .eyebrow { color: #ffd066; }
.hero h1 { color: var(--white); }
.hero h1 span { color: var(--gold); }
.hero .lead { max-width: 660px; color: #e1e8f1; font-size: 1.2rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 19px; margin: 27px 0 34px; color: #f2f5f9; font-size: .93rem; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 18px; color: var(--gold); }
.hero-form-card { padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(255,255,255,.98); box-shadow: var(--shadow); color: var(--ink); }
.hero-form-card h2 { margin-bottom: 8px; font-size: 1.65rem; }
.hero-form-card > p { margin-bottom: 22px; color: var(--muted); font-size: .95rem; }

.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.quote-form .full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: #2c3e57; font-size: .79rem; font-weight: 800; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  border: 1px solid #ccd5e1;
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 105px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(245,168,0,.14); }
.consent { grid-column: 1/-1; display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: #5d6b7d; font-size: .72rem; line-height: 1.45; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold-dark); }
.consent a { color: var(--navy); text-decoration: underline; }
.recaptcha-wrap { grid-column: 1/-1; overflow: hidden; }
.quote-form .btn { grid-column: 1/-1; width: 100%; }
.form-message { grid-column: 1/-1; min-height: 22px; margin: 0; font-size: .86rem; font-weight: 700; }
.form-success { color: var(--success); }
.form-error { color: var(--error); }

.trust-strip { position: relative; z-index: 3; margin-top: -1px; background: var(--white); box-shadow: 0 15px 40px rgba(3,28,67,.06); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 118px; display: flex; align-items: center; gap: 15px; padding: 25px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 45px; height: 45px; flex: 0 0 45px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: #fff4d5; }
.trust-icon svg { width: 22px; }
.trust-item strong { display: block; color: var(--navy); font-family: 'Montserrat'; font-size: 1.05rem; line-height: 1.25; }
.trust-item small { color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card { position: relative; min-height: 510px; display: flex; overflow: hidden; align-items: end; border-radius: var(--radius); background: var(--navy); box-shadow: 0 18px 45px rgba(3,28,67,.12); }
.service-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,18,46,.98) 0%, rgba(3,28,67,.55) 48%, rgba(3,28,67,.04) 76%); }
.service-card:hover > img { transform: scale(1.045); }
.service-content { position: relative; z-index: 2; padding: 38px; color: #e8edf4; }
.service-number { display: inline-flex; margin-bottom: 14px; color: var(--gold); font-size: .8rem; font-weight: 800; letter-spacing: .12em; }
.service-content h3 { color: var(--white); font-size: 2rem; }
.service-content p { max-width: 470px; color: #dbe3ed; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 800; }
.text-link svg { width: 18px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.about-visual { position: relative; }
.about-visual > img { width: 100%; min-height: 570px; object-fit: cover; border-radius: var(--radius); }
.experience-card { position: absolute; left: -35px; bottom: 34px; width: 215px; padding: 25px; border-left: 5px solid var(--gold); border-radius: 0 12px 12px 0; background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.experience-card strong { display: block; color: var(--gold); font-family: 'Montserrat'; font-size: 2.3rem; line-height: 1; }
.experience-card span { font-size: .9rem; line-height: 1.3; }
.check-list { display: grid; gap: 14px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 25px 1fr; gap: 11px; align-items: start; }
.check-list svg { width: 22px; color: var(--gold-dark); }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.stat { padding-right: 16px; }
.stat strong { display: block; color: var(--navy); font-family: 'Montserrat'; font-size: 1.75rem; }
.stat span { color: var(--muted); font-size: .85rem; }

.why-section { overflow: hidden; background: var(--navy); color: #dce6f2; }
.why-section h2, .why-section h3 { color: var(--white); }
.why-section .lead { color: #c8d3e1; }
.why-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.feature-card { padding: 27px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.055); }
.feature-card .trust-icon { margin-bottom: 18px; }
.feature-card p { margin-bottom: 0; color: #bdcadb; font-size: .94rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.process-card { position: relative; padding: 32px 27px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.process-card::before { counter-increment: step; content: '0' counter(step); display: block; margin-bottom: 28px; color: var(--gold-dark); font-family: 'Montserrat'; font-size: 1.05rem; font-weight: 800; }
.process-card:not(:last-child)::after { content: ''; position: absolute; top: 43px; right: -15px; z-index: 2; width: 28px; height: 2px; background: var(--gold); }
.process-card p { margin: 0; color: var(--muted); font-size: .93rem; }

.service-area { background: var(--soft); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.map-card { position: relative; min-height: 420px; overflow: hidden; border-radius: var(--radius); background: radial-gradient(circle at 58% 44%, rgba(245,168,0,.25) 0 8%, transparent 8.5%), linear-gradient(140deg,#092c58,#031c43); box-shadow: var(--shadow); }
.map-card::before { content: ''; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px); background-size: 44px 44px; transform: rotate(-9deg) scale(1.2); }
.map-radius { position: absolute; left: 50%; top: 48%; width: 280px; height: 280px; transform: translate(-50%,-50%); border: 1px solid rgba(245,168,0,.65); border-radius: 50%; box-shadow: 0 0 0 40px rgba(245,168,0,.07),0 0 0 80px rgba(245,168,0,.04); }
.map-pin { position: absolute; left: 50%; top: 48%; transform: translate(-50%,-50%); display: grid; place-items: center; width: 66px; height: 66px; border: 8px solid rgba(255,255,255,.17); border-radius: 50%; color: var(--navy); background: var(--gold); background-clip: padding-box; }
.map-pin svg { width: 25px; }
.map-label { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); width: max-content; max-width: 90%; padding: 12px 18px; border-radius: 8px; color: white; background: rgba(0,0,0,.28); font-weight: 700; text-align: center; backdrop-filter: blur(8px); }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 30px; }
.area-tags span { padding: 9px 13px; border: 1px solid #d5dee9; border-radius: 999px; color: var(--navy); background: var(--white); font-size: .87rem; font-weight: 700; }

.project-highlight { padding: 80px 0; background: linear-gradient(105deg, var(--gold) 0%, #ffbd2e 100%); }
.highlight-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.project-highlight h2 { max-width: 760px; margin-bottom: 10px; font-size: clamp(2rem,3.2vw,3.2rem); }
.project-highlight p { max-width: 760px; margin: 0; color: #3b3c40; }

.faq-list { max-width: 880px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 0; border: 0; color: var(--navy); background: transparent; font-family: 'Montserrat'; font-size: 1.04rem; font-weight: 700; text-align: left; }
.faq-question svg { width: 22px; flex: 0 0 22px; transition: transform .22s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 48px 24px 0; color: var(--muted); }

.cta-band { padding: 85px 0; color: var(--white); background: var(--navy); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { margin: 0; color: #cbd6e5; }

.site-footer { padding: 74px 0 0; color: #b9c6d8; background: #02142f; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .72fr 1fr; gap: 55px; padding-bottom: 55px; }
.footer-brand img { width: 168px; padding: 9px; border-radius: 8px; background: var(--white); }
.footer-brand p { max-width: 330px; margin: 22px 0; }
.footer-title { margin-bottom: 21px; color: var(--white); font-family: 'Montserrat'; font-size: 1rem; font-weight: 700; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--gold); }
.contact-link { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin-bottom: 13px; }
.contact-link svg { width: 18px; margin-top: 4px; color: var(--gold); }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: .83rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 19px; }

.page-hero { position: relative; isolation: isolate; min-height: 410px; display: grid; align-items: center; color: var(--white); background: var(--navy) url('../images/lima-hero.webp') center 48%/cover no-repeat; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(2,18,46,.96),rgba(3,28,67,.66)); }
.page-hero h1 { color: var(--white); font-size: clamp(2.7rem,5vw,4.8rem); }
.page-hero p { max-width: 670px; margin: 0; color: #e1e9f3; font-size: 1.12rem; }
.breadcrumb { margin-bottom: 14px; color: #f8c249; font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 370px; gap: 70px; align-items: start; }
.sidebar-card { position: sticky; top: 120px; padding: 30px; border-radius: 16px; color: #e1e9f3; background: var(--navy); }
.sidebar-card h3 { color: var(--white); }
.sidebar-card .btn { width: 100%; margin-top: 9px; }
.prose h2 { margin-top: 42px; font-size: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: #516278; }
.prose ul { padding-left: 22px; }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 70px; }
.service-detail:nth-child(even) .service-detail-image { order: 2; }
.service-detail-image img { width: 100%; min-height: 430px; object-fit: cover; border-radius: var(--radius); }

.contact-layout { display: grid; grid-template-columns: .77fr 1.23fr; gap: 45px; align-items: start; }
.contact-panel { padding: 42px; border-radius: var(--radius); color: #dce5ef; background: var(--navy); }
.contact-panel h2 { color: white; }
.contact-panel .contact-link { margin: 25px 0; }
.contact-panel .contact-link strong { color: white; }
.contact-form-card { padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(3,28,67,.08); }

.scroll-modal { position: fixed; inset: 0; z-index: 3000; display: none; place-items: center; padding: 20px; background: rgba(1,12,31,.76); backdrop-filter: blur(5px); }
.scroll-modal.show { display: grid; animation: fadeIn .25s ease; }
.modal-card { position: relative; width: min(870px,100%); display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border-radius: 20px; background: white; box-shadow: 0 35px 90px rgba(0,0,0,.32); }
.modal-art { position: relative; min-height: 500px; background: var(--navy) url('../images/lima-plastering.webp') center/cover no-repeat; }
.modal-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(3,28,67,.82),rgba(3,28,67,.08)); }
.modal-badge { position: absolute; z-index: 2; left: 25px; bottom: 25px; padding: 15px 18px; border-left: 4px solid var(--gold); color: white; background: rgba(3,28,67,.9); font-weight: 700; }
.modal-content { padding: 42px; }
.modal-content h2 { font-size: 2.2rem; }
.modal-content > p { color: var(--muted); }
.modal-close { position: absolute; z-index: 3; top: 14px; right: 14px; width: 39px; height: 39px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--navy); background: #edf1f5; }
.modal-close svg { width: 19px; }

.mobile-actions { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 1060px) {
  .nav { gap: 20px; }
  .nav .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr .82fr; gap: 32px; }
  .about-split, .area-grid { gap: 45px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  body { font-size: 16px; padding-bottom: 69px; }
  .section { padding: 78px 0; }
  .topbar { display: none; }
  .header-inner { min-height: 76px; }
  .brand img { width: 124px; height: 62px; }
  .mobile-toggle { display: inline-flex; }
  .nav { position: fixed; inset: 76px 0 auto; display: grid; gap: 0; padding: 12px 20px 24px; visibility: hidden; opacity: 0; transform: translateY(-10px); background: white; box-shadow: 0 18px 35px rgba(3,28,67,.12); transition: .2s ease; }
  .nav.open { visibility: visible; opacity: 1; transform: none; }
  .nav a:not(.btn) { padding: 14px 3px; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { display: inline-flex; margin-top: 14px; }
  .hero { min-height: auto; background-position: 62% center; }
  .hero::before { background: rgba(2,18,46,.86); }
  .hero-grid { grid-template-columns: 1fr; padding: 70px 0; }
  .hero-copy { max-width: 740px; }
  .hero-form-card { max-width: 620px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-split, .why-grid, .area-grid, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .about-visual { max-width: 650px; }
  .experience-card { left: 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card:not(:last-child)::after { display: none; }
  .highlight-grid, .cta-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .service-detail { gap: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .mobile-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2000; display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); box-shadow: 0 -9px 30px rgba(0,0,0,.18); }
  .mobile-actions a { min-height: 69px; display: flex; align-items: center; justify-content: center; gap: 9px; color: white; font-weight: 800; }
  .mobile-actions a:first-child { color: var(--navy); background: var(--gold); }
  .mobile-actions svg { width: 20px; }
  .grecaptcha-badge { bottom: 82px !important; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  h1 { font-size: clamp(2.42rem, 12vw, 3.4rem); }
  h2 { font-size: 2rem; }
  .hero-grid { padding: 54px 0; }
  .hero .lead { font-size: 1.05rem; }
  .hero-proof { display: grid; gap: 10px; }
  .hero-form-card { padding: 23px 18px; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form .full, .quote-form .btn, .consent, .recaptcha-wrap, .form-message { grid-column: 1; }
  .g-recaptcha { transform: scale(.88); transform-origin: 0 0; margin-bottom: -9px; }
  .trust-grid, .services-grid, .feature-grid, .process-grid, .stats-row, .service-detail, .modal-card { grid-template-columns: 1fr; }
  .trust-item { min-height: 95px; padding: 19px 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card { min-height: 465px; }
  .service-content { padding: 28px 23px; }
  .about-visual > img { min-height: 430px; }
  .experience-card { left: 13px; bottom: 13px; width: 190px; }
  .stats-row { gap: 18px; }
  .stat { padding: 0 0 15px; border-bottom: 1px solid var(--line); }
  .project-highlight { padding: 62px 0; }
  .faq-question { font-size: .95rem; }
  .faq-answer p { padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 37px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 22px 0; }
  .service-detail:nth-child(even) .service-detail-image { order: 0; }
  .service-detail-image img { min-height: 340px; }
  .contact-panel, .contact-form-card { padding: 29px 21px; }
  .modal-card { max-height: calc(100vh - 30px); overflow-y: auto; }
  .modal-art { display: none; }
  .modal-content { padding: 48px 21px 25px; }
  .modal-content h2 { font-size: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
