﻿@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,500;1,600&display=swap");

@font-face {
  font-family: "Laviona Classy";
  src: url("assets/fonts/laviona-classy.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --ink: #151515;
  --muted: #7d7d7d;
  --overlay: rgba(0, 0, 0, 0.32);
  --dark-overlay: rgba(0, 0, 0, 0.48);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --soft-hover: cubic-bezier(0.16, 1, 0.3, 1);
  --page-max: 1366px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat";
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, var(--page-max));
  padding: clamp(22px, 4.6vw, 62px) clamp(18px, 6.3vw, 86px) 0 clamp(18px, 2.3vw, 31px);
  transform: translateX(-50%);
  transition: transform 420ms var(--soft-hover);
  pointer-events: none;
}

.site-header.header-hidden {
  transform: translate(-50%, -130%);
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  color: var(--white);
}

.glass-logo,
.glass-button,
.menu-panel,
.field-shell,
.send-button,
.file-chip,
.review-card-display {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.glass-logo {
  padding: clamp(7px, 0.9vw, 12px) clamp(8px, 1vw, 14px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.brand-logo {
  width: clamp(72px, 8vw, 118px);
  height: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(132px, 15.3vw, 210px);
  min-height: clamp(52px, 4.7vw, 64px);
  padding: 0 28px;
  border-radius: 999px;
  color: #171717;
  font-size: clamp(14px, 1.45vw, 20px);
  font-weight: 400;
  text-transform: uppercase;
  transition: background 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.glass-button:hover,
.glass-button:focus-visible {
  background: var(--glass-strong);
  transform: translateY(-2px);
}

.menu-toggle {
  gap: 12px;
}

.menu-icon {
  position: relative;
  width: 55px;
  height: 20px;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  width: 55px;
  height: 3px;
  border-radius: 999px;
  background: #171717;
  content: "";
}

.menu-icon::before {
  top: 1px;
}

.menu-icon::after {
  bottom: 1px;
}

.menu-panel {
  position: absolute;
  top: clamp(92px, 9vw, 124px);
  right: clamp(18px, 6.3vw, 86px);
  z-index: 60;
  display: none;
  min-width: 230px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.menu-panel.is-open:not([hidden]) {
  display: grid;
  animation: menu-in 260ms var(--soft-hover) both;
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel a {
  padding: 15px 18px;
  color: #171717;
  font-size: 16px;
  text-transform: uppercase;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  background: rgba(0, 0, 0, 0.08);
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.photo-panel,
.services-hero,
.form-hero,
.appointment-top,
.appointment-form-section,
.review-entry,
.review-carousel-section {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
}

.hero {
  display: grid;
  min-height: clamp(560px, 54.9vw, 751px);
  place-items: center;
  background-image: url("assets/clean/p1-1-X4-clean.png");
  background-position: center bottom;
  background-size: 118% auto;
}

.hero::before,
.form-hero::before,
.appointment-top::before,
.appointment-form-section::before,
.review-entry::before,
.review-carousel-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dark-overlay);
  content: "";
}

.hero-title {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(920px, 88vw);
  margin: 76px 0 0;
  color: var(--white);
  font-size: clamp(43px, 5.45vw, 74px);
  font-weight: 800;
  line-height: 0.95;
  text-align: center;
}

.hero-title-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.12em;
}

.elegant-word {
  display: inline-block;
  width: clamp(178px, 24vw, 335px);
  height: auto;
  transform: translateY(0.04em);
  filter: brightness(0) invert(1);
}

.hero-title span:last-child {
  word-spacing: 0.1em;
}

.slide-from-left {
  animation: slide-left 900ms var(--soft-hover) both;
}

.slide-from-right {
  animation: slide-right 900ms var(--soft-hover) both;
}

@keyframes slide-left {
  from {
    opacity: 0;
    transform: translateX(-86px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-right {
  from {
    opacity: 0;
    transform: translateX(86px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.photo-panel::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--panel-image);
  background-position: var(--panel-position, center center);
  background-repeat: no-repeat;
  background-size: var(--panel-size, cover);
  content: "";
  transform: scale(1);
  transition: transform 1050ms var(--soft-hover);
  will-change: transform;
}

.darken-on-hover::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--overlay);
  content: "";
  transition: opacity 780ms var(--soft-hover);
}

.darken-on-hover:hover::before,
.darken-on-hover:focus-visible::before {
  opacity: 0;
}

.darken-on-hover:hover::after,
.darken-on-hover:focus-visible::after {
  transform: scale(1.045);
}

.photo-panel > * {
  position: relative;
  z-index: 2;
}

.home-triptych {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 0.95fr;
  align-items: stretch;
  min-height: clamp(620px, 58vw, 792px);
  background: #080808;
}

.triptych-panel {
  display: flex;
  min-height: clamp(620px, 58vw, 792px);
  color: var(--white);
}

.featured-service-card {
  --panel-image: url("assets/clean/p1-5-X31-clean.png");
  z-index: 3;
}

.estimate-card {
  --panel-image: url("assets/clean/p1-2-X28-clean.png");
  align-items: center;
  justify-content: flex-start;
  padding: clamp(34px, 5.5vw, 76px);
}

.appointment-card {
  --panel-image: url("assets/clean/p1-3-X29-clean.png");
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(44px, 5.6vw, 76px) clamp(24px, 4vw, 55px);
}

.featured-service-card {
  align-items: flex-end;
  justify-content: center;
  padding: clamp(44px, 6vw, 82px) clamp(24px, 4vw, 55px);
}

.panel-copy {
  display: grid;
  color: var(--white);
  font-weight: 300;
  line-height: 1;
}

.estimate-copy {
  font-size: clamp(42px, 5.7vw, 78px);
}

.estimate-copy strong {
  margin: 16px 0;
  font-size: clamp(50px, 6.4vw, 88px);
  font-weight: 900;
}

.center-copy {
  font-size: clamp(45px, 6vw, 82px);
  text-align: center;
}

.appointment-copy {
  width: 100%;
  font-size: clamp(27px, 3.45vw, 48px);
  text-align: center;
}

.center-copy strong,
.appointment-copy strong,
.review-card strong {
  font-weight: 900;
}

.small-question {
  align-self: flex-end;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
  text-align: center;
}

.home-bottom-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.action-panel {
  display: grid;
  min-height: clamp(430px, 42vw, 570px);
  place-items: center;
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  text-align: center;
}

.what-card {
  --panel-image: url("assets/clean/p1-4-X30-clean.png");
}

.review-card {
  --panel-image: url("assets/clean/p5-2-X25-clean.png");
}

.form-hero {
  min-height: 100vh;
  padding: clamp(150px, 17vw, 235px) clamp(24px, 7vw, 96px) clamp(70px, 8vw, 108px);
  background-image: url("assets/clean/p2-1-X4-clean.png");
  background-position: center;
  background-size: cover;
}

.form-title,
.form-note,
.glass-form {
  position: relative;
  z-index: 1;
}

.form-title {
  display: grid;
  width: min(520px, 92vw);
  margin-left: auto;
  margin-bottom: clamp(20px, 3vw, 42px);
  color: var(--white);
  font-size: clamp(46px, 5.8vw, 80px);
  font-weight: 300;
  line-height: 1;
  text-align: center;
}

.form-title strong {
  margin: 12px 0;
  font-weight: 900;
}

.form-note {
  width: min(430px, 90vw);
  margin: 0 0 clamp(22px, 3vw, 42px) auto;
  color: var(--white);
  font-size: clamp(17px, 2vw, 28px);
  line-height: 1.22;
  text-align: center;
}

.glass-form {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  width: min(620px, 92vw);
}

.estimate-form {
  margin-right: auto;
}

.field-shell {
  display: grid;
  gap: 9px;
  min-height: 92px;
  padding: 16px 22px;
  border-radius: 38px;
  color: var(--muted);
  transition: transform 360ms var(--soft-hover), background 360ms ease;
}

.field-shell:hover,
.field-shell:focus-within {
  transform: scale(1.025);
  background: var(--glass-strong);
}

.field-shell > span {
  font-size: clamp(16px, 1.65vw, 23px);
  color: #8a8a8a;
}

.field-shell input,
.field-shell textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #323232;
  font-family: "Montserrat";
  font-size: clamp(18px, 2vw, 28px);
  resize: vertical;
}

.field-shell textarea {
  min-height: 54px;
}

.field-shell.tall textarea {
  min-height: 128px;
}

.field-shell input::placeholder,
.field-shell textarea::placeholder {
  color: #8a8a8a;
  opacity: 1;
}

.drop-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 96px;
  border: 2px dashed rgba(120, 120, 120, 0.42);
  border-radius: 28px;
  color: #8a8a8a;
  cursor: pointer;
  transition: border-color 260ms ease, background 260ms ease;
}

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

.drop-zone.is-dragging {
  border-color: rgba(0, 0, 0, 0.52);
  background: rgba(255, 255, 255, 0.34);
}

.upload-mark {
  width: 34px;
  height: 34px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(45deg) translateY(-4px);
}

.file-list {
  display: grid;
  gap: 10px;
}

.file-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #404040;
  font-size: 14px;
}

.file-chip button {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: #171717;
  padding: 5px 10px;
}

.send-button {
  min-height: 72px;
  border-radius: 999px;
  color: #171717;
  font-size: clamp(22px, 2.8vw, 36px);
}

.services-hero {
  display: grid;
  min-height: clamp(580px, 68vw, 900px);
  place-items: end center;
  padding: 0 clamp(24px, 8vw, 108px) clamp(56px, 7vw, 96px);
  background-image: url("assets/clean/p3-1-X4-clean.png");
  background-position: center;
  background-size: cover;
}

.services-hero h1,
.appointment-top h1,
.review-entry h1,
.review-carousel-section h2 {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 8.4vw, 116px);
  font-weight: 300;
  line-height: 0.95;
  text-align: center;
}

.services-hero h1 strong,
.appointment-top h1 strong,
.review-entry h1 strong,
.review-carousel-section h2 strong {
  font-weight: 900;
}

.service-list {
  display: grid;
}

.service-item {
  display: grid;
  min-height: clamp(410px, 54.6vw, 630px);
  place-items: center;
  padding: clamp(36px, 6vw, 82px);
  color: var(--white);
  text-align: center;
}

.service-item h2 {
  margin: 0;
  font-size: clamp(48px, 7.4vw, 102px);
  font-weight: 900;
  line-height: 0.95;
}

.service-item p {
  margin: 16px 0 0;
  font-size: clamp(24px, 4vw, 55px);
  font-weight: 300;
  line-height: 1.08;
}

.masonry-service {
  --panel-image: url("assets/clean/p3-2-X9-clean.png");
}

.carpentry-service {
  --panel-image: url("assets/clean/p3-3-X10-clean.png");
}

.hardscaping-service {
  --panel-image: url("assets/clean/p3-4-X11-clean.png");
}

.interiors-service {
  --panel-image: url("assets/clean/p3-5-X12-clean.png");
}

.handyman-service {
  --panel-image: url("assets/clean/p3-6-X13-clean.png");
}

.appointment-top {
  display: grid;
  min-height: clamp(520px, 69vw, 830px);
  place-items: end center;
  padding: 0 clamp(24px, 8vw, 108px) clamp(56px, 7vw, 96px);
  background-image: url("assets/clean/p4-1-X4-clean.png");
  background-position: center;
  background-size: cover;
}

.appointment-top h1 {
  font-size: clamp(46px, 6.6vw, 92px);
}

.appointment-form-section {
  min-height: clamp(780px, 108vw, 1280px);
  padding: clamp(68px, 9vw, 124px) clamp(24px, 12vw, 168px);
  background-image: url("assets/clean/p4-2-X9-clean.png");
  background-position: center;
  background-size: cover;
}

.appointment-form {
  margin: 0 auto;
}

.review-entry {
  min-height: clamp(980px, 108vw, 1380px);
  padding: clamp(150px, 17vw, 235px) clamp(24px, 12vw, 168px) clamp(68px, 8vw, 110px);
  background-image: url("assets/clean/p5-1-X4-clean.png");
  background-position: center;
  background-size: cover;
}

.review-entry h1 {
  font-size: clamp(48px, 7vw, 98px);
  margin-bottom: clamp(24px, 4vw, 54px);
}

.review-form {
  width: min(640px, 92vw);
  margin: 0 auto;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 78px;
}

.rating-stars {
  display: flex;
  gap: 8px;
  cursor: pointer;
  touch-action: manipulation;
}

.star {
  --fill: 100%;
  position: relative;
  display: block;
  width: clamp(36px, 5vw, 62px);
  height: clamp(36px, 5vw, 62px);
  color: #111;
}

.star::before,
.star::after {
  position: absolute;
  inset: 0;
  content: "\2605";
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.star::after {
  width: var(--fill);
  overflow: hidden;
  color: var(--white);
}

.rating-value {
  min-width: 74px;
  color: var(--white);
  font-size: clamp(26px, 3.5vw, 48px);
  text-align: center;
}

.review-carousel-section {
  display: grid;
  min-height: clamp(680px, 74vw, 980px);
  align-content: center;
  gap: clamp(32px, 5vw, 70px);
  padding: clamp(70px, 10vw, 140px) clamp(22px, 9vw, 126px);
  background-image: url("assets/clean/p5-2-X25-clean.png");
  background-position: center;
  background-size: cover;
}

.review-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
}

.review-card-display {
  min-height: 230px;
  border-radius: 34px;
  padding: clamp(24px, 4.6vw, 64px);
  color: var(--white);
}

.review-email {
  display: block;
  margin-bottom: clamp(14px, 2vw, 24px);
  color: var(--white);
  font-size: clamp(18px, 2.2vw, 30px);
  overflow-wrap: anywhere;
}

.review-card-display p {
  margin: 0;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.review-card-display .review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  font-size: clamp(18px, 2.2vw, 30px);
}

.review-stars {
  display: flex;
  gap: 6px;
}

.review-star {
  width: clamp(22px, 3vw, 40px);
  height: clamp(22px, 3vw, 40px);
  cursor: default;
}

.review-star::before,
.review-star::after {
  font-size: clamp(22px, 3vw, 40px);
}

.review-score {
  min-width: 54px;
  text-align: right;
}

.carousel-arrow {
  width: clamp(44px, 6vw, 72px);
  height: clamp(44px, 6vw, 72px);
  border-radius: 999px;
  color: #171717;
  font-size: clamp(28px, 4vw, 48px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .slide-from-left,
  .slide-from-right {
    animation: none;
  }

  .site-header,
  .photo-panel::after,
  .darken-on-hover::before,
  .field-shell {
    transition: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    padding-top: 22px;
  }

  .brand-logo {
    width: 74px;
  }

  .elegant-word {
    width: clamp(130px, 39vw, 185px);
  }

  .hero-actions {
    gap: 8px;
  }

  .pill-button {
    min-width: auto;
    min-height: 44px;
    padding: 0 15px;
    font-size: 13px;
  }

  .pill-button:first-child {
    display: none;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    width: 34px;
  }

  .menu-panel {
    top: 86px;
    right: 18px;
  }

  .hero {
    min-height: 560px;
    background-size: auto 100%;
  }

  .hero-title {
    font-size: 40px;
  }`n.home-triptych,
  .home-bottom-actions {
    grid-template-columns: 1fr;
  }

  .home-triptych {
    min-height: auto;
  }

  .triptych-panel,
  .featured-service-card,
  .action-panel,
  .service-item {
    min-height: 540px;
  }

  .form-title,
  .form-note {
    margin-left: 0;
  }

  .glass-form {
    width: 100%;
  }

  .review-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    align-self: flex-end;
  }

  .menu-panel {
    top: 142px;
  }

  .form-hero,
  .review-entry {
    padding-top: 190px;
  }
}




