:root {
  --bg: #0d211a;
  --bg-soft: #143229;
  --panel: #17372f;
  --panel-soft: #1f463b;
  --forest-deep: #ffffff;
  --forest: #1c493d;
  --forest-soft: #2a5d50;
  --forest-pale: #275245;
  --gold: #d4ac45;
  --gold-soft: #f1ddab;
  --text: #eff6f1;
  --text-soft: #c7d6ce;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --shadow-lg: 0 32px 72px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.22);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.18);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 172, 69, 0.18), transparent 24rem),
    linear-gradient(180deg, #0d211a 0%, #112a22 38%, #17372f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    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: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 88%);
}

body.menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

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

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

::selection {
  background: rgba(212, 172, 69, 0.3);
  color: var(--forest-deep);
}

[id] {
  scroll-margin-top: 6.3rem;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
}

.section {
  padding: clamp(2.7rem, 4.8vw, 4.3rem) 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.03);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0.3rem rgba(212, 172, 69, 0.15);
}

.section-head {
  max-width: 46rem;
  margin-bottom: 1.35rem;
}

.hero h1,
.section-head h2,
.copy-panel h2,
.contact-copy h2,
.why-panel h3 {
  color: var(--forest-deep);
  font-family: "Barlow Semi Condensed", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.section-head h2,
.copy-panel h2,
.contact-copy h2,
.why-panel h3 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

.section-head p:last-child,
.copy-panel p,
.service-card p,
.gallery-copy span,
.testimonial-card p,
.contact-copy p,
.contact-notes li,
.footer-brand p {
  color: var(--text-soft);
  line-height: 1.75;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: inline-flex;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.88rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible,
.service-card:hover,
.gallery-card:hover,
.testimonial-card:hover,
.contact-info-card:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 14px 28px rgba(212, 172, 69, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ddb95b;
}

.button-secondary {
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--forest-soft);
}

.button-secondary-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
}

.button-secondary-light:hover,
.button-secondary-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(18px);
  background: rgba(13, 33, 26, 0.86);
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 33, 26, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 5.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 3.4rem;
  height: 3.4rem;
  flex: none;
  overflow: hidden;
  border-radius: 16px;
  background: var(--forest-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.brand-copy strong {
  color: var(--forest-deep);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.52rem;
  line-height: 0.96;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
}

.site-nav a,
.footer-links a,
.footer-contact a {
  transition: color 180ms ease;
}

.site-nav a {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--forest-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  padding: 0.68rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.header-phone span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--forest-deep);
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--forest-deep);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 1.08rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-icon {
  position: relative;
  display: inline-block;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -0.34rem;
}

.menu-icon::after {
  top: 0.34rem;
}

.menu-label {
  font-size: 0.94rem;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 2.8rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -8rem auto auto 60%;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 172, 69, 0.22), transparent 68%);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: clamp(1rem, 3vw, 1.8rem);
}

.hero-copy {
  max-width: 44rem;
}

.hero-subtitle {
  max-width: 40rem;
  margin-top: 1rem;
  color: var(--text);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.82;
}

.hero-services-block {
  margin-top: 1.2rem;
}

.hero-services-label {
  margin-bottom: 0.85rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-service-card {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
}

.hero-hours-note {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.4rem;
  max-width: 40rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.hero-hours-note strong {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
}

.hero-hours-note span {
  display: block;
}

.coverage-strip-shell span::before,
.contact-notes li::before,
.check-list li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  flex: none;
  margin-top: 0.38rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0.3rem rgba(212, 172, 69, 0.14);
}

.hero-summary {
  display: grid;
  gap: 0.8rem;
}

.hero-photo-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-lg);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.summary-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--forest) 0%, #102923 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.summary-row:not(:last-child) {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.summary-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.summary-row a,
.summary-row strong {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  text-align: right;
}

.hero-summary-actions,
.form-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.services-grid-top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.gallery-card,
.testimonial-card,
.contact-info-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card {
  position: relative;
  padding: 1.4rem 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.34rem;
  background: linear-gradient(90deg, var(--forest) 0%, var(--gold) 100%);
}

.service-card:hover,
.gallery-card:hover,
.testimonial-card:hover,
.contact-info-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.card-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-card h3,
.gallery-copy strong,
.contact-panel h3,
.contact-info-card strong,
.about-panel-grid strong,
.testimonial-card strong {
  color: var(--forest-deep);
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.coverage-strip {
  background: linear-gradient(180deg, var(--forest) 0%, #112d25 100%);
  color: #fff;
}

.coverage-strip-shell {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.8rem 1rem;
  padding: 0.8rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.coverage-strip-shell::-webkit-scrollbar {
  display: none;
}

.coverage-strip-shell span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.contact-shell,
.about-shell,
.why-shell,
.footer-shell {
  display: grid;
  gap: clamp(1rem, 3vw, 1.8rem);
}

.contact-shell,
.about-shell,
.why-shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: start;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.contact-info-card {
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-info-card span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-info-card strong,
.contact-info-card strong a {
  font-size: 1.03rem;
  line-height: 1.4;
  word-break: break-word;
}

.contact-notes {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-notes li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 38, 31, 0.14);
  box-shadow: var(--shadow-sm);
  color: #17372f;
  line-height: 1.65;
}

.contact-panel {
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field span {
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form-upload input {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
}

.form-upload-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-upload-slot {
  align-content: start;
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.form-upload-slot span {
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.form-upload small,
.form-note {
  color: var(--text-soft);
  line-height: 1.65;
}

.form-submit-status {
  min-height: 1.5rem;
  margin-top: -0.25rem;
  color: var(--gold-soft);
  font-weight: 700;
}

.form-submit-status[data-state="error"] {
  color: #ffd3d3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-card-large {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card-large img {
  aspect-ratio: 16 / 11;
}

.gallery-copy {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 0.95rem 1rem;
}

.about-panel {
  display: grid;
  gap: 0.95rem;
  padding: 1.15rem;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.about-panel-grid {
  display: grid;
  gap: 0.75rem;
}

.about-panel-grid article {
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

.about-panel-grid strong {
  display: block;
  margin-bottom: 0.45rem;
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(10, 20, 17, 0.14);
  box-shadow: var(--shadow-sm);
  color: #10221c;
  line-height: 1.65;
}

.why-panel {
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--forest) 0%, #102923 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.why-panel .section-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.why-panel .section-kicker::before {
  box-shadow: 0 0 0 0.3rem rgba(212, 172, 69, 0.12);
}

.why-panel h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.steps-grid {
  display: grid;
  gap: 0.75rem;
}

.steps-grid article {
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.steps-grid strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff;
}

.steps-grid p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.testimonial-card {
  position: relative;
  padding: 1.15rem 1.05rem;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.55rem;
  right: 1rem;
  color: rgba(212, 172, 69, 0.18);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 4.2rem;
  line-height: 1;
}

.testimonial-card p {
  margin-bottom: 1.1rem;
  padding-right: 1.3rem;
  color: var(--text);
}

.testimonial-card span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.site-footer {
  padding: 2rem 0 1.2rem;
  background: #0f1e19;
  color: #fff;
}

.footer-shell {
  grid-template-columns: minmax(0, 1.05fr) auto auto;
  align-items: start;
}

.footer-brand-link {
  margin-bottom: 1rem;
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy span {
  color: #fff;
}

.footer-brand p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.72rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}

.footer-base {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-base p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  gap: 0.75rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(237, 243, 238, 0.95);
  backdrop-filter: blur(16px);
}

.mobile-cta-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
}

.mobile-cta-primary {
  background: var(--gold);
  color: var(--forest-deep);
}

.mobile-cta-secondary {
  background: var(--forest);
  color: #fff;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.thank-you-section {
  width: 100%;
}

.thank-you-shell {
  display: grid;
  justify-items: start;
  gap: 1rem;
  max-width: 42rem;
  padding: clamp(1.8rem, 5vw, 3rem);
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.thank-you-mark {
  width: 4.3rem;
  height: 4.3rem;
}

.thank-you-shell h1 {
  color: var(--forest-deep);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.thank-you-copy {
  color: var(--text-soft);
  line-height: 1.8;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

@media (max-width: 1120px) {
  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-card-large {
    grid-column: span 2;
  }

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

@media (max-width: 920px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex !important;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.3rem;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(13, 33, 26, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    justify-content: center;
    background: var(--forest);
    color: #fff !important;
  }

  .hero-shell,
  .contact-shell,
  .about-shell,
  .why-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

  .contact-info-grid,
  .form-grid,
  .form-upload-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 5.5rem;
  }

  .shell {
    width: min(calc(100% - 1.2rem), var(--shell));
  }

  .section {
    padding: 3.15rem 0;
  }

  .brand-copy span {
    display: none;
  }

  .hero-services-grid,
  .gallery-grid,
  .testimonials-grid,
  .contact-info-grid,
  .form-grid,
  .form-upload-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .gallery-card-large {
    grid-column: span 1;
  }

  .hero-meta,
  .hero-summary-actions,
  .form-actions,
  .panel-actions,
  .thank-you-actions {
    grid-template-columns: 1fr;
  }

  .hero-summary-actions,
  .form-actions,
  .panel-actions,
  .thank-you-actions {
    display: grid;
  }

  .hero-summary-actions .button,
  .form-actions .button,
  .panel-actions .button,
  .thank-you-actions .button {
    width: 100%;
  }

  .summary-row {
    flex-direction: column;
  }

  .summary-row a,
  .summary-row strong {
    text-align: left;
  }

  .coverage-strip-shell {
    padding-bottom: 0.8rem;
  }

  .mobile-cta-bar {
    display: flex;
  }
}
