:root {
  --navy: #0c2436;
  --navy-2: #15384d;
  --ink: #172a35;
  --muted: #687b84;
  --lime: #b9e43b;
  --lime-soft: #eef8d4;
  --mint: #dff4ea;
  --cyan-soft: #dff3f5;
  --paper: #f4f7f4;
  --white: #fff;
  --line: #dfe8e3;
  --shadow: 0 24px 70px rgb(28 59 47 / 9%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: linear-gradient(145deg, #f7faf7 0%, #edf4f0 52%, #f3f7f4 100%); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
main { min-height: 100vh; background: radial-gradient(circle at 10% 10%, rgb(185 228 59 / 13%), transparent 22%), radial-gradient(circle at 88% 27%, rgb(74 198 210 / 9%), transparent 21%), radial-gradient(circle at 14% 64%, rgb(185 228 59 / 7%), transparent 19%), radial-gradient(circle at 86% 82%, rgb(74 198 210 / 6%), transparent 18%); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: absolute; z-index: 30; top: 20px; left: 50%;
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 42px;
  width: min(1236px, calc(100% - 40px)); height: 72px; padding: 0 14px 0 18px;
  border: 1px solid rgb(255 255 255 / 70%); border-radius: 24px;
  background: rgb(255 255 255 / 76%); box-shadow: 0 12px 38px rgb(30 61 49 / 7%);
  backdrop-filter: blur(20px); transform: translateX(-50%);
}
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand strong { display: block; color: #75a916; font-size: 30px; font-weight: 850; line-height: .85; letter-spacing: -.055em; }
.brand small { display: block; margin-top: 6px; color: #1d2c26; font-size: 9px; font-weight: 650; line-height: 1.05; letter-spacing: .025em; }
nav { display: flex; justify-self: end; gap: 24px; color: #6d961b; font-size: 11px; font-weight: 780; }
nav a { padding: 12px 0; transition: color .2s ease; }
nav a:hover { color: #3e6506; }
nav a.menu-action { padding: 11px 14px; border-radius: 13px; }
nav a.menu-action.primary { color: white; background: var(--navy); box-shadow: 0 8px 22px rgb(12 36 54 / 13%); }
nav a.menu-action.primary:hover { color: white; background: #15384d; }
nav a.menu-action.secondary { margin-right: 7px; border: 1px solid #d7e6b2; color: #557b0d; background: var(--lime-soft); }
nav a.menu-action.secondary:hover { color: #3e6506; background: #e5f5bc; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; min-width: 126px; padding: 6px 11px 6px 7px; border: 1px solid #dce6e1; border-radius: 14px; color: var(--navy); background: white; line-height: 1; box-shadow: 0 7px 20px rgb(28 59 47 / 7%); }
.header-phone i, .header-phone-mobile i { display: grid; flex: 0 0 auto; place-items: center; width: 27px; height: 27px; border-radius: 9px; color: #557d0d; background: var(--lime-soft); font-family: "Segoe UI Symbol", "Apple Symbols", sans-serif; font-size: 16px; font-style: normal; font-weight: 700; line-height: 1; }
.header-phone strong { font-size: 12px; font-weight: 820; white-space: nowrap; }
.header-phone-mobile { display: none; align-items: center; gap: 6px; padding: 5px 9px 5px 5px; border: 1px solid #d7e6b2; border-radius: 12px; color: #49680d; background: white; font-size: 10px; font-weight: 850; white-space: nowrap; box-shadow: 0 6px 18px rgb(28 59 47 / 7%); }
.header-phone-mobile i { width: 24px; height: 24px; border-radius: 8px; font-size: 14px; }
.header-phone-mobile strong { font: inherit; }
.mobile-menu { position: relative; display: none; justify-self: end; }
.mobile-menu > button { display: grid; width: 42px; height: 42px; padding: 11px; place-content: center; gap: 4px; border: 0; border-radius: 14px; color: white; background: var(--navy); box-shadow: 0 8px 22px rgb(12 36 54 / 14%); cursor: pointer; }
.mobile-menu > button span { display: block; width: 19px; height: 2px; border-radius: 99px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.mobile-menu.open > button span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu.open > button span:nth-child(2) { opacity: 0; }
.mobile-menu.open > button span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu-panel { position: absolute; top: 50px; right: 0; display: grid; width: min(270px, calc(100vw - 40px)); padding: 9px; border: 1px solid rgb(255 255 255 / 82%); border-radius: 20px; background: rgb(255 255 255 / 96%); box-shadow: 0 22px 55px rgb(20 54 41 / 18%); backdrop-filter: blur(18px); }
.mobile-menu:not(.open) .mobile-menu-panel { display: none; }
.mobile-menu-panel a { padding: 13px 14px; border-radius: 13px; color: #4f7411; font-size: 12px; font-weight: 780; }
.mobile-menu-panel a:hover { background: var(--lime-soft); }
.mobile-menu-panel a.menu-action { margin-bottom: 6px; text-align: center; }
.mobile-menu-panel a.menu-action.primary { color: white; background: var(--navy); }
.mobile-menu-panel a.menu-action.secondary { border: 1px solid #d7e6b2; color: #557b0d; background: var(--lime-soft); }

.hero {
  position: relative; min-height: 700px; overflow: hidden; isolation: isolate;
  display: block;
  padding: 145px max(24px, calc((100% - 1200px) / 2)) 110px;
  background: transparent;
}
.hero::before { content: ""; position: absolute; z-index: 0; right: -120px; bottom: -150px; width: 760px; height: 460px; border: 1px solid rgb(110 198 169 / 28%); border-radius: 50%; transform: rotate(-15deg); box-shadow: 0 0 0 44px rgb(185 228 59 / 8%), 0 0 0 92px rgb(74 198 210 / 6%); }
.hero-glow { position: absolute; z-index: -1; border-radius: 999px; filter: blur(20px); }
.hero-glow-one { right: 18%; bottom: 14%; width: 420px; height: 130px; background: rgb(185 228 59 / 12%); transform: rotate(-14deg); }
.hero-glow-two { left: 24%; top: 27%; width: 340px; height: 100px; background: rgb(65 195 211 / 9%); }
.hero-pattern { position: absolute; z-index: 1; top: 11%; left: 50%; width: min(72vw, 940px); aspect-ratio: 1.35; overflow: hidden; border-radius: 50%; opacity: .44; transform: translateX(-50%) rotate(-9deg); mask-image: radial-gradient(ellipse at center, #000 15%, rgb(0 0 0 / 82%) 48%, transparent 73%); background-image: radial-gradient(circle, rgb(105 170 71 / 38%) 1.25px, transparent 1.7px); background-size: 16px 16px; }
.hero-pattern::before, .hero-pattern::after { content: ""; position: absolute; border-radius: 50%; }
.hero-pattern::before { inset: 19% -14% 16% 4%; border: 2px solid rgb(118 173 29 / 32%); box-shadow: 0 0 0 24px rgb(185 228 59 / 7%), 0 0 0 48px rgb(55 190 196 / 6%); }
.hero-pattern::after { inset: 34% -2% 28% 18%; border: 2px solid rgb(54 190 198 / 32%); box-shadow: 0 0 0 18px rgb(99 206 163 / 7%); }
.hero-copy { position: relative; z-index: 2; max-width: 1040px; margin: 0 auto; padding-top: 58px; text-align: center; }
.eyebrow { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 0 25px; color: #688078; font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: #8dbc17; box-shadow: 0 0 0 6px rgb(185 228 59 / 18%); }
h1 { max-width: 1000px; margin: 0 auto; color: var(--navy); font-size: clamp(58px, 7.2vw, 102px); line-height: .98; font-weight: 720; letter-spacing: -.065em; }
h1 em { position: relative; display: inline-block; color: #79a914; font-style: normal; font-weight: 650; }
h1 em::after { content: ""; position: absolute; z-index: -1; right: -9px; bottom: 6px; left: -4px; height: 17px; border-radius: 99px; background: rgb(185 228 59 / 24%); transform: rotate(-1deg); }
.hero-lead { max-width: 650px; margin: 27px auto 0; color: #657982; font-size: 16px; line-height: 1.75; }
.service-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 36px; }
.service-tags span { padding: 8px 11px; border: 1px solid #dfe8e3; border-radius: 999px; color: #778982; background: rgb(255 255 255 / 52%); font-size: 9px; font-weight: 700; }

.lookup-wrap { position: relative; z-index: 5; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(40px, 7vw, 96px); width: min(1200px, calc(100% - 40px)); margin: -62px auto 0; padding: 38px 44px; border: 1px solid rgb(255 255 255 / 90%); border-radius: 34px; background: rgb(255 255 255 / 87%); box-shadow: var(--shadow); backdrop-filter: blur(22px); }
.section-kicker { margin: 0 0 10px; color: #749b18; font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.lookup-intro h2, .section-heading h2, .inquiry-copy h2, .contact-main h2 { margin: 0; color: var(--navy); font-size: clamp(27px, 3vw, 43px); line-height: 1.08; letter-spacing: -.045em; }
.lookup-intro > p:last-child { margin: 15px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.lookup-card { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.lookup-card label span, .inquiry-form label > span { display: block; margin: 0 0 7px 2px; color: #60736c; font-size: 9px; font-weight: 850; letter-spacing: .04em; }
.lookup-card input, .inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; border: 1px solid #dce6e1; outline: none; border-radius: 16px; color: var(--ink); background: #f8faf9; transition: border .2s, box-shadow .2s, background .2s; }
.lookup-card input { height: 54px; padding: 0 16px; font-size: 13px; }
.lookup-card input:focus, .inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: #9cc73b; background: white; box-shadow: 0 0 0 4px rgb(185 228 59 / 15%); }
.lookup-card button { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; height: 55px; padding: 0 19px; border: 0; border-radius: 16px; color: white; background: var(--navy); font-size: 12px; font-weight: 850; cursor: pointer; }
.lookup-card button span { color: var(--lime); font-size: 18px; }
.lookup-card button:disabled, .inquiry-form button:disabled { opacity: .65; cursor: wait; }
.lookup-card small { grid-column: 1 / -1; color: #809089; font-size: 9px; text-align: center; }
.lookup-card small i { color: #7ca718; font-style: normal; font-weight: 900; }
.form-message { margin: 12px 0 0; padding: 11px 13px; border-radius: 13px; font-size: 11px; }
.form-message.error { color: #a23c36; background: #fff0ee; }
.form-message.success { color: #25633f; background: #e8f7ee; }
.hidden { display: none !important; }
.repair-result { margin-top: 13px; padding: 16px; border-radius: 18px; background: var(--mint); }
.repair-result div { display: flex; justify-content: space-between; gap: 10px; }
.repair-result small { color: #527365; font-weight: 800; }
.repair-result strong { color: #245b40; }
.repair-result p { margin: 8px 0 0; color: #456258; font-size: 12px; }
.repair-result > span { display: block; margin-top: 8px; color: #537167; font-size: 10px; }

.services-section, .faq-section { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.services-section { padding: 72px 0 28px; }
.faq-section { padding: 28px 0 52px; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 16px; margin-bottom: 26px; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.services-grid article { display: flex; align-items: flex-start; gap: 22px; min-height: 185px; padding: 26px; border: 1px solid rgb(255 255 255 / 85%); border-radius: 26px; background: rgb(255 255 255 / 70%); box-shadow: 0 14px 40px rgb(24 58 44 / 5%); }
.service-icon { display: grid; flex: 0 0 auto; width: 58px; height: 58px; place-items: center; border-radius: 20px; color: var(--navy); }
.service-icon svg { width: 31px; height: 31px; }
.service-icon.cyan { background: var(--cyan-soft); }
.service-icon.lime { background: var(--lime-soft); }
.service-icon.blue { background: #e6edf6; }
.services-grid h3 { margin: 3px 0 9px; color: var(--navy); font-size: 18px; letter-spacing: -.025em; }
.services-grid article p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.services-grid article small { display: block; margin-top: 16px; color: #85948e; font-size: 9px; font-weight: 700; }

.inquiry-section { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 16px; width: min(1200px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0; }
.inquiry-copy { display: flex; flex-direction: column; padding: 32px; border: 1px solid rgb(255 255 255 / 80%); border-radius: 30px; background: #e9f0ec; }
.inquiry-copy > p:nth-of-type(2) { margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.inquiry-note { display: flex; align-items: center; gap: 14px; margin-top: auto; padding: 15px; border-radius: 18px; background: var(--lime-soft); }
.inquiry-note b { display: grid; min-width: 44px; height: 44px; place-items: center; border-radius: 14px; color: #516f12; background: white; font-size: 10px; }
.inquiry-note span { color: #5d7154; font-size: 11px; }
.inquiry-note a { display: block; margin-top: 3px; color: var(--navy); font-size: 15px; font-weight: 800; }
.inquiry-form { padding: 30px; border: 1px solid white; border-radius: 30px; background: rgb(255 255 255 / 82%); box-shadow: var(--shadow); }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inquiry-form label { display: block; margin-bottom: 13px; }
.inquiry-form input, .inquiry-form select { height: 53px; padding: 0 15px; font-size: 12px; }
.inquiry-form textarea { min-height: 122px; padding: 14px 15px; resize: vertical; font-size: 12px; }
.photo-upload { margin: 0 0 14px; padding: 13px; border: 1px dashed #cbdcd4; border-radius: 17px; background: #f8faf9; }
.photo-upload-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.photo-upload-head b { display: block; color: #40584e; font-size: 11px; }
.photo-upload-head small { display: block; margin-top: 3px; color: #788980; font-size: 9px; }
.inquiry-form .photo-picker { flex: 0 0 auto; margin: 0; padding: 10px 12px; border: 1px solid #bdd39a; border-radius: 11px; color: #587812; background: var(--lime-soft); font-size: 10px; font-weight: 850; cursor: pointer; }
.photo-input { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.photo-preview { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 7px; margin-top: 11px; }
.photo-preview figure { position: relative; aspect-ratio: 1; margin: 0; overflow: hidden; border-radius: 11px; background: #e5ebe8; }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview figcaption { position: absolute; right: 0; bottom: 0; left: 0; overflow: hidden; padding: 12px 5px 4px; color: white; background: linear-gradient(transparent,#152c24d9); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.photo-preview figure.no-preview img { display: none; }
.photo-preview figure.no-preview::before { content: 'HEIC'; position: absolute; inset: 0; display: grid; place-items: center; color: #547064; font-size: 10px; font-weight: 850; }
.photo-error { margin: 9px 0 0; color: #a23c36; font-size: 9px; }
.inquiry-form .consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 4px; }
.inquiry-form .consent input { width: 17px; height: 17px; margin-top: 1px; accent-color: #7fab19; }
.inquiry-form .consent span { margin: 0; color: #75857e; font-size: 9px; line-height: 1.5; }
.inquiry-form button { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 55px; margin-top: 10px; padding: 0 18px; border: 0; border-radius: 16px; color: white; background: var(--navy); font-size: 12px; font-weight: 850; cursor: pointer; }
.inquiry-form button span { color: var(--lime); font-size: 18px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.faq-grid details { border: 1px solid #e2e9e5; border-radius: 20px; background: rgb(255 255 255 / 68%); }
.faq-grid summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 66px; padding: 0 20px; color: var(--navy); font-size: 12px; font-weight: 780; cursor: pointer; list-style: none; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary span { display: grid; min-width: 28px; height: 28px; place-items: center; border-radius: 10px; color: #688d13; background: var(--lime-soft); font-size: 16px; transition: transform .2s ease; }
.faq-grid details[open] summary span { transform: rotate(45deg); }
.faq-grid details p { margin: -2px 20px 20px; padding-top: 13px; border-top: 1px solid #e7ece9; color: var(--muted); font-size: 11px; line-height: 1.75; }

.contact-section { display: grid; grid-template-columns: .72fr .88fr 1.15fr; grid-template-areas: "main info photo"; align-items: stretch; gap: 18px; width: min(1200px, calc(100% - 40px)); margin: 0 auto 24px; padding: 42px; border-radius: 38px; color: white; background: linear-gradient(145deg, #0a2031, #11364b); }
.contact-main { grid-area: main; }
.contact-info-cards { grid-area: info; display: flex; align-items: center; }
.contact-main h2 { max-width: 350px; color: white; font-size: clamp(28px, 2.6vw, 37px); }
.contact-address { display: inline-block; margin-top: 22px; color: rgb(255 255 255 / 72%); font-size: 15px; line-height: 1.45; }
.contact-address span { color: var(--lime); }
.contact-card { width: 100%; padding: 21px; border: 1px solid rgb(255 255 255 / 9%); border-radius: 22px; background: rgb(255 255 255 / 5%); }
.contact-card small { color: rgb(255 255 255 / 45%); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.contact-card > a { display: block; margin-top: 9px; color: var(--lime); font-size: 18px; font-weight: 800; }
.contact-card .contact-email-label { display: block; margin-top: 18px; }
.contact-card > a.contact-email { color: rgb(255 255 255 / 78%); font-size: 13px; font-weight: 700; overflow-wrap: anywhere; }
.contact-card hr { margin: 23px 0; border: 0; border-top: 1px solid rgb(255 255 255 / 9%); }
.contact-card p { margin: 9px 0 0; color: rgb(255 255 255 / 72%); font-size: 12px; line-height: 1.8; }
.contact-photo { position: relative; grid-area: photo; height: 390px; min-height: 0; overflow: hidden; border: 1px solid rgb(255 255 255 / 12%); border-radius: 26px; background: #1b3b42; }
.contact-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgb(5 24 33 / 72%)); }
.contact-photo img, .contact-photo picture { display: block; width: 100%; height: 100%; }
.contact-photo img { object-fit: cover; object-position: 50% center; filter: saturate(.9) contrast(.96); transition: transform .4s ease; }
.contact-photo:hover img { transform: scale(1.015); }
.contact-photo span { position: absolute; z-index: 2; right: 22px; bottom: 20px; left: 22px; color: white; font-size: 11px; font-weight: 800; }

.site-footer { position: relative; display: flex; min-height: 108px; align-items: center; justify-content: center; gap: 9px; width: 100%; margin: 38px 0 0; padding: 35px 20px 32px; overflow: visible; border-top: 1px solid rgb(47 104 77 / 10%); color: #586e64; background: linear-gradient(180deg, rgb(22 67 52 / 5%), rgb(22 67 52 / 10%)); box-shadow: inset 0 16px 32px rgb(255 255 255 / 20%); font-size: 11px; }
.site-footer::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; display: block; height: 28px; background: linear-gradient(180deg, rgb(28 75 59 / 0%), rgb(28 75 59 / 5%)); pointer-events: none; }
.site-footer strong, .site-footer span { position: relative; z-index: 1; }
.site-footer strong { color: #669713; font-size: 17px; font-weight: 850; letter-spacing: -.03em; }
.site-footer span { font-weight: 680; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 9px; }
  nav { display: none; }
  .header-phone-mobile { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-menu { display: block; }
  .lookup-wrap, .section-heading, .inquiry-section { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .inquiry-section { gap: 38px; }
  .inquiry-note { margin-top: 24px; }
  .contact-section { grid-template-columns: 1fr; grid-template-areas: "main" "photo" "info"; }
  .contact-main { margin-bottom: 12px; }
  .contact-photo { height: 390px; min-height: 0; }
  .site-footer { display: flex; }
}

@media (max-width: 720px) {
  .site-header { top: 10px; width: calc(100% - 20px); height: 64px; padding-left: 12px; border-radius: 20px; }
  .brand strong { font-size: 26px; }
  .brand small { margin-top: 5px; font-size: 7.5px; }
  .header-phone-mobile { padding: 5px 8px 5px 5px; font-size: 9px; }
  .mobile-menu > button { width: 40px; height: 40px; border-radius: 13px; }
  .hero { min-height: auto; padding: 116px 20px 112px; }
  .hero-copy { padding-top: 36px; }
  .hero-pattern { top: 24%; left: 50%; width: 520px; opacity: .34; }
  h1 { font-size: clamp(47px, 13vw, 68px); }
  .hero-lead { font-size: 14px; }
  .lookup-wrap { width: calc(100% - 20px); margin-top: -82px; padding: 28px 20px; border-radius: 28px; }
  .lookup-card, .field-pair { grid-template-columns: 1fr; }
  .lookup-card button, .lookup-card small { grid-column: auto; }
  .services-section, .faq-section { width: calc(100% - 24px); }
  .services-section { padding: 54px 0 22px; }
  .faq-section { padding: 22px 0 44px; }
  .section-heading { gap: 18px; margin-bottom: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid article { min-height: 180px; padding: 22px; border-radius: 24px; }
  .service-icon { width: 52px; height: 52px; border-radius: 18px; }
  .service-icon svg { width: 28px; height: 28px; }
  .contact-section { width: calc(100% - 16px); padding: 28px 18px; border-radius: 30px; }
  .inquiry-section { width: calc(100% - 24px); padding: 22px 0; }
  .inquiry-copy { padding: 24px; border-radius: 25px; }
  .inquiry-form { padding: 21px; border-radius: 25px; }
  .photo-upload-head { align-items: flex-start; }
  .photo-preview { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .contact-photo { height: 310px; min-height: 0; border-radius: 23px; }
  .contact-card { min-height: auto; }
  .site-footer { min-height: 96px; width: 100%; margin-top: 32px; padding: 31px 16px 28px; }
}

@media (max-width: 420px) { .brand small { font-size: 6.8px; letter-spacing: 0; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
