:root {
  --bg: #050707;
  --bg-soft: #0b1111;
  --panel: #111818;
  --panel-light: #172020;
  --text: #f6f0e8;
  --muted: #c8c5bc;
  --teal: #22b8c0;
  --teal-soft: #77e1e3;
  --line: rgba(119, 225, 227, 0.28);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 184, 192, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(138, 89, 41, 0.14), transparent 24rem),
    linear-gradient(180deg, #030404 0%, var(--bg) 38%, #071010 100%);
  color: var(--text);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
}

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

a {
  color: inherit;
}

.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: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(5, 7, 7, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-soft);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-cta,
.button-primary {
  color: #021112;
  background: linear-gradient(180deg, var(--teal-soft), var(--teal));
  box-shadow: 0 10px 26px rgba(34, 184, 192, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 88px) 0 clamp(24px, 5vw, 60px);
}

.hero-copy {
  max-width: 660px;
}

.hero-mark {
  width: clamp(116px, 16vw, 180px);
  height: clamp(116px, 16vw, 180px);
  margin-bottom: 22px;
  border: 2px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
}

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

.hero-image {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image::before {
  position: absolute;
  inset: 16px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(119, 225, 227, 0.55);
  border-radius: 4px;
}

.hero-image img {
  width: 100%;
  height: clamp(520px, 68vh, 760px);
  object-fit: cover;
  object-position: 19% center;
  filter: saturate(1.02) contrast(1.03);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(3, 4, 4, 0.82) 82%),
    linear-gradient(0deg, rgba(3, 4, 4, 0.72), transparent 45%);
}

.photo-caption {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  display: grid;
  gap: 2px;
  max-width: 260px;
  padding-left: 22px;
  border-left: 2px solid var(--teal);
}

.photo-caption strong {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.photo-caption span {
  color: var(--teal-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-block: 1px solid var(--line);
  background: rgba(11, 17, 17, 0.86);
}

.trust-strip span {
  padding: 14px clamp(18px, 4vw, 44px);
  color: var(--teal-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-strip span + span {
  border-left: 1px solid var(--line);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 104px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.script {
  margin-bottom: 8px;
  color: var(--teal-soft);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p {
  margin-bottom: 18px;
}

.intro-copy .signature {
  color: var(--text);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.2rem;
}

.heidi-bio-photo {
  position: relative;
  width: clamp(150px, 16vw, 172px);
  aspect-ratio: 1;
  margin: 18px auto 0;
  padding: 0;
  overflow: hidden;
  background: rgba(4, 9, 9, 0.9);
  border: 3px solid rgba(119, 225, 227, 0.72);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.heidi-bio-photo::after {
  content: none;
}

.heidi-bio-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.promise-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(119, 225, 227, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promise-panel::before,
.promise-panel::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.promise-panel::before {
  inset: 16px;
  border: 1px solid rgba(119, 225, 227, 0.2);
  border-radius: 5px;
}

.promise-panel::after {
  right: -60px;
  bottom: -78px;
  width: 230px;
  height: 230px;
  background: url("assets/logo.jpg") center / cover no-repeat;
  border-radius: 50%;
  opacity: 0.15;
}

.promise-logo {
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  overflow: hidden;
}

.promise-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.promise-panel p,
.promise-panel ul {
  position: relative;
  z-index: 1;
}

.promise-panel p {
  color: var(--muted);
}

.promise-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.promise-panel li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.promise-panel li::before {
  color: var(--teal-soft);
  content: "+";
  font-weight: 900;
}

.services {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(14, 22, 22, 0.76), rgba(7, 12, 12, 0.88));
  border-block: 1px solid var(--line);
}

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

.service-grid article,
.steps div,
.testimonial-grid blockquote,
.estimate-form {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(119, 225, 227, 0.2);
  border-radius: 8px;
}

.service-grid article {
  min-height: 210px;
  padding: 22px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: #041313;
  background: var(--teal-soft);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-grid h3,
.steps h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
}

.service-grid p,
.steps p,
.testimonial-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps div {
  padding: 28px;
}

.steps strong {
  display: block;
  margin-bottom: 18px;
  color: var(--teal-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-grid blockquote {
  min-height: 230px;
  margin: 0;
  padding: 28px;
}

.testimonial-grid blockquote::before {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-soft);
  content: "★★★★★";
  letter-spacing: 0;
}

.testimonial-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-style: normal;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(58px, 9vw, 100px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(5, 7, 7, 0.86), rgba(5, 7, 7, 0.58)),
    url("assets/logo.jpg") right 4vw center / min(44vw, 520px) no-repeat;
  border-top: 1px solid var(--line);
}

.contact-copy p:not(.script) {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  color: var(--teal-soft);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.estimate-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(8, 13, 13, 0.92);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--text);
  background: #071010;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.instagram-section {
  padding: clamp(58px, 8vw, 92px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(6, 10, 10, 0.94), rgba(10, 17, 17, 0.98)),
    linear-gradient(135deg, rgba(34, 184, 192, 0.13), transparent 52%);
  border-top: 1px solid var(--line);
}

.instagram-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.instagram-copy p:not(.script) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.instagram-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 12px;
  padding: 0 18px;
  color: #021112;
  background: linear-gradient(180deg, var(--teal-soft), var(--teal));
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(34, 184, 192, 0.22);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.instagram-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.instagram-live-panel {
  min-width: 0;
  padding: clamp(14px, 2vw, 22px);
  background:
    linear-gradient(145deg, rgba(119, 225, 227, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(119, 225, 227, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.instagram-live-frame {
  min-width: 0;
  overflow: hidden;
}

.instagram-live-frame.is-rendered {
  min-height: 140px;
  overflow: hidden;
  background: rgba(4, 9, 9, 0.72);
  border: 1px solid rgba(119, 225, 227, 0.18);
  border-radius: 8px;
}

.instagram-live-frame.is-rendered + .instagram-widget {
  margin-top: 12px;
}

.instagram-live-panel.has-live-feed .instagram-widget {
  display: none;
}

.instagram-widget {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.instagram-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 16px;
  background:
    linear-gradient(160deg, rgba(119, 225, 227, 0.13), transparent 44%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(119, 225, 227, 0.24);
  border-radius: 8px;
}

.instagram-card::before {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  background: var(--teal-soft);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5px rgba(119, 225, 227, 0.12);
}

.instagram-card strong,
.instagram-card span,
.instagram-card p {
  position: relative;
  z-index: 1;
}

.instagram-card strong {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.12;
}

.instagram-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.instagram-card-kicker {
  margin-bottom: 12px;
  color: var(--teal-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.instagram-card-photo,
.instagram-card-logo {
  padding: 0;
  background: #061010;
}

.instagram-card-photo img,
.instagram-card-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-card-photo img {
  object-position: 21% center;
}

.instagram-card-logo img {
  opacity: 0.72;
}

.instagram-card-photo::after,
.instagram-card-logo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 4, 4, 0.86), transparent 64%);
}

.instagram-card-photo span,
.instagram-card-logo span {
  position: relative;
  z-index: 1;
  padding: 18px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  padding: 24px 18px;
  color: #021112;
  background: linear-gradient(180deg, var(--teal-soft), var(--teal));
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(5, 7, 7, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .nav-cta {
    margin-top: 6px;
  }

  .hero,
  .intro-grid,
  .contact,
  .instagram-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    max-width: 560px;
  }

  .hero-image img {
    height: 620px;
    object-position: 18% center;
  }

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

  .steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .heidi-bio-photo {
    width: min(42vw, 168px);
    min-width: 148px;
    max-width: 168px;
  }

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

  .instagram-card {
    min-height: 190px;
  }

  .testimonial-grid blockquote,
  .steps div {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand span {
    max-width: 170px;
  }

  .hero,
  .section {
    width: min(100% - 28px, var(--max));
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-image img {
    height: 520px;
    object-position: 18% center;
  }

  .photo-caption {
    right: 24px;
    bottom: 24px;
    max-width: 210px;
  }

  .trust-strip {
    display: grid;
  }

  .trust-strip span {
    text-align: center;
  }

  .trust-strip span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  .heidi-bio-photo {
    width: min(42vw, 168px);
    min-width: 148px;
    max-width: 168px;
    margin-inline: auto;
  }

  .intro-copy .signature {
    font-size: 2.15rem;
  }

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

  .instagram-card {
    min-height: 158px;
    padding: 14px;
  }

  .instagram-card strong {
    font-size: 0.98rem;
  }

  .instagram-card p {
    display: none;
  }

  .site-footer {
    display: grid;
    gap: 6px;
    font-size: 0.68rem;
    line-height: 1.35;
  }
}
