/* =========================================================
   D&H Pro Painting — Design Tokens
   Navy: #0A1F3D (deep) / #123561 (mid) / #1E4D8C (accent)
   Paper: #F4F6F9 / White: #FFFFFF / Steel: #A9BBD6
   Display: Fraunces | Script: Caveat | Body/UI: Inter
========================================================= */

:root{
  --navy-deep:   #0A1F3D;
  --navy-mid:    #123561;
  --navy-accent: #1E5FA8;
  --navy-line:   #23507F;
  --paper:       #F4F6F9;
  --white:       #FFFFFF;
  --steel:       #A9BBD6;
  --steel-dim:   #7C93B8;
  --ink:         #0E1B2B;

  --font-display: "Fraunces", Georgia, serif;
  --font-script:  "Caveat", cursive;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 3px;
  --container: 1180px;
  --edge: 24px;
}

@media (max-width:480px){
  :root{ --edge: 18px; }
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ margin:0; font-family:var(--font-display); font-weight:600; line-height:1.05; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

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

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--navy-accent);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* =========================================================
   Roller-stroke signature element
   A torn/ragged-edge navy stripe, like a fresh coat of paint
   being rolled across the page. Used as underline + divider.
========================================================= */
.roller-stroke{
  display:block;
  width:100%;
  height:22px;
  border:0;
  background: var(--navy-accent);
  clip-path: polygon(
    0% 30%, 3% 10%, 7% 45%, 11% 5%, 15% 40%, 19% 15%, 24% 50%,
    28% 8%, 33% 42%, 38% 12%, 43% 48%, 48% 6%, 53% 44%, 58% 18%,
    63% 50%, 68% 10%, 73% 46%, 78% 14%, 83% 48%, 88% 8%, 93% 44%,
    97% 16%, 100% 40%,
    100% 100%, 0% 100%
  );
}
.roller-stroke.short{ width:88px; height:14px; }
.roller-stroke.accent-white{ background:var(--white); }
.roller-stroke.accent-navy{ background:var(--navy-deep); }

/* underline variant sitting just under a headline word */
.stroke-under{ position:relative; display:inline-block; }
.stroke-under::after{
  content:"";
  position:absolute;
  left:-2%; right:-2%; bottom:-0.12em;
  height:0.32em;
  background:var(--navy-accent);
  clip-path: polygon(
    0% 35%, 4% 8%, 9% 48%, 14% 12%, 19% 42%, 25% 6%, 31% 46%,
    37% 14%, 43% 44%, 49% 10%, 55% 48%, 61% 16%, 67% 42%,
    73% 8%, 79% 46%, 85% 14%, 91% 44%, 96% 10%, 100% 38%,
    100% 100%, 0% 100%
  );
  z-index:-1;
  transform-origin:left center;
  transform:scaleX(0);
  animation: roll-in 0.9s cubic-bezier(.22,.68,.35,1) 0.25s forwards;
}
@media (prefers-reduced-motion: reduce){
  .stroke-under::after{ animation:none; transform:scaleX(1); }
}
@keyframes roll-in{ to{ transform:scaleX(1); } }

/* =========================================================
   Header
========================================================= */
.site-header{
  position:sticky; top:0; z-index:50;
  background:var(--navy-deep);
  border-bottom:1px solid var(--navy-line);
  padding-left:env(safe-area-inset-left);
  padding-right:env(safe-area-inset-right);
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:84px; gap:24px;
}
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:1; min-width:0; }
.brand img{ height:56px; width:56px; flex-shrink:0; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; min-width:0; }
.brand-text .name{ font-family:var(--font-display); font-size:1.15rem; color:var(--white); letter-spacing:0.02em; white-space:nowrap; }
.brand-text .tag{ font-family:var(--font-script); font-size:1.05rem; color:var(--steel); white-space:nowrap; }

.main-nav ul{ display:flex; gap:32px; }
.main-nav a{
  color:var(--steel);
  font-size:0.92rem;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  padding:6px 2px;
  border-bottom:2px solid transparent;
  transition:color .2s, border-color .2s;
}
.main-nav a:hover, .main-nav a.active{ color:var(--white); border-color:var(--navy-accent); }

.header-cta{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.call-btn{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--navy-accent);
  color:var(--white);
  font-weight:700;
  font-size:0.92rem;
  padding:11px 18px;
  border-radius:var(--radius);
  white-space:nowrap;
  transition:background .2s, transform .2s;
  min-height:44px;
}
.call-btn:hover{ background:#256bbd; transform:translateY(-1px); }
.call-btn svg{ width:16px; height:16px; flex-shrink:0; }

.nav-toggle{ display:none; }

@media (max-width:900px){
  .main-nav{ display:none; }
  .nav-toggle{
    display:inline-flex; align-items:center; justify-content:center;
    background:none; border:1px solid var(--navy-line);
    color:var(--white); padding:10px 12px; border-radius:var(--radius);
    min-width:44px; min-height:44px; flex-shrink:0;
  }
  .brand-text .tag{ display:none; }
}

@media (max-width:480px){
  .site-header .wrap{ height:68px; gap:10px; }
  .brand{ gap:8px; }
  .brand img{ height:40px; width:40px; }
  .brand-text .name{ font-size:0.82rem; }
  .header-cta{ gap:8px; }
  .header-cta .call-btn{ padding:0; width:44px; height:44px; justify-content:center; border-radius:50%; }
  .header-cta .call-btn .call-label{ display:none; }
  .header-cta .call-btn svg{ width:18px; height:18px; }
  .nav-toggle{ min-width:40px; min-height:40px; padding:8px; }
}

/* mobile menu drawer */
.mobile-nav{
  display:none;
  background:var(--navy-mid);
  border-bottom:1px solid var(--navy-line);
}
.mobile-nav.open{ display:block; }
.mobile-nav ul{ padding:18px var(--edge); display:flex; flex-direction:column; gap:4px; }
.mobile-nav a{
  display:block; padding:12px 4px; color:var(--white);
  font-weight:600; text-transform:uppercase; font-size:0.9rem; letter-spacing:0.04em;
  border-bottom:1px solid var(--navy-line);
}
.mobile-nav .call-btn{ margin-top:14px; justify-content:center; }

/* =========================================================
   Hero
========================================================= */
.hero{
  background:var(--navy-deep);
  color:var(--white);
  position:relative;
  overflow:hidden;
  padding:88px 0 96px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 82% 15%, rgba(30,95,168,0.35), transparent 55%),
    radial-gradient(ellipse at 8% 90%, rgba(30,95,168,0.20), transparent 50%);
  pointer-events:none;
}
.hero .wrap{ position:relative; display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center; }

.badges-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:26px; }
.pill{
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,0.07);
  border:1px solid var(--navy-line);
  color:var(--steel);
  font-size:0.78rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  padding:7px 13px; border-radius:20px;
}
.pill svg{ width:13px; height:13px; }
.pill.on{ background:var(--navy-accent); color:var(--white); border-color:var(--navy-accent); }

.hero h1{
  font-size:clamp(2.4rem, 4.4vw, 3.6rem);
  color:var(--white);
  margin-bottom:22px;
}
.hero .script{
  display:block;
  font-family:var(--font-script);
  color:var(--steel);
  font-size:1.6rem;
  margin-bottom:8px;
}
.hero p.lede{
  font-size:1.08rem;
  color:var(--steel);
  max-width:46ch;
  line-height:1.6;
  margin-bottom:34px;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; }

.btn{
  display:inline-flex; align-items:center; gap:9px;
  padding:15px 26px;
  font-weight:700; font-size:0.95rem;
  border-radius:var(--radius);
  border:1px solid transparent;
  transition:transform .2s, background .2s, border-color .2s;
}
.btn svg{ width:17px; height:17px; }
.btn-primary{ background:var(--navy-accent); color:var(--white); }
.btn-primary:hover{ background:#256bbd; transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--white); border-color:var(--steel-dim); }
.btn-ghost:hover{ border-color:var(--white); transform:translateY(-2px); }
.btn-block{ width:100%; justify-content:center; }

.hero-art{ position:relative; display:flex; justify-content:center; align-items:center; }
.hero-badge{
  background:var(--navy-mid);
  border:1px solid var(--navy-line);
  border-radius:6px;
  padding:40px 34px;
  text-align:center;
  position:relative;
  width:100%;
  max-width:340px;
}
.hero-badge img{ height:120px; width:120px; margin:0 auto 18px; }
.hero-badge .hb-title{ font-family:var(--font-display); color:var(--white); font-size:1.3rem; margin-bottom:6px; }
.hero-badge .hb-sub{ font-family:var(--font-script); color:var(--steel); font-size:1.2rem; margin-bottom:20px; }
.hero-badge .hb-phone{ font-family:var(--font-display); color:var(--white); font-size:1.5rem; font-weight:700; letter-spacing:0.02em; }
.hero-badge .hb-note{ color:var(--steel-dim); font-size:0.78rem; margin-top:6px; text-transform:uppercase; letter-spacing:0.06em; }

@media (max-width:940px){
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-art{ order:-1; }
}

@media (max-width:480px){
  .hero{ padding:48px 0 56px; }
  .hero-badge{ padding:30px 22px; max-width:280px; }
  .hero-badge img{ height:90px; width:90px; }
  .hero-badge .hb-phone{ font-size:1.25rem; }
  .badges-row{ gap:8px; }
  .pill{ font-size:0.72rem; padding:6px 11px; }
  .hero-ctas{ flex-direction:column; }
  .hero-ctas .btn{ width:100%; justify-content:center; }
}

/* =========================================================
   Section basics
========================================================= */
section{ padding:88px 0; }
@media (max-width:480px){
  section{ padding:52px 0; }
  .section-head{ margin-bottom:36px; }
}
.section-head{ max-width:640px; margin-bottom:56px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:0.8rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--navy-accent); margin-bottom:14px;
}
.eyebrow .roller-stroke{ width:34px; height:9px; }
.section-head h2{ font-size:clamp(1.7rem,3vw,2.4rem); color:var(--navy-deep); }
.section-head p{ margin-top:16px; color:#425879; font-size:1.02rem; line-height:1.6; }
.section-head.on-navy h2{ color:var(--white); }
.section-head.on-navy p{ color:var(--steel); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.section-navy{ background:var(--navy-deep); color:var(--white); }
.section-paper{ background:var(--paper); }
.section-white{ background:var(--white); }

/* =========================================================
   Services grid
========================================================= */
.services-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.service-card{
  background:var(--white);
  border:1px solid #E2E8F2;
  border-radius:4px;
  padding:32px 26px;
  position:relative;
  transition:transform .25s, box-shadow .25s;
}
.service-card:hover{ transform:translateY(-4px); box-shadow:0 16px 34px rgba(10,31,61,0.12); }
.service-card .icon{
  width:52px; height:52px;
  display:flex; align-items:center; justify-content:center;
  background:var(--navy-deep); border-radius:4px; margin-bottom:20px;
}
.service-card .icon svg{ width:26px; height:26px; stroke:var(--white); }
.service-card h3{ font-size:1.15rem; color:var(--navy-deep); margin-bottom:10px; }
.service-card p{ color:#5A6E8C; font-size:0.94rem; line-height:1.55; }

@media (max-width:980px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .services-grid{ grid-template-columns:1fr; } }

/* =========================================================
   About / bio split
========================================================= */
.about-split{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center; }
.about-portrait{
  aspect-ratio:1/1;
  background:var(--navy-deep);
  border-radius:4px;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.about-portrait::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(30,95,168,0.5), transparent 60%);
}
.about-portrait img{ height:44%; width:44%; opacity:0.9; position:relative; }
.about-copy .eyebrow{ margin-bottom:12px; }
.about-copy h2{ font-size:clamp(1.6rem,2.8vw,2.2rem); color:var(--navy-deep); margin-bottom:20px; }
.about-copy p{ color:#425879; font-size:1.02rem; line-height:1.7; margin-bottom:18px; }
.about-note{
  margin-top:24px;
  border-left:3px solid var(--navy-accent);
  padding:14px 20px;
  background:var(--paper);
  border-radius:0 4px 4px 0;
}
.about-note p{ margin:0; font-size:0.98rem; color:var(--navy-deep); }
.about-note .script{ font-family:var(--font-script); font-size:1.3rem; color:var(--navy-accent); }

@media (max-width:900px){ .about-split{ grid-template-columns:1fr; } .about-portrait{ max-width:320px; margin:0 auto; } }

/* =========================================================
   Feature stats (why choose us)
========================================================= */
.stats-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--navy-line); border:1px solid var(--navy-line); }
.stat-item{ background:var(--navy-mid); padding:40px 32px; }
.stat-item h3{ color:var(--white); font-size:2.2rem; margin-bottom:8px; }
.stat-item p{ color:var(--steel); font-size:0.92rem; line-height:1.5; }
@media (max-width:760px){ .stats-row{ grid-template-columns:1fr; } }

/* =========================================================
   Gallery teaser (home) + full gallery grid (gallery page)
========================================================= */
.gallery-teaser{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:18px; }
.teaser-tile{
  aspect-ratio:4/3;
  border-radius:4px;
  position:relative;
  overflow:hidden;
  display:flex; align-items:flex-end;
}
.teaser-tile:first-child{ grid-row:span 2; aspect-ratio:auto; }
.teaser-tile .tag{
  position:relative; z-index:2;
  color:var(--white); font-weight:700; font-size:0.82rem;
  text-transform:uppercase; letter-spacing:0.05em;
  padding:16px 18px;
}
.teaser-tile::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(10,31,61,0.85), rgba(10,31,61,0.1) 55%); z-index:1; }

.teaser-tile{ background-size:cover; background-position:center; }
.tile-1{ background-image: url('https://images.unsplash.com/photo-1574359411659-15573a27fd0c?fm=jpg&q=70&w=1200&auto=format&fit=crop'); }
.tile-2{ background-image: url('https://images.unsplash.com/photo-1717281234297-3def5ae3eee1?fm=jpg&q=70&w=1200&auto=format&fit=crop'); }
.tile-3{ background-image: url('https://images.unsplash.com/photo-1733431772808-82d878e59000?fm=jpg&q=70&w=1200&auto=format&fit=crop'); }
.tile-4{ background-image: url('https://images.pexels.com/photos/30958770/pexels-photo-30958770.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.tile-5{ background-image: url('https://images.unsplash.com/photo-1759406066673-f76869a4e6db?fm=jpg&q=70&w=1200&auto=format&fit=crop'); }
.tile-6{ background-image: url('https://images.unsplash.com/photo-1675191863404-e1db618d6655?fm=jpg&q=70&w=1200&auto=format&fit=crop'); }

@media (max-width:760px){
  .gallery-teaser{ grid-template-columns:1fr 1fr; }
  .teaser-tile:first-child{ grid-column:span 2; grid-row:auto; aspect-ratio:16/9; }
}

/* gallery page grid */
.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:44px; }
.filter-btn{
  padding:10px 20px; border-radius:20px;
  border:1px solid #C9D5E6; background:var(--white);
  font-size:0.85rem; font-weight:700; letter-spacing:0.03em; text-transform:uppercase;
  color:var(--navy-deep);
  transition:background .2s, color .2s, border-color .2s;
}
.filter-btn:hover{ border-color:var(--navy-accent); }
.filter-btn.active{ background:var(--navy-deep); color:var(--white); border-color:var(--navy-deep); }

.masonry-grid{ column-count:3; column-gap:20px; }
.g-item{
  break-inside:avoid;
  margin-bottom:20px;
  border-radius:4px;
  overflow:hidden;
  position:relative;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end;
  color:var(--white);
  padding:22px 22px;
  min-height:200px;
  background-size:cover;
  background-position:center;
}
.g-item::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(10,31,61,0.88) 0%, rgba(10,31,61,0.15) 60%);
  z-index:0;
}
.g-item > *{ position:relative; z-index:1; }
.g-item svg{ display:none; }
.g-item .g-cat{ font-size:0.72rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--steel); margin-bottom:6px; }
.g-item .g-label{ font-family:var(--font-display); font-size:1.05rem; text-align:left; }
.g-item.hidden{ display:none; }
.gallery-photo-credit{ margin-top:10px; font-size:0.72rem; color:#9AB0CC; }

.gallery-note{
  margin-top:40px; padding:22px 26px;
  background:var(--paper); border:1px dashed #C9D5E6; border-radius:4px;
  color:#425879; font-size:0.92rem; line-height:1.6;
}
.gallery-note strong{ color:var(--navy-deep); }

@media (max-width:900px){ .masonry-grid{ column-count:2; } }
@media (max-width:560px){ .masonry-grid{ column-count:1; } }

/* =========================================================
   Testimonial strip
========================================================= */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-card{ background:var(--white); border:1px solid #E2E8F2; border-radius:4px; padding:30px; }
.testi-stars{ color:var(--navy-accent); font-size:1rem; margin-bottom:16px; letter-spacing:2px; }
.testi-card p{ color:#425879; font-size:0.98rem; line-height:1.65; margin-bottom:18px; }
.testi-name{ font-weight:700; color:var(--navy-deep); font-size:0.92rem; }
.testi-loc{ color:#7C93B8; font-size:0.82rem; }
@media (max-width:860px){ .testi-grid{ grid-template-columns:1fr; } }

/* =========================================================
   CTA banner
========================================================= */
.cta-banner{
  background:var(--navy-accent);
  color:var(--white);
  padding:64px 0;
  position:relative;
  overflow:hidden;
}
.cta-banner .wrap{ position:relative; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:28px; }
.cta-banner h2{ font-size:clamp(1.5rem,2.6vw,2rem); color:var(--white); max-width:20ch; }
.cta-banner .btn-ghost{ border-color:rgba(255,255,255,0.5); }

@media (max-width:640px){
  .cta-banner{ padding:44px 0; }
  .cta-banner .wrap{ flex-direction:column; align-items:flex-start; text-align:left; }
  .cta-banner .btn{ width:100%; justify-content:center; }
}

/* =========================================================
   Footer
========================================================= */
footer{ background:var(--navy-deep); color:var(--steel); padding:64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ height:44px; width:44px; }
.footer-brand .name{ font-family:var(--font-display); color:var(--white); font-size:1.1rem; }
.footer-col h4{ color:var(--white); font-size:0.85rem; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:18px; }
.footer-col ul li{ margin-bottom:11px; font-size:0.92rem; }
.footer-col a:hover{ color:var(--white); }
.footer-col p{ font-size:0.92rem; line-height:1.6; }
.footer-bottom{
  border-top:1px solid var(--navy-line);
  padding-top:24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:0.82rem; color:var(--steel-dim);
}
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* =========================================================
   Contact page
========================================================= */
.contact-grid{ display:grid; grid-template-columns:1.2fr 0.9fr; gap:56px; align-items:start; }
.form-card{ background:var(--white); border:1px solid #E2E8F2; border-radius:4px; padding:40px; }
.form-card h3{ color:var(--navy-deep); font-size:1.35rem; margin-bottom:8px; }
.form-card > p{ color:#5A6E8C; font-size:0.95rem; margin-bottom:30px; }

.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.form-field{ display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.form-field label{ font-size:0.82rem; font-weight:700; color:var(--navy-deep); text-transform:uppercase; letter-spacing:0.04em; }
.form-field input, .form-field select, .form-field textarea{
  border:1px solid #C9D5E6; border-radius:4px; padding:13px 14px;
  font-family:inherit; font-size:16px; color:var(--ink); background:var(--paper);
  transition:border-color .2s, background .2s;
  -webkit-appearance:none; appearance:none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  border-color:var(--navy-accent); background:var(--white); outline:none;
}
.form-field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:0.82rem; color:#7C93B8; margin-top:14px; }
.form-success{
  display:none; align-items:center; gap:12px;
  background:#EAF3FF; border:1px solid #BBD6F5; color:var(--navy-deep);
  padding:16px 18px; border-radius:4px; margin-bottom:22px; font-size:0.92rem;
}
.form-success.show{ display:flex; }
.form-success svg{ width:20px; height:20px; flex-shrink:0; color:var(--navy-accent); }

@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }

.contact-side{ display:flex; flex-direction:column; gap:20px; }
.info-card{ background:var(--navy-deep); color:var(--white); border-radius:4px; padding:34px; }
.info-card h3{ font-size:1.2rem; margin-bottom:6px; }
.info-card .script{ font-family:var(--font-script); color:var(--steel); font-size:1.15rem; margin-bottom:22px; display:block; }
.info-line{ display:flex; gap:14px; align-items:flex-start; padding:14px 0; border-top:1px solid var(--navy-line); }
.info-line:first-of-type{ border-top:none; }
.info-line svg{ width:20px; height:20px; flex-shrink:0; color:var(--steel); margin-top:2px; }
.info-line .label{ font-size:0.72rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--steel-dim); margin-bottom:3px; }
.info-line .value{ font-size:0.98rem; color:var(--white); font-weight:600; }
.info-line .value.big{ font-size:1.3rem; font-family:var(--font-display); }

.area-card{ background:var(--white); border:1px solid #E2E8F2; border-radius:4px; padding:30px; }
.area-card h4{ color:var(--navy-deep); font-size:1rem; margin-bottom:14px; }
.area-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.area-tags span{
  background:var(--paper); border:1px solid #DCE5F2; color:var(--navy-deep);
  font-size:0.82rem; font-weight:600; padding:7px 13px; border-radius:16px;
}

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

/* page hero (gallery/contact — smaller than home hero) */
.page-hero{ background:var(--navy-deep); color:var(--white); padding:64px 0 58px; }
.page-hero h1{ font-size:clamp(2rem,4vw,2.8rem); color:var(--white); }
.page-hero p{ color:var(--steel); margin-top:14px; max-width:52ch; font-size:1.02rem; }

/* =========================================================
   Small phone refinements (iPhone SE through 14 Pro Max)
========================================================= */
@media (max-width:480px){
  .page-hero{ padding:40px 0 36px; }
  .form-card{ padding:26px 20px; }
  .info-card{ padding:26px 22px; }
  .area-card{ padding:22px; }
  .service-card{ padding:24px 20px; }
  .about-note{ padding:12px 16px; }
  .form-row{ grid-template-columns:1fr; gap:0; }
  .mobile-nav ul{ padding:14px var(--edge); }
  .filter-bar{ gap:8px; }
  .filter-btn{ padding:9px 14px; font-size:0.78rem; }
  .stat-item{ padding:30px 22px; }
  .testi-card{ padding:24px 20px; }
}
