/* =========================================================
   Sun Solutions LLC — Light UI redesign
   Palette sampled from the logo (gold → orange → red)
   ========================================================= */

:root {
  /* Brand */
  --gold:        #FBB034;
  --orange:      #F26522;
  --orange-mid:  #F4801F;
  --red:         #E12D2B;
  --grad: linear-gradient(135deg, var(--gold) 0%, var(--orange) 52%, var(--red) 100%);
  --grad-soft: linear-gradient(135deg, #FFE7B8 0%, #FFD0A0 55%, #FFC0B0 100%);

  /* Light surfaces */
  --bg:        #FFFCF8;   /* warm off-white page */
  --bg-2:      #FFF6EE;   /* faint warm panel */
  --surface:   #FFFFFF;
  --line:      #F0E6DC;   /* hairline borders */

  /* Ink */
  --ink:       #20140C;   /* near-black, warm */
  --ink-2:     #5B4B40;   /* muted body text */
  --ink-3:     #8A7A6E;   /* captions */

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(120, 70, 20, .06);
  --shadow:    0 14px 40px -18px rgba(180, 80, 20, .28);
  --shadow-lg: 0 30px 70px -28px rgba(180, 70, 20, .35);
  --ring: 0 0 0 4px rgba(242, 101, 34, .15);

  --radius:   18px;
  --radius-lg: 28px;
  --radius-sm: 12px;

  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  font-weight: 800;
}

.container { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: .8rem 1.4rem; border-radius: 100px; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn .ic { width: 1.05em; height: 1.05em; flex: none; }
.btn:active { transform: translateY(1px); }

.btn-solid {
  background: var(--grad); color: #fff;
  box-shadow: 0 10px 24px -10px rgba(226, 60, 30, .65);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(226, 60, 30, .7); }

.btn-outline {
  background: var(--surface); color: var(--ink); border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink-2); padding-inline: .6rem; }
.btn-ghost:hover { color: var(--orange); }

.btn-light { background: #fff; color: var(--orange); box-shadow: var(--shadow); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-lg { padding: 1rem 1.7rem; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: .55rem 0;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 252, 248, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  opacity: 0; transition: opacity .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled::before { opacity: 1; border-bottom-color: var(--line); }
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand-logo { height: 52px; width: auto; transition: height .3s; }
.site-header.scrolled .brand-logo { height: 44px; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav-link {
  font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  color: var(--ink-2); padding: .5rem .85rem; border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--orange); background: var(--bg-2); }
.nav-call { font-size: .92rem; margin-left: .4rem; }
.nav-call .ic { width: 1em; height: 1em; }
.nav-quote { margin-left: .3rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 0;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 3.5rem; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(255,252,248,0) 58%, var(--bg) 100%),
    linear-gradient(100deg, rgba(255,252,248,.98) 0%, rgba(255,252,248,.93) 24%, rgba(255,251,246,.72) 50%, rgba(255,249,242,.5) 76%, rgba(255,248,240,.44) 100%),
    url('../assets/images/work/farm-commercial.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center 40%;
  background-repeat: no-repeat;
}
.hero-glow {
  position: absolute; top: -25%; right: -10%; width: 70vw; height: 70vw; max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, rgba(251, 176, 52, .22), rgba(242, 101, 34, .1) 40%, transparent 68%);
  pointer-events: none; z-index: 0; opacity: .7;
}
.hero-rays {
  position: absolute; top: -20%; right: 4%; width: 460px; height: 460px; z-index: 0; pointer-events: none;
  background: repeating-conic-gradient(from 0deg, rgba(242,101,34,.05) 0deg 6deg, transparent 6deg 18deg);
  border-radius: 50%; mask-image: radial-gradient(circle, transparent 30%, #000 31%, #000 60%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, transparent 30%, #000 31%, #000 60%, transparent 70%);
  animation: spin 90s linear infinite; opacity: .7;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  color: var(--ink-2); font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  padding: .45rem .9rem; border-radius: 100px; margin-bottom: 1.3rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px rgba(242,101,34,.18); }

.hero-title { font-size: clamp(2.3rem, 5.2vw, 3.85rem); margin-bottom: 1.1rem; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-2); max-width: 34ch; margin-bottom: 1.8rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.4rem; color: var(--ink-2); font-weight: 500; font-size: .95rem; }
.hero-trust li { display: flex; align-items: center; gap: .45rem; }
.check { width: 18px; height: 18px; color: var(--orange); flex: none; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card-main {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 2rem; position: relative; overflow: hidden;
}
.hero-card-main::before {
  content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: .5;
  mask-image: radial-gradient(circle at 70% 0%, #000, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at 70% 0%, #000, transparent 60%);
}
.hero-card-sun { position: relative; display: flex; justify-content: center; margin-bottom: 1rem; }
.hero-card-sun img { width: 72%; filter: drop-shadow(0 14px 24px rgba(242,101,34,.28)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-card-stat { position: relative; text-align: center; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: 3rem; color: var(--orange); letter-spacing: -.03em; }
.stat-suffix { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--red); }
.hero-card-stat .stat-label { display: block; color: var(--ink-2); font-size: .92rem; margin-top: .2rem; }

.hero-chip {
  position: absolute; background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow); border-radius: 16px; padding: .75rem .9rem;
  display: flex; align-items: center; gap: .65rem; max-width: 230px;
}
.hero-chip .ic { width: 30px; height: 30px; padding: 6px; border-radius: 9px; background: var(--bg-2); color: var(--orange); flex: none; }
.hero-chip strong { display: block; font-family: var(--font-head); font-size: .92rem; }
.hero-chip span { font-size: .8rem; color: var(--ink-3); }
.chip-1 { top: 6%; left: -7%; animation: float 7s ease-in-out infinite; }
.chip-2 { bottom: 4%; right: -6%; animation: float 8s ease-in-out infinite .5s; }

/* Cert strip */
.cert-strip {
  margin-top: 3rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .8rem 2rem; padding: 1.2rem 1.5rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.cert-label { color: var(--ink-3); font-size: .9rem; font-weight: 500; }
.cert-list { display: flex; flex-wrap: wrap; gap: .6rem 2rem; align-items: center; }
.cert-list li {
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink);
  letter-spacing: -.01em; opacity: .82; position: relative;
}
.cert-list li::before { content: ""; }

/* ---------- Stats ---------- */
.stats { padding: 1.5rem 0 1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat {
  text-align: center; padding: 1.6rem 1rem; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.stat-value { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.stat-value .stat, .stat-value span { color: var(--orange); }
.stat-value { color: var(--orange); }
.stat-text { color: var(--ink-2); font-size: .92rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: .8rem;
}
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: .9rem; }
.section-lead { color: var(--ink-2); font-size: 1.08rem; }

/* ---------- Services cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }

.card-featured {
  background: linear-gradient(180deg, #FFFFFF, #FFF8F1);
  border-color: rgba(242,101,34,.25); box-shadow: var(--shadow);
}
.card-featured::after { transform: scaleX(1); }
.card-badge {
  position: absolute; top: 1.3rem; right: 1.3rem; background: var(--grad); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .04em;
  padding: .3rem .7rem; border-radius: 100px; text-transform: uppercase;
}
.card-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--red); margin-bottom: 1.2rem;
}
.card-icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.32rem; margin-bottom: .6rem; }
.card > p { color: var(--ink-2); margin-bottom: 1.1rem; font-size: .98rem; }
.card-list { display: grid; gap: .5rem; margin-bottom: 1.4rem; }
.card-list li { position: relative; padding-left: 1.6rem; color: var(--ink-2); font-size: .94rem; }
.card-list li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 16px; height: 9px;
  border-left: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}
.card-link {
  font-family: var(--font-head); font-weight: 700; color: var(--orange);
  display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s;
}
.card-link span { transition: transform .25s; }
.card-link:hover span { transform: translateX(4px); }

/* ---------- Our Work / gallery ---------- */
.work { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.shot {
  position: relative; padding: 0; border: 0; cursor: pointer; overflow: hidden;
  border-radius: var(--radius); background: var(--bg-2); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(20,12,6,.6)); transition: opacity .3s; }
.shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.shot:hover img { transform: scale(1.07); }
.shot-cap {
  position: absolute; left: 1rem; bottom: .85rem; z-index: 2; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; letter-spacing: -.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,.45); padding-right: 2.6rem; text-align: left;
}
.shot-zoom {
  position: absolute; top: .8rem; right: .8rem; z-index: 2; width: 36px; height: 36px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--orange);
  opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s;
}
.shot-zoom svg { width: 18px; height: 18px; }
.shot:hover .shot-zoom, .shot:focus-visible .shot-zoom { opacity: 1; transform: scale(1); }
.shot:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
/* feature tiles (desktop) */
.shot:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.shot:nth-child(2) { grid-column: span 2; }
.shot:nth-child(3) { grid-column: span 2; }
.shot:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.shot:nth-child(5) { grid-column: span 2; }
.shot:nth-child(6) { grid-column: span 2; }

/* featured commercial banner */
.shot-banner { width: 100%; aspect-ratio: 12 / 5; margin-bottom: 1rem; display: block; }
.shot-banner .shot-cap { font-size: 1.18rem; bottom: 1.1rem; left: 1.2rem; }
.shot-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .74rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .38rem .85rem; border-radius: 100px; box-shadow: 0 8px 18px -8px rgba(226,60,30,.6);
}

.work-cta { text-align: center; margin-top: 2.2rem; color: var(--ink-2); font-size: 1.05rem; }
.work-cta a { color: var(--orange); font-family: var(--font-head); font-weight: 700; white-space: nowrap; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(18,10,4,.88); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 4vmin; opacity: 0; transition: opacity .3s;
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lb-stage { margin: 0; max-width: 1100px; width: 100%; display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.lb-stage img {
  max-width: 100%; max-height: 80vh; border-radius: 14px; object-fit: contain;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); transform: scale(.96); transition: transform .3s var(--ease);
}
.lightbox.open .lb-stage img { transform: scale(1); }
.lb-cap { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1rem; text-align: center; opacity: .92; }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.13); color: #fff; border: 0; cursor: pointer;
  border-radius: 50%; line-height: 1; display: grid; place-items: center; transition: background .2s, transform .2s;
}
.lb-close { top: 1.1rem; right: 1.3rem; width: 48px; height: 48px; font-size: 1.9rem; }
.lb-close:hover { background: rgba(255,255,255,.28); transform: rotate(90deg); }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lb-nav:hover { background: rgba(255,255,255,.28); }
.lb-prev { left: 1.3rem; }
.lb-next { right: 1.3rem; }

/* ---------- Why ---------- */
.why { background: var(--bg-2); }
.why-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why-copy .section-title { text-align: left; }
.why-copy .btn { margin-top: 1.6rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--grad-soft); color: var(--red); display: grid; place-items: center; margin-bottom: .9rem; }
.feature-ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.feature p { color: var(--ink-2); font-size: .92rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step { position: relative; padding: 1.8rem 1.4rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  margin-bottom: 1rem; box-shadow: 0 10px 20px -8px rgba(226,60,30,.55);
}
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { color: var(--ink-2); font-size: .93rem; }

/* ---------- Maintenance CTA ---------- */
.maint-cta-wrap { padding-block: clamp(1rem, 3vw, 2rem); }
.maint-cta {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--grad); color: #fff;
  padding: clamp(2.2rem, 5vw, 3.6rem); display: flex; align-items: center; justify-content: space-between;
  gap: 1.8rem; flex-wrap: wrap; box-shadow: var(--shadow-lg);
}
.maint-rays {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background: repeating-conic-gradient(from 0deg at 80% 120%, rgba(255,255,255,.18) 0deg 5deg, transparent 5deg 16deg);
}
.maint-copy { position: relative; max-width: 60ch; }
.maint-cta h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: .6rem; }
.maint-cta p { color: rgba(255,255,255,.92); font-size: 1.05rem; }
.maint-cta .btn { position: relative; }

/* ---------- Service area ---------- */
.area-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.area-copy .section-title { text-align: left; }
.area-list { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.4rem 0 1.2rem; }
.area-list li {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 100px;
  padding: .5rem 1.1rem; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink-2);
}
.area-list li:last-child { background: var(--grad-soft); border-color: transparent; color: var(--red); }
.area-note { color: var(--ink-2); }
.area-note a { color: var(--orange); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.area-visual { display: grid; place-items: center; }
.area-pin-card {
  position: relative; display: grid; place-items: center; gap: .3rem; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 3rem 2.5rem; width: 100%; max-width: 340px;
  overflow: hidden;
}
.area-pin-card::before {
  content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: .35;
  mask-image: radial-gradient(circle at 50% 0, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 0, #000, transparent 70%);
}
.area-pin { width: 54px; height: 54px; color: var(--orange); position: relative; }
.area-pin-card strong { font-family: var(--font-head); font-size: 1.15rem; position: relative; }
.area-pin-card span { color: var(--ink-2); position: relative; }

/* ---------- Contact ---------- */
.contact { background: var(--bg-2); }
.contact-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info .section-title { text-align: left; }
.contact-list { display: grid; gap: 1rem; margin-top: 1.8rem; }
.contact-list li { display: flex; gap: 1rem; align-items: center; }
.contact-ic { width: 48px; height: 48px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); color: var(--orange); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.contact-ic svg { width: 22px; height: 22px; }
.contact-k { display: block; font-size: .82rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.contact-list a { font-family: var(--font-head); font-weight: 700; color: var(--ink); transition: color .2s; }
.contact-list a:hover { color: var(--orange); }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .95rem; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: var(--ring); }
.field input.invalid, .field textarea.invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(225,45,43,.12); }
.form-note { text-align: center; color: var(--ink-3); font-size: .88rem; margin-top: 1rem; }
.form-note.success { color: #1a8a4a; font-weight: 600; }
.form-note.error { color: var(--red); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #1B130D; color: #E9DDD2; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.2rem; }
.footer-logo { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: #B7A99C; font-size: .94rem; max-width: 34ch; }
.footer-col { display: flex; flex-direction: column; gap: .65rem; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: .4rem; letter-spacing: .02em; }
.footer-col a, .footer-addr { color: #B7A99C; font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-addr { line-height: 1.5; }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  color: #8A7B6E; font-size: .86rem;
}

/* ---------- Floating call button (mobile) ---------- */
.float-call {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--grad); color: #fff;
  display: none; place-items: center; box-shadow: 0 12px 28px -8px rgba(226,60,30,.7);
  animation: pulse 2.6s ease-in-out infinite;
}
.float-call svg { width: 26px; height: 26px; }
@keyframes pulse { 0%,100% { box-shadow: 0 12px 28px -8px rgba(226,60,30,.7), 0 0 0 0 rgba(242,101,34,.5); } 50% { box-shadow: 0 12px 28px -8px rgba(226,60,30,.7), 0 0 0 14px rgba(242,101,34,0); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 360px; margin-inline: auto; order: -1; }
  .hero-sub { max-width: 48ch; }
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(255,252,248,.9) 0%, rgba(255,251,246,.84) 48%, var(--bg) 100%),
      url('../assets/images/work/farm-commercial.jpg');
    background-position: center, center top; background-size: cover, cover;
  }
  .why-inner, .area-inner, .contact-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .shot { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 3 / 2; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .3rem;
    background: var(--surface); padding: 5.5rem 1.5rem 2rem; box-shadow: -20px 0 60px -20px rgba(80,40,10,.35);
    transform: translateX(100%); transition: transform .35s var(--ease); z-index: 95;
  }
  .nav.open { transform: translateX(0); }
  .nav-link { padding: .85rem 1rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-call, .nav-quote { margin: .6rem 0 0; justify-content: center; }
  .nav-call { order: 5; }
  .nav-toggle { display: flex; z-index: 96; }
  .float-call { display: grid; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(20,12,6,.4); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 94; }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}

@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .shot-banner { aspect-ratio: 3 / 2; }
  .maint-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-bottom { flex-direction: column; }
  .lb-prev { left: .4rem; } .lb-next { right: .4rem; }
  .lb-nav { width: 44px; height: 44px; }
  .lb-close { top: .5rem; right: .6rem; }
}

@media (max-width: 430px) {
  .stats-grid, .steps, .footer-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-chip { display: none; }
  .container { width: min(100% - 2rem, var(--maxw)); }
}
