:root {
  --green-900: #123d2a;
  --green-700: #1f5e3b;
  --green-500: #5f8d4e;
  --gold: #c8a45d;
  --gold-light: #e4cf9a;
  --beige: #f5f0e6;
  --white: #ffffff;
  --ink: #142019;
  --muted: #6a746d;
  --shadow: 0 24px 80px rgba(18, 61, 42, 0.16);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --photo-natural: saturate(0.88) contrast(0.96) brightness(1.01);
  --photo-natural-hover: saturate(0.94) contrast(0.99) brightness(1.01);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--beige);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--white);
  color: var(--green-900);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 18px auto 0;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 61, 42, 0.16);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(18, 61, 42, 0.92);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: contain;
  border: 1px solid rgba(228, 207, 154, 0.55);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.94);
  image-rendering: -webkit-optimize-contrast;
}

.brand-text {
  font-size: 0.92rem;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.88);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96) brightness(1.02);
  transform: scale(1.03);
  animation: heroDrift 18s ease-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 18, 11, 0.78), rgba(3, 18, 11, 0.32) 48%, rgba(3, 18, 11, 0.64)),
    linear-gradient(180deg, rgba(3, 18, 11, 0.3), rgba(3, 18, 11, 0.76));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: var(--container);
  margin: 0 auto;
  padding: 150px 0 90px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8.2vw, 7.4rem);
}

h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 5rem);
}

h3 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--green-900);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-scroll {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  display: block;
  width: 1px;
  height: 58px;
  margin: 12px auto 0;
  content: "";
  background: linear-gradient(var(--gold-light), transparent);
}

.intro-band {
  padding: 34px 0;
  background: var(--green-900);
  color: var(--white);
}

.intro-grid {
  display: grid;
  width: var(--container);
  margin: 0 auto;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.12);
}

.stat {
  padding: 24px;
  background: var(--green-900);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.stat span {
  color: rgba(255, 255, 255, 0.76);
}

.tax-credit {
  padding-bottom: 34px;
}

.tax-credit-card {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(228, 207, 154, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 61, 42, 0.97), rgba(31, 94, 59, 0.94)),
    linear-gradient(120deg, rgba(228, 207, 154, 0.22), transparent);
  box-shadow: var(--shadow);
  color: var(--white);
}

.tax-credit-copy h2 {
  max-width: 820px;
  color: var(--white);
}

.tax-credit-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.tax-credit-note {
  margin-top: 18px;
  color: var(--gold-light) !important;
  font-weight: 850;
}

.tax-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  justify-self: end;
  color: var(--green-900);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, #ffffff, transparent 36%),
    linear-gradient(135deg, #ffffff, #f7f3ea);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.24),
    inset 0 -14px 36px rgba(18, 61, 42, 0.06);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tax-badge::before {
  position: absolute;
  inset: -10px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  opacity: 0.7;
  transform: scale(0.92);
}

.tax-badge:hover,
.tax-badge:focus-visible {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  outline: none;
}

.tax-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.95;
}

.tax-badge small {
  max-width: 124px;
  color: rgba(18, 61, 42, 0.84);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.tax-click-cue {
  position: absolute;
  right: -4px;
  bottom: 10px;
  width: 54px;
  height: 54px;
  fill: var(--white);
  stroke: var(--green-900);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
  filter:
    drop-shadow(0 0 1px rgba(18, 61, 42, 0.8))
    drop-shadow(0 10px 16px rgba(18, 61, 42, 0.34));
  opacity: 0;
  pointer-events: none;
  transform: translate(28px, 18px) rotate(-18deg) scale(0.86);
}

.tax-click-cue path + path {
  fill: none;
}

.tax-badge.is-cue-ready::before {
  animation: taxRing 5.5s ease-in-out infinite both;
}

.tax-badge.is-cue-ready .tax-click-cue {
  animation: taxHandClick 5.5s ease-in-out infinite both;
}

.tax-credit-details {
  display: grid;
  gap: 26px;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: start;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(18, 61, 42, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(18, 61, 42, 0.12);
}

.tax-credit-details[hidden] {
  display: none;
}

.unipro-mark {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  width: 132px;
  min-height: 82px;
  padding: 18px;
  color: var(--green-900);
  border: 1px solid rgba(200, 164, 93, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--white), rgba(228, 207, 154, 0.26));
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0;
}

.unipro-mark strong {
  color: var(--gold);
}

.tax-credit-details h3 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.tax-credit-details ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0;
  color: #3f4a43;
  font-weight: 750;
}

.tax-credit-details p {
  margin: 16px 0 0;
  color: var(--muted);
}

.tax-guide-link {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 16px;
  color: var(--green-900);
  border: 1px solid rgba(200, 164, 93, 0.44);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tax-guide-link:hover,
.tax-guide-link:focus-visible {
  box-shadow: 0 18px 45px rgba(18, 61, 42, 0.16);
  transform: translateY(-2px);
}

.guide-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(95, 141, 78, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfaf6, var(--beige));
}

.guide-page .site-header {
  background: rgba(18, 61, 42, 0.94);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.18);
}

.guide-main {
  width: var(--container);
  margin: 0 auto;
  padding: 150px 0 72px;
}

.guide-hero {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin-bottom: 44px;
}

.guide-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.guide-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #4b554e;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.guide-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 310px minmax(0, 1fr);
  align-items: start;
}

.guide-summary,
.guide-card,
.guide-cta {
  border: 1px solid rgba(18, 61, 42, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(18, 61, 42, 0.1);
}

.guide-summary {
  position: sticky;
  top: 114px;
  padding: 24px;
}

.guide-summary strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.12;
}

.guide-summary ul,
.guide-card ul,
.guide-card ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0;
}

.guide-summary p,
.guide-card p,
.guide-legal,
.guide-cta p {
  color: var(--muted);
}

.guide-steps {
  display: grid;
  gap: 18px;
}

.guide-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.guide-card > span {
  width: fit-content;
  padding: 7px 11px;
  color: var(--green-900);
  border: 1px solid rgba(200, 164, 93, 0.34);
  border-radius: 999px;
  background: rgba(228, 207, 154, 0.28);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-card h2,
.guide-cta h2 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.guide-card h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 1rem;
}

.guide-card p {
  margin: 0;
}

.guide-columns {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-columns > div,
.guide-example {
  padding: 18px;
  border: 1px solid rgba(31, 94, 59, 0.12);
  border-radius: var(--radius);
  background: rgba(245, 240, 230, 0.6);
}

.guide-example {
  display: grid;
  gap: 12px;
}

.guide-example strong {
  color: var(--green-900);
}

.guide-card-important {
  border-color: rgba(200, 164, 93, 0.38);
  background:
    linear-gradient(135deg, rgba(228, 207, 154, 0.22), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.88);
}

.guide-cta {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  padding: clamp(24px, 4vw, 40px);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

.guide-cta h2,
.guide-cta p {
  color: var(--white);
}

.guide-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-legal {
  max-width: 920px;
  margin: 24px 0 0;
  font-size: 0.92rem;
}

.guide-legal a {
  color: var(--green-900);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid,
.review-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.review-card,
.quote-form {
  border: 1px solid rgba(18, 61, 42, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 240, 230, 0.82)),
    linear-gradient(135deg, rgba(228, 207, 154, 0.24), rgba(31, 94, 59, 0.04));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green-700), var(--gold));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(200, 164, 93, 0.56);
  box-shadow: 0 28px 75px rgba(18, 61, 42, 0.15);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-featured {
  color: var(--white);
  border-color: rgba(228, 207, 154, 0.42);
  background:
    linear-gradient(145deg, rgba(18, 61, 42, 0.98), rgba(31, 94, 59, 0.96)),
    linear-gradient(135deg, rgba(228, 207, 154, 0.2), transparent);
}

.service-card-head {
  display: block;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.service-card li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  padding: 9px 11px;
  border: 1px solid rgba(31, 94, 59, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(18, 61, 42, 0.92);
  font-size: 0.94rem;
  line-height: 1.2;
}

.service-card li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.service-card-featured li {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(228, 207, 154, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.service-grid-detailed {
  gap: 54px 48px;
  align-items: start;
  margin-top: 52px;
}

.service-item {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 168px;
  padding: 4px 0 30px;
  border-bottom: 1px solid rgba(18, 61, 42, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-item:hover {
  border-color: rgba(200, 164, 93, 0.42);
  transform: translateY(-4px);
}

.service-item h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: clamp(1.35rem, 2vw, 1.78rem);
  font-weight: 900;
  line-height: 1.12;
}

.service-item p {
  max-width: 35ch;
  margin: 0;
  color: #56625a;
  font-size: 1.02rem;
  line-height: 1.86;
}

.showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 18% 8%, rgba(228, 207, 154, 0.16), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(95, 141, 78, 0.18), transparent 28%),
    linear-gradient(145deg, #06170f 0%, var(--green-900) 54%, #0c2b1d 100%);
  color: var(--white);
}

.showcase::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.34;
  pointer-events: none;
}

.showcase > * {
  position: relative;
  z-index: 1;
}

.showcase .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.gallery {
  display: grid;
  min-height: 680px;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
}

.gallery-cases {
  min-height: 0;
  align-items: stretch;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
}

.gallery-case {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(228, 207, 154, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gallery-case::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.75;
  transform: scaleX(0.42);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gallery-case:hover {
  border-color: rgba(228, 207, 154, 0.42);
  box-shadow: 0 36px 105px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.gallery-case:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.gallery-case-heading {
  position: relative;
  display: grid;
  min-height: auto;
  align-content: center;
  padding: 14px 0 2px;
  overflow: hidden;
}

.gallery-case-heading::before {
  display: none;
}

.gallery-case-heading::after {
  display: none;
}

.gallery-case-heading h3 {
  display: none;
}

.gallery-kicker {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 7px 12px;
  margin-bottom: 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(228, 207, 154, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-case-photos {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-photo-main {
  grid-column: span 2;
}

.gallery-photo-wide {
  grid-column: span 2;
}

.gallery-item,
.gallery-photo {
  position: relative;
  display: grid;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  background: #07160f;
  box-shadow: inset 0 0 0 1px rgba(228, 207, 154, 0.12);
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-photo {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.gallery-photo-main {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.gallery-photo-extra {
  display: none;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img,
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-natural);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.gallery-item::after,
.gallery-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 34%, rgba(0, 0, 0, 0.78)),
    linear-gradient(135deg, rgba(228, 207, 154, 0.12), transparent 34%);
  transition: opacity 0.3s ease;
}

.gallery-photo::before {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M10.8 4a6.8 6.8 0 1 0 0 13.6 6.8 6.8 0 0 0 0-13.6Zm0 2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm5 10.4 4 4-1.4 1.4-4-4 1.4-1.4Z'/%3E%3C/svg%3E") center / 18px no-repeat,
    rgba(3, 18, 11, 0.72);
  opacity: 0;
  transform: translateY(7px) scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.gallery-photo-main::before {
  width: 42px;
  height: 42px;
}

.gallery-photo:hover::before,
.gallery-photo:focus-visible::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-photo:hover::after,
.gallery-photo:focus-visible::after {
  opacity: 0.86;
}

.gallery-item span,
.gallery-photo span {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.gallery-photo .gallery-badge {
  top: 14px;
  right: auto;
  bottom: auto;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 8px 11px;
  color: var(--green-900);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(228, 207, 154, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-photo .gallery-badge::before,
.lightbox-stage::before {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  content: "";
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.75 3.5a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5Zm0 2a5.25 5.25 0 1 1 0 10.5 5.25 5.25 0 0 1 0-10.5Zm5.05 10.9 4.15 4.15-1.4 1.4-4.15-4.15 1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.75 3.5a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5Zm0 2a5.25 5.25 0 1 1 0 10.5 5.25 5.25 0 0 1 0-10.5Zm5.05 10.9 4.15 4.15-1.4 1.4-4.15-4.15 1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s ease;
}

.gallery-photo:hover .gallery-badge::before,
.gallery-photo:focus-visible .gallery-badge::before,
.lightbox-stage:hover::before,
.lightbox-stage:focus-visible::before {
  transform: scale(1.14);
}

.gallery-photo .gallery-badge-after {
  color: var(--white);
  border-color: rgba(228, 207, 154, 0.38);
  background: rgba(31, 94, 59, 0.96);
}

.gallery-photo > span:not(.gallery-badge) {
  display: none;
}

.gallery-item:hover img,
.gallery-item:focus-visible img,
.gallery-photo:hover img,
.gallery-photo:focus-visible img {
  filter: var(--photo-natural-hover);
  transform: scale(1.065);
}

.reels-panel {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(34px, 5vw, 62px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(228, 207, 154, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(6, 23, 15, 0.74);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.reels-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.reels-header h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1;
}

.reels-header p:not(.eyebrow) {
  max-width: 67ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.7;
}

.reels-header strong {
  color: var(--gold-light);
}

.instagram-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 13px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.instagram-profile-link::before {
  width: 18px;
  height: 18px;
  content: "";
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3.75A4.25 4.25 0 1 1 12 16.25 4.25 4.25 0 0 1 12 7.75Zm0 2A2.25 2.25 0 1 0 12 14.25 2.25 2.25 0 0 0 12 9.75ZM17.35 6.55a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3.75A4.25 4.25 0 1 1 12 16.25 4.25 4.25 0 0 1 12 7.75Zm0 2A2.25 2.25 0 1 0 12 14.25 2.25 2.25 0 0 0 12 9.75ZM17.35 6.55a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.instagram-profile-link:hover,
.instagram-profile-link:focus-visible {
  border-color: rgba(228, 207, 154, 0.54);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.reels-grid {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.instagram-reel {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #07160f;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.instagram-reel:hover,
.instagram-reel:focus-within {
  border-color: rgba(228, 207, 154, 0.48);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.instagram-reel-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #06130d;
}

.instagram-reel video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-natural);
  transition: filter 0.35s ease, transform 0.55s ease;
}

.instagram-reel-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 18, 11, 0.04), rgba(4, 18, 11, 0.5));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.instagram-reel:hover video,
.instagram-reel:focus-within video {
  filter: var(--photo-natural-hover);
  transform: scale(1.018);
}

.instagram-reel:hover .instagram-reel-media::after,
.instagram-reel:focus-within .instagram-reel-media::after {
  opacity: 0.36;
}

.instagram-reel-tag,
.instagram-reel-cue,
.instagram-reel-play {
  position: absolute;
  z-index: 1;
}

.instagram-reel-tag {
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--green-900);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-reel-play {
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(5, 24, 15, 0.66);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.instagram-reel-play::after {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
  transform: translate(-50%, -50%);
}

.instagram-reel-cue {
  right: 14px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.instagram-reel.is-playing .instagram-reel-play,
.instagram-reel.is-playing .instagram-reel-cue {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
}

.instagram-reel.is-playing .instagram-reel-cue {
  transform: translateY(5px);
}

.instagram-reel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 14px 16px;
}

.instagram-reel-footer > div {
  display: grid;
  gap: 3px;
}

.instagram-reel-footer strong {
  color: var(--white);
  font-size: 1rem;
}

.instagram-reel-footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.instagram-reel-footer > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--gold-light);
  border: 1px solid rgba(228, 207, 154, 0.28);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
}

.instagram-reel-footer > a:hover,
.instagram-reel-footer > a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.about,
.contact {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: 0.9fr 1.1fr;
}

.about {
  align-items: stretch;
  gap: clamp(34px, 6vw, 72px);
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
}

.about-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.about-logo-card {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(18, 61, 42, 0.12);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.94), transparent 36%),
    radial-gradient(circle at 14% 16%, rgba(95, 141, 78, 0.18), transparent 28%),
    radial-gradient(circle at 86% 84%, rgba(200, 164, 93, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(18, 61, 42, 0.08), rgba(228, 207, 154, 0.26)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 240, 230, 0.86));
}

.about-logo-card::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(200, 164, 93, 0.32);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.about-logo-card::after {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.58;
}

.about-logo-main {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  place-items: center;
  text-align: center;
}

.about-logo-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  margin-bottom: 18px;
  color: var(--green-900);
  border: 1px solid rgba(31, 94, 59, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-logo-card .about-logo {
  position: relative;
  z-index: 1;
  width: min(58%, 310px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(18, 61, 42, 0.18));
}

.about-logo-title {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  color: var(--green-900);
}

.about-logo-title strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1;
}

.about-logo-title span {
  color: rgba(18, 61, 42, 0.72);
  font-weight: 850;
}

.about-copy {
  display: grid;
  align-content: center;
  padding: clamp(18px, 3vw, 28px) 0;
}

.about-copy h2 {
  max-width: 760px;
}

.about-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.about-copy p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.04rem;
  line-height: 1.75;
}

.proof-list span {
  padding: 10px 12px;
  color: var(--green-900);
  border: 1px solid rgba(31, 94, 59, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.reviews {
  width: 100%;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background: #ffffff;
}

.review-card {
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  box-shadow: 0 30px 90px rgba(18, 61, 42, 0.2);
  transform: translateY(-5px);
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.1rem;
}

.review-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: #c53912;
  font-weight: 900;
}

.review-avatar-purple {
  background: #5a35b1;
}

.review-avatar-orange {
  background: #ef6c00;
}

.review-source,
.review-date {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.review-card p {
  color: #3f4a43;
}

.review-card strong {
  display: block;
  color: var(--green-900);
}

.local-seo {
  display: grid;
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

.local-seo-intro h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.local-seo-intro > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link,
.footer-more {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--green-900);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.text-link::after {
  margin-left: 10px;
  content: "→";
}

.local-links {
  display: grid;
  border-top: 1px solid rgba(18, 61, 42, 0.16);
}

.local-links a {
  display: grid;
  gap: 3px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(18, 61, 42, 0.16);
  transition: padding 0.2s ease, background 0.2s ease;
}

.local-links a:hover,
.local-links a:focus-visible {
  padding-right: 14px;
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.6);
}

.local-links strong {
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.local-links span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-details {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 30px;
}

.contact-detail {
  display: grid;
  gap: 7px;
  padding: 16px 0;
  color: var(--green-900);
  border-bottom: 1px solid rgba(18, 61, 42, 0.14);
  transition: border-color 0.2s ease;
}

.contact-detail:hover {
  border-color: rgba(200, 164, 93, 0.55);
}

.contact-detail span {
  color: rgba(18, 61, 42, 0.68);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  font-weight: 950;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.contact-detail-primary {
  border-top: 1px solid rgba(18, 61, 42, 0.14);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 61, 42, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.18);
}

.location-strip {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 26px 20px;
  color: var(--green-900);
  border-top: 1px solid rgba(18, 61, 42, 0.1);
  border-bottom: 1px solid rgba(18, 61, 42, 0.1);
  background: #f8f5ed;
}

.location-map-point {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid rgba(31, 94, 59, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.location-map-point::before {
  position: absolute;
  inset: 10px;
  content: "";
  border-radius: 50% 50% 50% 0;
  background: var(--green-700);
  transform: rotate(-45deg);
}

.location-map-point::after {
  position: absolute;
  inset: 15px;
  content: "";
  border-radius: 50%;
  background: var(--white);
}

.location-strip span {
  display: block;
  color: var(--green-900);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 900;
  line-height: 1.15;
}

.location-strip p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 34px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 34px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--green-900);
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-zones {
  display: grid;
  gap: 8px;
}

.footer-zones strong {
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-zones a,
.footer-contact a {
  transition: color 0.2s ease;
}

.footer-zones a:hover,
.footer-zones a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold-light);
}

.site-footer .footer-more {
  color: var(--white);
  font-size: 0.88rem;
}

.footer-contact {
  display: grid;
  gap: 7px;
  font-style: normal;
  overflow-wrap: anywhere;
}

.footer-contact a:first-child {
  color: var(--gold-light);
  font-size: 1.18rem;
  font-weight: 900;
}

.footer-zones-link {
  grid-column: 1 / -1;
  width: fit-content;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(228, 207, 154, 0.48);
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.footer-zones-link:hover,
.footer-zones-link:focus-visible {
  color: var(--white);
}

.sticky-quote {
  position: fixed;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.sticky-quote {
  right: 92px;
  bottom: 24px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
}

.phone-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.phone-float-trigger {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(228, 207, 154, 0.72);
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.phone-float-trigger:hover,
.phone-float-trigger:focus-visible,
.phone-float.is-open .phone-float-trigger {
  background: var(--green-700);
  transform: translateY(-2px);
}

.phone-float-trigger span {
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.4.6 3.7.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.7 21 3 13.3 3 3.8c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.7.1.4 0 .8-.3 1.1l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.4.6 3.7.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.7 21 3 13.3 3 3.8c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.7.1.4 0 .8-.3 1.1l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.phone-float-number {
  position: absolute;
  right: 0;
  bottom: 66px;
  padding: 12px 16px;
  color: var(--green-900);
  border: 1px solid rgba(228, 207, 154, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  font-weight: 950;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.phone-float.is-open .phone-float-number {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: rgba(3, 18, 11, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  position: relative;
  display: grid;
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  place-items: center;
}

.lightbox-frame img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: var(--radius);
  filter: var(--photo-natural);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

.lightbox-stage {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 82px;
  padding: 10px 14px;
  color: var(--green-900);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(228, 207, 154, 0.96);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
  cursor: help;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-stage.is-after {
  color: var(--white);
  background: rgba(31, 94, 59, 0.96);
}

.lightbox-stage[hidden],
.lightbox-description[hidden] {
  display: none;
}

.lightbox-description {
  position: absolute;
  top: 66px;
  left: 18px;
  z-index: 2;
  max-width: min(390px, calc(100% - 36px));
  padding: 14px 16px;
  color: var(--white);
  border: 1px solid rgba(228, 207, 154, 0.35);
  border-radius: var(--radius);
  background: rgba(18, 61, 42, 0.95);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox-stage:hover + .lightbox-description,
.lightbox-stage:focus + .lightbox-description,
.lightbox-stage:focus-visible + .lightbox-description {
  opacity: 1;
  transform: translateY(0);
}

.lightbox p {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 2.5rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(228, 207, 154, 0.24);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: max(20px, calc((100vw - 1180px) / 2));
}

.lightbox-next {
  right: max(20px, calc((100vw - 1180px) / 2));
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes taxRing {
  0%,
  45%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }

  16% {
    opacity: 0.72;
    transform: scale(1.04);
  }
}

@keyframes taxHandClick {
  0%,
  45%,
  100% {
    opacity: 0;
    transform: translate(28px, 18px) rotate(-18deg) scale(0.86);
  }

  12% {
    opacity: 1;
    transform: translate(0, 0) rotate(-10deg) scale(1);
  }

  19% {
    opacity: 1;
    transform: translate(-2px, 2px) rotate(-10deg) scale(0.9);
  }

  25% {
    opacity: 1;
    transform: translate(0, 0) rotate(-10deg) scale(1);
  }
}

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

@media (max-width: 920px) {
  .site-header {
    width: calc(100vw - 28px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(18, 61, 42, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px;
  }

  .intro-grid,
  .service-grid,
  .review-grid,
  .about,
  .contact,
  .local-seo {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .tax-credit-card,
  .tax-credit-details {
    grid-template-columns: 1fr;
  }

  .tax-badge {
    justify-self: start;
  }

  .guide-main {
    padding-top: 128px;
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-summary {
    position: static;
  }

  .gallery {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .gallery-cases {
    grid-template-columns: 1fr;
  }

  .reels-header {
    align-items: start;
    flex-direction: column;
  }

  .reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
  }

  .about-logo-card {
    gap: 24px;
    padding: 34px;
  }

  .about-logo-card .about-logo {
    width: min(52%, 260px);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .site-header {
    margin-top: 12px;
  }

  .brand-text {
    font-size: 0.82rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero-content {
    padding-top: 130px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .showcase,
  .reviews {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
  }

  .service-grid-detailed {
    gap: 34px;
  }

  .service-item {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 26px;
  }

  .service-item p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .tax-credit {
    padding-bottom: 0;
  }

  .tax-credit-card {
    padding: 28px;
  }

  .tax-badge {
    width: 138px;
    height: 138px;
  }

  .tax-badge span {
    font-size: 3rem;
  }

  .tax-credit-details {
    padding: 22px;
  }

  .unipro-mark {
    width: 118px;
    min-height: 70px;
  }

  .guide-main {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .guide-hero {
    margin-bottom: 30px;
  }

  .guide-columns {
    grid-template-columns: 1fr;
  }

  .guide-card,
  .guide-summary,
  .guide-cta {
    padding: 22px;
  }

  .gallery-item {
    min-height: 320px;
  }

  .gallery-case {
    padding: 12px;
  }

  .gallery-case-heading {
    min-height: auto;
  }

  .gallery-photo {
    min-height: 0;
  }

  .gallery-photo-main {
    min-height: 0;
  }

  .reels-panel {
    padding: 18px;
  }

  .reels-grid {
    grid-template-columns: 1fr;
  }

  .instagram-profile-link {
    width: 100%;
    justify-content: center;
  }

  .about-media,
  .about-media img {
    min-height: 360px;
  }

  .about-logo-card {
    min-height: auto;
    padding: 28px;
  }

  .about-logo-card::after {
    display: none;
  }

  .about-logo-card .about-logo {
    width: min(68%, 220px);
  }

  .about-logo-title {
    margin-top: 16px;
  }

  .sticky-quote {
    right: 84px;
    bottom: 18px;
    max-width: calc(100vw - 120px);
  }

  .phone-float {
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .phone-float-number {
    right: 0;
    bottom: 64px;
    max-width: calc(100vw - 36px);
  }

  .location-strip {
    justify-content: flex-start;
    padding-inline: 24px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-stage {
    top: 12px;
    left: 12px;
    min-width: 74px;
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .lightbox-description {
    top: 56px;
    left: 12px;
    max-width: calc(100% - 24px);
    font-size: 0.86rem;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}
