:root {
  --ink: #102331;
  --muted: #5f7482;
  --paper: #fbfdff;
  --panel: #ffffff;
  --blue-50: #eef9ff;
  --blue-100: #dff4ff;
  --blue-200: #bfeaff;
  --blue-500: #45b8f4;
  --blue-600: #1f95da;
  --blue-700: #1676b6;
  --line: #d8edf7;
  --silver: #edf3f7;
  --shadow: 0 18px 48px rgba(25, 130, 190, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, Montserrat, "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(69, 184, 244, 0.18);
  background: rgba(251, 253, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #153447;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(69, 184, 244, 0.22));
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--blue-700);
}

.hero {
  display: grid;
  min-height: calc(100svh - 67px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(26px, 4.5vw, 64px);
  padding: clamp(22px, 4.8vw, 54px) clamp(18px, 4vw, 56px) clamp(26px, 5vw, 58px);
  background:
    linear-gradient(180deg, rgba(223, 244, 255, 0.62), rgba(251, 253, 255, 0) 62%),
    radial-gradient(circle at 78% 22%, rgba(111, 204, 255, 0.24), transparent 34%);
  overflow: hidden;
}

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

.hero-logo {
  display: block;
  width: min(380px, 44vw);
  margin: 0 0 18px 0;
  filter: drop-shadow(0 18px 34px rgba(69, 184, 244, 0.16));
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(42px, 5.7vw, 70px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.lede {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--blue-600);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 12px 28px rgba(31, 149, 218, 0.2);
}

.button.primary:hover {
  background: var(--blue-700);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-700);
}

.hero-media {
  position: relative;
  min-height: clamp(390px, 40vw, 500px);
}

.hero-frame {
  position: absolute;
  display: block;
  border: 8px solid #fff;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.frame-a {
  left: 0;
  top: 0;
  width: 70%;
  height: 56%;
}

.frame-b {
  right: 0;
  bottom: 0;
  width: 66%;
  height: 54%;
}

.frame-c {
  right: 7%;
  top: 16%;
  width: 48%;
  height: 44%;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.signal-strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  color: #153447;
}

.signal-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 56px);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.package-card,
.photo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(16, 35, 49, 0.05);
}

.package-card {
  padding: 24px;
}

.package-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  border-radius: 6px;
  object-fit: cover;
}

.package-photo-shell {
  margin-bottom: 18px;
}

.package-photo-shell .package-photo {
  margin-bottom: 0;
}

[data-rotating-photos] {
  transform-origin: center;
  will-change: opacity, transform;
}

.package-card.featured {
  border-color: rgba(69, 184, 244, 0.58);
  box-shadow: var(--shadow);
}

.package-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.package-topline span {
  white-space: nowrap;
  color: var(--blue-700);
  font-weight: 900;
}

.package-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.package-card li {
  margin-bottom: 8px;
}

.fine-print {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.work-section {
  background: linear-gradient(180deg, var(--blue-50), #fff);
}

.detail-section {
  background: #fff;
}

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

.detail-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(16, 35, 49, 0.05);
}

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

.detail-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
}

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

.photo-card {
  overflow: hidden;
}

.rotating-photo-shell {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #102331;
}

.photo-card img,
.photo-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(69, 184, 244, 0.16), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(90deg, #d7effb 0 20px, #f5fbff 20px 40px);
}

.rotating-photo-current {
  position: relative;
  z-index: 1;
}

.rotating-photo-next {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  object-fit: cover;
  pointer-events: none;
}

.rotating-photo-next.is-crossfading-in {
  animation-duration: 620ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-transition-effect="fade"].is-crossfading-in {
  animation-name: photo-fade-in;
}

[data-transition-effect="slide-left"].is-crossfading-in {
  animation-name: photo-slide-left-in;
}

[data-transition-effect="lift"].is-crossfading-in {
  animation-name: photo-lift-in;
}

[data-transition-effect="zoom"].is-crossfading-in {
  animation-name: photo-zoom-in;
}

@keyframes photo-fade-in {
  from {
    opacity: 0;
    transform: scale(1.01);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes photo-slide-left-in {
  from {
    opacity: 0;
    transform: translateX(18px) scale(1.025);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes photo-lift-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(1.02);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes photo-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.photo-rotation-label {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(16, 35, 49, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-card h3,
.photo-card p {
  padding: 0 18px;
}

.photo-card h3 {
  margin-top: 18px;
}

.photo-card p {
  color: var(--muted);
  padding-bottom: 18px;
}

.comparison-section {
  background: #fff;
}

.comparison-grid {
  display: grid;
  gap: 28px;
}

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

.comparison-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(16, 35, 49, 0.05);
}

.comparison-card span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(16, 35, 49, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.comparison-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
}

.process-section {
  background: #153447;
  color: #fff;
}

.process-section .eyebrow {
  color: var(--blue-200);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(191, 234, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.landlord-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background: #fff;
}

.landlord-copy p {
  color: var(--muted);
  font-size: 20px;
}

.landlord-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.landlord-copy li {
  padding-left: 2px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--blue-50);
}

.quote-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.contact-card {
  display: grid;
  gap: 3px;
  max-width: 360px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--blue-700);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

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

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.quote-form .full,
.quote-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-500);
  outline: 3px solid rgba(69, 184, 244, 0.18);
}

textarea {
  resize: vertical;
}

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

.file-field {
  position: relative;
  padding: 14px;
  border: 1px dashed var(--blue-200);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.file-field-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.file-upload-control {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.file-upload-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--blue-600);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.file-upload-name {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-field:focus-within .file-upload-control {
  border-color: var(--blue-500);
  outline: 3px solid rgba(69, 184, 244, 0.18);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: #102331;
  color: #fff;
}

.footer div,
.footer span {
  display: block;
}

.footer div {
  min-height: 54px;
  padding-left: 84px;
  position: relative;
}

.footer-mark {
  position: absolute;
  left: 0;
  top: 4px;
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(69, 184, 244, 0.2));
}

.footer span {
  color: rgba(255, 255, 255, 0.7);
}

.footer a {
  color: var(--blue-200);
  font-weight: 900;
}

@media (max-width: 940px) {
  .hero,
  .landlord-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo {
    width: min(360px, 74vw);
  }

  .hero-media {
    min-height: 430px;
  }

  .package-grid,
  .gallery,
  .detail-grid,
  .comparison-grid,
  .comparison-pair,
  .process-list,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 132px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 30px;
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-logo {
    width: min(310px, 86vw);
    margin-inline: auto;
  }

  .lede {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  h1 {
    font-size: 46px;
  }

  .hero-media {
    width: min(100%, 520px);
    min-height: 360px;
    margin-inline: auto;
  }

  .frame-a {
    left: 0;
    top: 0;
    width: 74%;
    height: 58%;
  }

  .frame-b {
    bottom: 0;
    width: 70%;
    height: 52%;
  }

  .frame-c {
    right: 4%;
    top: 17%;
    width: 50%;
    height: 42%;
  }

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

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