:root {
  --peach: #ff6d63;
  --peach-dark: #e94c57;
  --peach-soft: #fff0ec;
  --orange: #ff9b54;
  --teal: #087887;
  --teal-dark: #06545e;
  --ink: #17202f;
  --muted: #627083;
  --line: rgba(255, 109, 99, 0.22);
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(120, 35, 28, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffaf8;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 248, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 112px; }
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
}
.nav a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
}
.nav a:hover { background: var(--peach-soft); color: var(--peach-dark); }
.menu-button { display: none; }

.hero {
  width: min(1180px, calc(100% - 36px));
  margin: 26px auto 0;
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(26px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: 44px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 109, 99, .24), transparent 35%),
    radial-gradient(circle at 92% 10%, rgba(8, 120, 135, .15), transparent 28%),
    linear-gradient(135deg, #fff, var(--peach-soft));
  box-shadow: var(--shadow);
}
.hero-art {
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: rgba(255,255,255,.7);
  padding: clamp(18px, 4vw, 42px);
}
.hero-art img {
  width: min(440px, 100%);
  filter: drop-shadow(0 22px 22px rgba(131, 31, 26, .16));
}
.tag {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .9;
  letter-spacing: -.075em;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  line-height: .95;
  letter-spacing: -.06em;
}
h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -.025em;
}
.subhead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.45;
}
.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  border: 2px solid transparent;
}
.primary {
  background: linear-gradient(135deg, var(--peach), var(--peach-dark));
  color: white;
  box-shadow: 0 14px 34px rgba(233, 76, 87, .28);
}
.secondary {
  background: white;
  color: var(--teal-dark);
  border-color: rgba(8, 120, 135, .18);
}
.quick-note {
  display: inline-grid;
  gap: 4px;
  margin-top: 28px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(8, 120, 135, .18);
  border-radius: 20px;
}
.quick-note strong {
  color: var(--teal-dark);
  font-size: 1.3rem;
  letter-spacing: -.035em;
}
.quick-note span { color: var(--muted); }

.quick-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.quick-strip div {
  min-height: 78px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  background: #fff;
  color: var(--teal-dark);
  border: 1px solid rgba(8, 120, 135, .16);
  border-radius: 22px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(8, 120, 135, .06);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 116px) 0;
}
.section.soft {
  width: 100%;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  background: #fff0ec;
}
.section-title {
  max-width: 720px;
  margin-bottom: 28px;
}
.section-title.centered {
  text-align: center;
  margin-inline: auto;
}
.short {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.45;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 18px;
}
.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  color: white;
  box-shadow: var(--shadow);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .92;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.52));
}
.service-card > * { position: relative; }
.home-card { background: linear-gradient(135deg, #ff8d77, #e94c57); }
.rental-card { background: linear-gradient(135deg, #19a0af, #06545e); }
.custom-card { background: linear-gradient(135deg, #ffa45c, #e94c57); }
.card-label {
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-card p {
  max-width: 340px;
  margin-bottom: 0;
  color: rgba(255,255,255,.92);
  line-height: 1.45;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.price-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(120,35,28,.08);
}
.price-card.feature {
  transform: translateY(-10px);
  border-color: rgba(8, 120, 135, .25);
}
.price-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}
.text-card {
  width: min(780px, 100%);
  margin: 26px auto 0;
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  text-align: center;
  text-decoration: none;
  border-radius: 24px;
  background: var(--teal-dark);
  color: white;
  box-shadow: 0 18px 40px rgba(6, 84, 94, .2);
}
.text-card span { opacity: .82; font-weight: 800; }
.text-card strong { font-size: 1.05rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(120,35,28,.08);
}
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.photo {
  min-height: 250px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: white;
  font-weight: 950;
}
.before { background: linear-gradient(135deg, #7b8797, #334155); }
.after { background: linear-gradient(135deg, var(--peach), var(--orange)); }
.gallery-card h3 { margin: 16px 8px 6px; }

.contact-section {
  padding: clamp(70px, 9vw, 120px) 18px;
  background:
    radial-gradient(circle at 20% 16%, rgba(255,109,99,.22), transparent 30%),
    radial-gradient(circle at 84% 80%, rgba(8,120,135,.16), transparent 32%),
    linear-gradient(135deg, #fff, #eefcfe);
}
.contact-card-main {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 40px;
  box-shadow: var(--shadow);
}
.contact-card-main img {
  width: min(320px, 80%);
  margin: 0 auto 14px;
}
.contact-card-main p {
  color: var(--muted);
  font-size: 1.12rem;
}
.phone {
  display: inline-block;
  margin-top: 2px;
  color: var(--teal-dark);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 950;
  letter-spacing: -.06em;
  text-decoration: none;
}
.contact-buttons { justify-content: center; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: #e8edf5;
}
footer a { color: white; font-weight: 900; text-decoration: none; }

@media (max-width: 880px) {
  .menu-button {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(8,120,135,.18);
    border-radius: 16px;
    background: #fff;
  }
  .menu-button span:not(.sr-only) {
    width: 21px;
    height: 2px;
    background: var(--teal-dark);
    border-radius: 99px;
  }
  .nav {
    position: absolute;
    top: 82px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px; }
  .hero,
  .service-grid,
  .price-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { order: 2; }
  .quick-strip { grid-template-columns: repeat(2, 1fr); }
  .price-card.feature { transform: none; }
}

@media (max-width: 560px) {
  .site-header { min-height: 72px; }
  .brand img { width: 92px; }
  .hero { border-radius: 30px; padding: 22px; }
  .hero-art { border-radius: 24px; }
  .button { width: 100%; }
  .quick-strip { grid-template-columns: 1fr; }
  .photo-pair { grid-template-columns: 1fr; }
  .photo { min-height: 180px; }
  footer { flex-direction: column; }
}
