:root {
  --ink: #151315;
  --muted: #665f66;
  --paper: #fff8f0;
  --panel: #ffffff;
  --aqua: #6fd2d7;
  --aqua-dark: #117b82;
  --raspberry: #d92e7f;
  --sun: #f6bd3d;
  --violet: #6f4fb3;
  --line: rgba(21, 19, 21, 0.14);
  --shadow: 0 22px 70px rgba(21, 19, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 46px);
  background: rgba(255, 248, 240, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(17, 123, 130, 0.35);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.header-action,
.button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.header-action,
.button.primary {
  background: var(--ink);
  color: white;
}

.button.secondary,
.copy-button {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

i,
svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: calc(100vh - 73px);
  background: linear-gradient(135deg, #fff8f0 0%, #fdf0f5 48%, #e7fbfb 100%);
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-card {
  position: absolute;
  left: clamp(18px, 5vw, 58px);
  bottom: clamp(18px, 5vw, 58px);
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 6vw, 72px);
}

.eyebrow {
  margin: 0;
  color: var(--aqua-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.quote-copy p,
.panel-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.proof-grid div,
.service-band article,
.product-card,
.quote-form,
.order-panel,
.summary-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-grid div {
  padding: 16px;
}

dt {
  color: var(--raspberry);
  font-size: 28px;
  font-weight: 950;
}

dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, calc(100% - 32px));
  margin: 26px auto;
}

.service-band article {
  display: grid;
  gap: 11px;
  padding: 22px;
}

.service-band i {
  color: var(--raspberry);
}

.service-band span,
.product-card p,
.quote-points span,
footer {
  color: var(--muted);
  line-height: 1.5;
}

.section-shell,
.gallery-section,
.order-section,
.quote-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

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

.product-card {
  overflow: hidden;
  background: white;
}

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

.product-card div {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.product-card small {
  color: var(--aqua-dark);
  font-weight: 950;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
}

.quote-copy {
  display: grid;
  gap: 16px;
}

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

.quote-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.quote-form,
.order-form {
  display: grid;
  gap: 14px;
}

.quote-form {
  padding: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.order-panel,
.summary-card {
  padding: 24px;
}

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

.summary-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  background: var(--ink);
  color: white;
}

.summary-card pre {
  min-height: 260px;
  max-height: 480px;
  overflow: auto;
  white-space: pre-wrap;
  color: rgba(255, 255, 255, 0.82);
  font: 13px/1.55 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.copy-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 26px 16px 40px;
  text-align: center;
}

footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  transform: translateY(14px);
  opacity: 0;
  max-width: 320px;
  padding: 13px 16px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

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

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

  .summary-card {
    position: static;
  }
}

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

  nav {
    justify-content: flex-start;
  }

  .header-action {
    width: 100%;
  }

  .hero {
    min-height: 0;
  }

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

  .proof-grid,
  .service-band,
  .product-grid,
  .quote-points,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .wide {
    grid-column: auto;
  }
}
