:root {
  --ink: #0a0b0a;
  --charcoal: #151718;
  --smoke: #303536;
  --sand: #f5efe5;
  --cream: #fffaf2;
  --copper: #b96132;
  --copper-dark: #8d4628;
  --teal: #315e59;
  --sage: #6d786b;
  --silver: #d8dedc;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 8px clamp(18px, 3vw, 40px);
  background: rgba(16, 17, 16, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  justify-self: start;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(58px, 6vw, 76px);
  max-width: 54vw;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
}

.site-nav a {
  border-radius: 999px;
  color: rgba(255, 249, 239, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 14px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
}

.site-nav .nav-cta {
  background: var(--cream);
  color: var(--ink);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(255, 249, 239, 0.22);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.08);
  color: var(--cream);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1;
  padding: 10px 15px;
  white-space: nowrap;
}

.header-phone:hover {
  border-color: rgba(255, 249, 239, 0.38);
  background: rgba(255, 249, 239, 0.14);
}

.header-phone-label {
  color: rgba(255, 249, 239, 0.66);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 560px;
  height: 76svh;
  max-height: 820px;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 59% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.82), rgba(9, 10, 9, 0.52) 43%, rgba(9, 10, 9, 0.16) 76%),
    linear-gradient(0deg, rgba(9, 10, 9, 0.68), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(760px, calc(100% - 40px));
  padding: 118px 0 68px clamp(20px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e9915e;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 4.35rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  color: inherit;
  font-size: 2.72rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 249, 239, 0.84);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  padding: 13px 20px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--copper);
  color: #fffaf2;
  box-shadow: 0 12px 24px rgba(177, 97, 50, 0.2);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-bar div {
  display: grid;
  gap: 4px;
  min-height: 120px;
  align-content: center;
  padding: 26px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(21, 23, 24, 0.98), rgba(49, 94, 89, 0.22)),
    var(--charcoal);
}

.trust-bar strong {
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
}

.trust-bar span {
  color: rgba(255, 249, 239, 0.72);
  font-weight: 700;
}

.section {
  padding: 96px clamp(20px, 6vw, 76px);
}

.section-light {
  background: var(--sand);
  color: #181611;
}

.suntek-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 42px;
  align-items: start;
  background: #fbf6ec;
  color: #181611;
}

.suntek-copy {
  max-width: 560px;
}

.suntek-copy p:not(.eyebrow) {
  color: rgba(24, 22, 17, 0.74);
  font-size: 1.04rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(24, 22, 17, 0.2);
  border-radius: 999px;
  color: #27221b;
  font-weight: 850;
  padding: 10px 14px;
}

.source-links a:hover {
  border-color: rgba(177, 97, 50, 0.52);
  background: rgba(177, 97, 50, 0.08);
}

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

.suntek-grid article {
  border: 1px solid rgba(24, 22, 17, 0.12);
  border-radius: var(--radius);
  background: #fffaf2;
  padding: 24px;
}

.suntek-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--copper-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.suntek-grid h3 {
  margin-bottom: 10px;
  color: #181611;
  font-size: 1.18rem;
}

.suntek-grid p {
  margin-bottom: 0;
  color: rgba(24, 22, 17, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1fr);
  gap: 32px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 46px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(24, 22, 17, 0.72);
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  isolation: isolate;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.7)),
    linear-gradient(0deg, rgba(15, 10, 5, 0.34), transparent 48%);
}

.service-card:hover img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.045);
}

.service-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100%;
  align-content: end;
  gap: 11px;
  padding: 26px;
  color: var(--cream);
}

.service-card-copy small {
  color: #f0ad78;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card-copy strong {
  font-size: 1.45rem;
  line-height: 1.1;
}

.service-card-copy span:last-child {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 249, 239, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-details {
  display: grid;
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(255, 255, 255, 0.1);
}

.service-detail {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 34px;
  align-items: start;
  padding: 64px clamp(20px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(48, 53, 54, 0.72), rgba(10, 11, 10, 0.96)),
    var(--charcoal);
}

.service-detail h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.service-detail p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 249, 239, 0.75);
}

.feature-list,
.film-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.film-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 249, 239, 0.8);
}

.feature-list li::before,
.film-points li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.film-section {
  background:
    linear-gradient(135deg, rgba(49, 94, 89, 0.2), transparent 38%),
    linear-gradient(315deg, rgba(177, 97, 50, 0.15), transparent 42%),
    #101213;
}

.film-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(300px, 1.15fr);
  gap: 42px;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}

.film-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.film-copy h2 {
  margin-bottom: 0;
}

.film-copy p:not(.eyebrow) {
  color: rgba(255, 249, 239, 0.74);
  margin-bottom: 0;
}

.film-copy img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.film-tool {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.film-buttons {
  display: grid;
  align-content: stretch;
  background: rgba(0, 0, 0, 0.24);
}

.film-button {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 122px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 249, 239, 0.72);
  cursor: pointer;
  padding: 22px;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.film-button span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 249, 239, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
}

.film-button:hover,
.film-button.is-active {
  background: linear-gradient(135deg, rgba(177, 97, 50, 0.88), rgba(49, 94, 89, 0.7));
  color: var(--cream);
}

.film-panel {
  display: grid;
  align-content: center;
  padding: 42px;
}

.panel-kicker {
  margin-bottom: 14px;
  color: #f0b486;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.film-panel h3 {
  margin-bottom: 17px;
}

#film-description {
  color: rgba(255, 249, 239, 0.76);
  font-size: 1.08rem;
}

.film-points {
  margin-top: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  grid-auto-rows: 310px;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

.gallery-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  border-radius: 999px;
  background: rgba(10, 11, 10, 0.72);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 13px;
  backdrop-filter: blur(10px);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(300px, 1fr);
  gap: 44px;
  align-items: start;
  padding: 96px clamp(20px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(10, 11, 10, 0.96), rgba(49, 94, 89, 0.28)),
    var(--ink);
}

.quote-copy {
  max-width: 620px;
}

.quote-copy p:not(.eyebrow) {
  color: rgba(255, 249, 239, 0.72);
}

.legal-notice {
  margin-top: 30px;
  border: 2px solid #f0b486;
  border-radius: var(--radius);
  background: rgba(240, 180, 134, 0.1);
  padding: 22px;
}

.legal-notice h3 {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 1.08rem;
}

.legal-notice p {
  color: rgba(255, 249, 239, 0.88) !important;
  font-size: 0.92rem;
}

.legal-notice a {
  display: inline-block;
  margin-top: 12px;
  color: #f3caa8;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-form {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  padding: 28px;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 249, 239, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: #1b1b1b;
  color: #fff9ef;
  color-scheme: dark;
  caret-color: var(--copper);
  font-weight: 650;
  padding: 13px 14px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 249, 239, 0.5);
  font-weight: 650;
  opacity: 1;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(213, 132, 63, 0.18);
}

.quote-form select option {
  background: #1b1b1b;
  color: #fff9ef;
}

.quote-form input:-webkit-autofill {
  -webkit-text-fill-color: #fff9ef;
  box-shadow: 0 0 0 1000px #1b1b1b inset;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .consent-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.quote-form .consent-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--copper);
}

.privacy-note {
  margin: -6px 0 0 29px;
  color: rgba(255, 249, 239, 0.66);
  font-size: 0.82rem;
}

.privacy-note a {
  color: var(--cream);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quote-form button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.5);
  opacity: 0.58;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #f3caa8;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #bfe8c8;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 6vw, 76px);
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 249, 239, 0.7);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--cream);
}

.site-footer nav {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--cream);
}

.blog-page {
  background: #edf2ee;
  color: #181611;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
  padding: 8px clamp(18px, 3vw, 40px);
  background: #101110;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.45fr);
  gap: 36px;
  align-items: end;
  padding: 78px clamp(20px, 6vw, 76px) 52px;
  background:
    linear-gradient(135deg, rgba(10, 11, 10, 0.94), rgba(49, 94, 89, 0.62)),
    #101110;
  color: var(--cream);
}

.blog-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
}

.blog-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 249, 239, 0.78);
  font-size: 1.08rem;
}

.blog-note {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.blog-note strong {
  font-size: 1.22rem;
}

.blog-note span {
  color: rgba(255, 249, 239, 0.74);
}

.blog-index {
  padding: 46px clamp(20px, 6vw, 76px);
  background: #f7faf6;
  color: #181611;
}

.blog-index h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1240px;
  margin: 0;
}

.blog-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
  border: 1px solid rgba(24, 22, 17, 0.12);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: 0 12px 28px rgba(24, 22, 17, 0.06);
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card span,
.blog-card h3,
.blog-card p,
.blog-card strong {
  margin-right: 16px;
  margin-left: 16px;
}

.blog-card span {
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  color: #181611;
  font-size: 1.02rem;
  line-height: 1.2;
}

.blog-card p {
  color: rgba(24, 22, 17, 0.72);
  font-size: 0.9rem;
}

.blog-card strong {
  align-self: end;
  margin-bottom: 16px;
  color: #263f3b;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-card:hover {
  border-color: rgba(141, 70, 40, 0.32);
  transform: translateY(-2px);
}

.blog-card:hover strong {
  color: var(--copper-dark);
}

.standalone-post {
  display: grid;
  gap: 28px;
  padding: 60px clamp(20px, 6vw, 76px) 88px;
  background: #edf2ee;
}

.blog-post-toolbar {
  display: none;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.standalone-post .blog-post-toolbar {
  display: block;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(24, 22, 17, 0.14);
  border-radius: 999px;
  background: #fffaf2;
  color: #263f3b;
  font-weight: 900;
  padding: 10px 16px;
}

.blog-back-link::before {
  content: "<";
  margin-right: 8px;
}

.blog-back-link:hover {
  border-color: rgba(141, 70, 40, 0.32);
  color: var(--copper-dark);
}

.blog-post {
  display: none;
  grid-template-columns: minmax(240px, 0.48fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(24, 22, 17, 0.12);
  border-radius: var(--radius);
  background: #fffaf2;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(24, 22, 17, 0.08);
}

.single-article-page .blog-post {
  display: grid;
}

.blog-post img {
  width: 100%;
  height: clamp(300px, 34vw, 430px);
  min-height: 330px;
  object-fit: cover;
}

.post-copy {
  padding: 32px 34px 34px 0;
}

.post-copy h1 {
  margin-bottom: 16px;
  color: #181611;
  font-size: 2rem;
  line-height: 1.12;
}

.field-optional {
  color: rgba(255, 249, 239, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.post-copy h3 {
  margin: 22px 0 10px;
  color: #181611;
  font-size: 1.18rem;
}

.post-copy p {
  color: rgba(24, 22, 17, 0.76);
}

.post-copy ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: rgba(24, 22, 17, 0.78);
}

.post-table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  color: rgba(24, 22, 17, 0.78);
  font-size: 0.92rem;
}

.post-table caption {
  margin-bottom: 10px;
  color: #181611;
  font-weight: 900;
  text-align: left;
}

.post-table th,
.post-table td {
  border: 1px solid rgba(24, 22, 17, 0.14);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.post-table th {
  background: #edf2ee;
  color: #181611;
}

.post-meta {
  margin-bottom: 12px;
  color: var(--copper-dark) !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-cta,
.post-source {
  margin: 20px 0 0;
}

.post-cta a,
.post-source a {
  color: #263f3b;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.post-cta a:hover,
.post-source a:hover {
  color: var(--copper-dark);
}

.privacy-page {
  background: #edf2ee;
  color: #181611;
}

.privacy-main {
  background: #edf2ee;
}

.privacy-hero {
  padding: 78px clamp(20px, 6vw, 76px) 44px;
  background:
    linear-gradient(135deg, rgba(10, 11, 10, 0.94), rgba(49, 94, 89, 0.62)),
    #101110;
  color: var(--cream);
}

.privacy-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
}

.privacy-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 249, 239, 0.78);
  font-size: 1.06rem;
}

.privacy-updated {
  margin-top: 18px;
  color: rgba(255, 249, 239, 0.62) !important;
  font-size: 0.92rem !important;
  font-weight: 800;
}

.privacy-content {
  max-width: 880px;
  padding: 54px clamp(20px, 6vw, 76px) 82px;
}

.privacy-content h2 {
  margin: 30px 0 10px;
  color: #181611;
  font-size: 1.5rem;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  color: rgba(24, 22, 17, 0.76);
}

.privacy-content a {
  color: #263f3b;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-disclaimer {
  margin-top: 34px;
  border-left: 4px solid var(--copper);
  background: #fffaf2;
  padding: 16px 18px;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.38rem;
  }

  .suntek-section {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 360px;
  }

  .service-detail {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail .feature-list {
    grid-column: 1 / -1;
  }

  .film-layout,
  .quote-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  section[id],
  article[id] {
    scroll-margin-top: 92px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 82px;
    padding: 8px 18px;
  }

  .brand-logo {
    height: 58px;
    max-width: 58vw;
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
  }

  .header-phone {
    grid-column: 2;
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .header-phone-label {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    justify-self: stretch;
    width: calc(100vw - 28px);
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(10, 11, 10, 0.94);
    box-shadow: var(--shadow);
    padding: 10px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .site-nav a {
    border-radius: var(--radius);
    padding: 13px 14px;
  }

  .hero {
    min-height: 600px;
    height: 76svh;
  }

  .hero-media {
    object-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 6, 0.86), rgba(7, 7, 6, 0.5), rgba(7, 7, 6, 0.18)),
      linear-gradient(0deg, rgba(7, 7, 6, 0.78), transparent 48%);
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 105px 0 54px 18px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .trust-bar,
  .section-heading,
  .service-detail,
  .film-tool {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    min-height: 96px;
  }

  .section,
  .quote-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

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

  .service-detail {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .film-tool {
    min-height: unset;
  }

  .film-layout {
    gap: 30px;
  }

  .film-copy {
    gap: 16px;
  }

  .film-copy img {
    aspect-ratio: 2 / 1;
  }

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

  .film-button {
    min-height: 82px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 16px;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .film-button:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .film-button span {
    width: 34px;
    height: 34px;
  }

  .film-panel {
    align-content: start;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px;
  }

  #film-description {
    font-size: 1rem;
  }

  .film-points {
    gap: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-grid figure:first-child {
    grid-row: span 1;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-hero,
  .blog-post {
    grid-template-columns: 1fr;
  }

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

  .post-copy {
    padding: 0 24px 28px;
  }

  .blog-post img {
    min-height: 240px;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 52px;
    max-width: 62vw;
  }

  .site-header {
    gap: 8px;
  }

  .header-phone {
    min-height: 42px;
    padding: 8px 12px;
  }

  .header-phone-label {
    display: inline;
    color: var(--cream);
    font-size: 0.84rem;
    text-transform: none;
  }

  .header-phone-number {
    display: none;
  }

  .site-nav {
    top: 84px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 585px;
    height: 76svh;
  }

  .hero-media {
    object-position: 72% center;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .button {
    width: 100%;
  }

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

  .service-card {
    min-height: 330px;
  }

  .film-panel,
  .quote-form {
    padding: 24px;
  }

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

  .gallery-grid {
    grid-auto-rows: 230px;
  }
}

@media (max-width: 360px) {
  .hero-content {
    width: calc(100% - 28px);
    padding-left: 14px;
  }

  h1 {
    font-size: 2.08rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }
}

@media (max-height: 720px) and (min-width: 821px) {
  .hero {
    min-height: 520px;
    height: 82svh;
  }

  .hero-content {
    padding-bottom: 52px;
  }
}

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