:root {
  --bg: #f4efe5;
  --bg-strong: #d6c8af;
  --surface: rgba(255, 248, 235, 0.88);
  --surface-dark: #181511;
  --surface-muted: #2a251d;
  --text: #1f1b15;
  --text-soft: #635949;
  --line: rgba(31, 27, 21, 0.12);
  --accent: #efb511;
  --accent-strong: #d99a00;
  --accent-deep: #8d5f00;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(32, 23, 7, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 181, 17, 0.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(99, 89, 73, 0.16), transparent 28%),
    linear-gradient(180deg, #f9f5ec 0%, #f1e8d7 100%);
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar,
.hero,
.section {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong,
.nav a,
.button,
.eyebrow,
.service-index,
.label {
  letter-spacing: 0.04em;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--text-soft);
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 12px 35px rgba(31, 27, 21, 0.08);
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 35px rgba(31, 27, 21, 0.08);
  white-space: nowrap;
  text-align: center;
}

.header-link-accent {
  background: linear-gradient(145deg, var(--accent) 0%, #ffd256 100%);
  color: #1b1404;
  border-color: transparent;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hero-copy {
  display: grid;
  align-content: start;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-deep);
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1,
h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  max-width: 12ch;
  line-height: 1.02;
  text-wrap: balance;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: var(--accent-deep);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 700;
}

.lead,
.benefit-copy p,
.service-card p,
.feature-panel p,
.contact-card p,
.form-card p {
  line-height: 1.65;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.lead {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(145deg, var(--accent) 0%, #ffd256 100%);
  color: #1b1404;
  box-shadow: 0 16px 28px rgba(239, 181, 17, 0.28);
}

.button-secondary {
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid var(--line);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-points article,
.service-card,
.feature-panel article,
.contact-card,
.form-card,
.gallery-feature,
.gallery-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.hero-points article {
  padding: 1.2rem;
  background: rgba(255, 248, 235, 0.78);
}

.hero-points strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.hero-points span {
  color: var(--text-soft);
  line-height: 1.45;
}

.photo-stack {
  position: relative;
  min-height: 38rem;
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 70px rgba(24, 21, 17, 0.24);
}

.gallery-shortcut {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-shortcut:focus-visible {
  outline: 3px solid rgba(239, 181, 17, 0.55);
  outline-offset: 4px;
}

.photo-card img,
.gallery-button img {
  height: 100%;
  object-fit: cover;
}

.photo-card-main {
    position: absolute;
    inset: 6.5rem 0 0 4rem;
    border: 12px solid rgba(255, 245, 227, 0.92);
    background: rgba(255, 245, 227, 0.92);
    transform: rotate(3deg);
  }

.photo-card-top {
  position: absolute;
  width: min(26rem, 70%);
  top: 0;
  left: 0;
  aspect-ratio: 4 / 3;
  border: 12px solid rgba(255, 245, 227, 0.92);
  transform: rotate(-6deg);
}

.badge {
  position: absolute;
  right: 0;
  bottom: 1rem;
  display: inline-grid;
  gap: 0.15rem;
  padding: 1rem 1.15rem;
  border-radius: 1.2rem;
  background: #17130f;
  color: var(--white);
  box-shadow: 0 20px 55px rgba(20, 15, 10, 0.35);
}

.badge span {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.badge strong {
  font-size: 1.15rem;
}

.section {
  padding: 2rem 0 5rem;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.section-dark {
  padding: 3rem;
  background:
    linear-gradient(135deg, rgba(255, 208, 86, 0.1), transparent 28%),
    linear-gradient(180deg, #181511 0%, #241f18 100%);
  color: var(--white);
  border-radius: 2rem;
}

.section-dark .eyebrow,
.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-index {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #ffcb4a;
  font-size: 0.85rem;
  font-weight: 700;
}

.service-card p {
  color: rgba(255, 255, 255, 0.74);
}

.benefit-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
}

.benefit-copy {
  padding-right: 1rem;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent), #ffd665);
}

.feature-panel {
  display: grid;
  gap: 1rem;
}

.feature-panel article,
.contact-card,
.form-card {
  padding: 1.5rem;
  background: rgba(255, 250, 241, 0.72);
}

.feature-panel article strong,
.contact-card h3,
.form-card h3 {
  display: block;
  margin-bottom: 0.55rem;
}

.form-card {
  display: grid;
  gap: 1.25rem;
}

.form-heading p,
.form-footer p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.form-policy a {
  display: inline-block;
  margin-top: 0.15rem;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form .field-grid {
  align-items: start;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  display: block;
  min-height: 1.45rem;
  font-weight: 600;
  font-size: 0.96rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(31, 27, 21, 0.12);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input {
  min-height: 3.5rem;
}

.field textarea {
  resize: vertical;
  min-height: 9rem;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(217, 154, 0, 0.7);
  box-shadow: 0 0 0 4px rgba(239, 181, 17, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.spam-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 18rem);
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 0.35rem;
}

.form-policy {
  max-width: none;
  padding-right: 0.25rem;
}

.form-footer .button {
  width: 100%;
  min-height: 3.5rem;
  min-width: 0;
  border: 0;
  cursor: pointer;
  justify-self: stretch;
  align-self: center;
}

.form-footer .button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.form-status {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-status.is-success {
  color: #0f5132;
  background: rgba(198, 239, 206, 0.9);
  border: 1px solid rgba(15, 81, 50, 0.18);
}

.form-status.is-error {
  color: #842029;
  background: rgba(248, 215, 218, 0.92);
  border: 1px solid rgba(132, 32, 41, 0.18);
}

.section-gallery {
  padding-top: 0;
}

.pricing-section {
  padding-top: 0;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.pricing-hero-card,
.pricing-side-card,
.pricing-side-note {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 27, 21, 0.12);
  box-shadow: var(--shadow);
}

.pricing-hero-card {
  padding: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 107, 0.42), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(248, 239, 221, 0.92));
}

.pricing-hero-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.5rem;
}

.pricing-hero-card .button {
  margin-top: 1.1rem;
}

.pricing-description {
  max-width: 34rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.pricing-side {
  display: grid;
  gap: 1rem;
}

.pricing-side-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.8);
}

.pricing-side-card h3 {
  margin-bottom: 0.45rem;
}

.pricing-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-value {
  margin: 0 0 0.55rem;
  color: var(--text);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
}

.pricing-side-text,
.pricing-side-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.pricing-side-note {
  padding: 1.25rem 1.4rem;
  background: rgba(255, 250, 241, 0.64);
}

.gallery-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.gallery-button {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.gallery-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(24, 21, 17, 0.54) 100%);
  opacity: 0;
  transition: opacity 160ms ease;
}

.gallery-button:hover::after,
.gallery-button:focus-visible::after {
  opacity: 1;
}

.gallery-button:focus-visible {
  outline: 3px solid rgba(239, 181, 17, 0.55);
  outline-offset: 4px;
}

.gallery-feature,
.gallery-card {
  overflow: hidden;
  min-height: 18rem;
}

.gallery-feature {
  min-height: 36rem;
}

.gallery-rail {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  min-height: 11.25rem;
}

.gallery-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-grid;
  gap: 0.15rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(17, 14, 11, 0.78);
  color: var(--white);
  text-align: left;
  backdrop-filter: blur(10px);
}

.gallery-badge small {
  color: rgba(255, 255, 255, 0.72);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(10, 9, 8, 0.9);
  backdrop-filter: blur(12px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.lightbox-figure img {
  max-width: min(92vw, 1100px);
  max-height: 78vh;
  width: auto;
  border-radius: 1.2rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-weight: 700;
}

.lightbox-nav {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
}

body.is-lightbox-open {
  overflow: hidden;
}

.contact-section {
  padding-top: 0.5rem;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto 2rem;
  padding: 1.2rem 1.25rem;
  border-radius: 2rem;
  background: #17130f;
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(20, 15, 10, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  flex: 0 0 auto;
}

.footer-brand strong,
.footer-block p,
.footer-block a,
.footer-label {
  display: block;
}

.inline-label,
.inline-value {
  display: inline;
  white-space: nowrap;
}

.footer-brand strong {
  margin-bottom: 0.25rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-brand p,
.footer-block p {
  margin: 0 0 0.35rem;
  line-height: 1.4;
  font-size: 0.94rem;
}

.footer-label {
  margin-bottom: 0.45rem;
  color: #ffcb4a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-block a {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.footer-block a + a {
  margin-top: 0.35rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-meta a,
.footer-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-meta a {
  font-weight: 600;
}

.label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.map-embed {
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(31, 27, 21, 0.12);
  box-shadow: 0 18px 40px rgba(32, 23, 7, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 18rem;
  border: 0;
}

.map-consent {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.map-preview {
  border-radius: 1rem;
  border: 1px solid rgba(31, 27, 21, 0.08);
  box-shadow: 0 14px 30px rgba(32, 23, 7, 0.1);
}

.map-consent strong {
  font-size: 0.95rem;
}

.map-consent p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.4;
  font-size: 0.95rem;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.contact-section .section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.form-heading h3 {
  font-size: 1.7rem;
}

.form-heading p,
.form-footer p {
  font-size: 0.96rem;
}

.map-frame {
  display: block;
  width: 100%;
  height: 18rem;
  border: 0;
}

.legal-section {
  padding-top: 2rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: start;
}

.legal-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid rgba(31, 27, 21, 0.12);
  box-shadow: var(--shadow);
}

.legal-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-intro-title {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.legal-summary > div {
  min-width: 0;
}

.legal-summary > div:last-child {
  padding-left: 1.2rem;
  border-left: 1px solid rgba(31, 27, 21, 0.1);
}

.legal-card h2 {
  font-size: clamp(1.12rem, 1.4vw, 1.35rem);
  margin-bottom: 0.7rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.legal-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--text-soft);
}

.legal-list {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-stack {
  display: grid;
  gap: 0.9rem;
}

.legal-block {
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid rgba(31, 27, 21, 0.12);
  box-shadow: var(--shadow);
}

.legal-block h2 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.legal-block p {
  margin: 0;
  line-height: 1.65;
  color: var(--text-soft);
}

.reveal {
  animation: fade-up 700ms ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 980px) {
  .topbar,
  .hero,
  .section {
    width: min(calc(100% - 1.4rem), var(--content-width));
  }

  .topbar,
  .hero,
  .service-grid,
  .benefit-layout,
  .contact-layout,
  .footer-grid,
  .field-grid,
  .gallery-shell,
  .pricing-layout,
  .legal-summary,
  .legal-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .legal-summary > div:last-child {
    padding-left: 0;
    border-left: 0;
    padding-top: 0.2rem;
  }

  .footer-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 0 0.8rem;
    text-align: center;
  }

  .header-cta {
    width: auto;
    max-width: 100%;
    justify-content: center;
    gap: 0.6rem;
  }

  .hero {
    padding-top: 2rem;
    gap: 2.2rem;
  }

  .nav {
    width: auto;
    max-width: 100%;
    justify-content: center;
  }

  .photo-stack {
    min-height: 32rem;
  }

  .photo-card-main {
    inset: 5.5rem 0 0 1.5rem;
  }

  .gallery-feature {
    min-height: 22rem;
  }

  .section-dark {
    padding: 1.6rem;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: static;
    gap: 0.8rem;
    align-items: center;
    text-align: center;
  }

  .hero-copy,
  .section-heading,
  .benefit-copy,
  .service-card,
  .feature-panel article,
  .pricing-hero-card,
  .pricing-side-card,
  .pricing-side-note,
  .contact-card,
  .form-card,
  .form-heading,
  .hero-points article,
  .footer-block,
  .footer-brand,
  .footer-meta,
  .footer-meta-links {
    text-align: center;
  }

  .nav {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1rem;
    width: min(100%, 34rem);
    padding: 0.85rem 1rem;
    border-radius: 1.2rem;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .header-cta {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    width: min(100%, 34rem);
  }

  .header-link {
    width: auto;
    max-width: 100%;
    min-height: 2.95rem;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero {
    gap: 1.6rem;
    padding-top: 1.2rem;
  }

  .brand {
    width: auto;
    gap: 0.75rem;
    justify-content: center;
  }

  .footer-grid {
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-meta {
    align-items: center;
    text-align: center;
  }

  .footer-meta-links {
    justify-content: center;
  }

  .brand-mark {
    width: 3.1rem;
    height: 3.1rem;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text small {
    font-size: 0.84rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.2rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .lead,
  .benefit-copy p,
  .service-card p,
  .feature-panel p,
  .contact-card p,
  .form-card p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
    margin-top: 1.35rem;
    gap: 0.75rem;
    justify-content: center;
  }

  .hero-points {
    margin-top: 1.4rem;
    gap: 0.8rem;
  }

  .lightbox {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 1rem;
  }

  .lightbox-nav {
    position: absolute;
    bottom: 1rem;
  }

  .lightbox-prev {
    left: calc(50% - 4.2rem);
  }

  .lightbox-next {
    right: calc(50% - 4.2rem);
  }

  .lightbox-figure img {
    max-width: 100%;
    max-height: 72vh;
  }

  .photo-stack {
    min-height: 23rem;
  }

  .photo-card-top {
    width: 64%;
    border-width: 8px;
    transform: rotate(-4deg);
  }

  .photo-card-main {
      inset: 4rem 0 0 0.85rem;
      border-width: 8px;
      transform: rotate(2deg);
    }

  .badge {
    right: auto;
    left: 0.4rem;
    bottom: 0.4rem;
    max-width: min(88%, 18rem);
    padding: 0.8rem 0.95rem;
  }

  .badge strong {
    font-size: 1rem;
    line-height: 1.25;
  }

  .button,
  .button-secondary,
  .button-primary {
    width: auto;
  }

  .form-footer {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-actions .button,
  .contact-actions .button,
  .pricing-hero-card .button,
  .form-footer .button {
    min-width: min(100%, 18rem);
  }

  .gallery-feature {
    min-height: 18rem;
  }

  .gallery-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gallery-card {
    min-height: 8.8rem;
  }

  .gallery-badge {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.75rem 0.85rem;
  }

  .pricing-hero-card,
  .pricing-side-card,
  .pricing-side-note,
  .contact-card,
  .form-card,
  .legal-card,
  .legal-block {
    padding: 1.15rem;
  }

  .pricing-value {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .pricing-hero-card .button,
  .form-footer .button {
    width: 100%;
  }

  .contact-card h3,
  .form-heading h3 {
    font-size: 1.45rem;
    line-height: 1.15;
  }

  .map-frame,
  .map-embed iframe {
    height: 15rem;
  }

  .site-footer {
    width: min(calc(100% - 1.4rem), var(--content-width));
    margin-bottom: 1.4rem;
    padding: 1rem;
    border-radius: 1.5rem;
  }

  .footer-brand {
    gap: 0.8rem;
  }

  .footer-brand,
  .footer-block,
  .footer-meta,
  .footer-meta-links {
    justify-content: center;
    align-items: center;
  }

  .check-list {
    justify-items: center;
  }

  .check-list li {
    padding-left: 0;
    padding-top: 1.35rem;
    text-align: center;
  }

  .check-list li::before {
    left: 50%;
    top: 0.15rem;
    transform: translateX(-50%);
  }

  .footer-meta {
    gap: 0.7rem;
  }

  .footer-meta-links {
    gap: 0.55rem 1rem;
  }

  .footer-meta a,
  .footer-meta p,
  .footer-meta span {
    font-size: 0.84rem;
  }
}

@media (max-width: 420px) {
  .topbar,
  .hero,
  .section,
  .site-footer {
    width: min(calc(100% - 1rem), var(--content-width));
  }

  .topbar {
    padding-top: 0.85rem;
    align-items: center;
  }

  .brand-text small {
    display: none;
  }

  .nav {
    width: 100%;
    padding: 0.8rem 0.9rem;
  }

  .nav a {
    font-size: 0.88rem;
  }

  .header-link {
    min-height: 2.9rem;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 2.7rem);
  }

  .photo-stack {
    min-height: 20.5rem;
  }

  .photo-card-top {
    width: 63%;
    border-width: 6px;
  }

  .photo-card-main {
      inset: 3.4rem 0 0 0.4rem;
      border-width: 6px;
    }

  .badge {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    border-radius: 1rem;
  }

  .gallery-feature {
    min-height: 16rem;
  }

  .gallery-rail {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 10rem;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.7rem 0.9rem;
  }

  .lightbox-nav {
    width: 3rem;
    height: 3rem;
  }
}

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

  .reveal,
  .button {
    animation: none;
    transition: none;
  }
}

.hero {
  gap: clamp(2rem, 4vw, 3.4rem);
  padding: 4.4rem 0 3.2rem;
}

.hero-copy {
  align-content: center;
  gap: 0.2rem;
  max-width: 35rem;
}

.lead {
  max-width: 31rem;
  margin: 1rem 0 0;
}

.hero-actions {
  margin-top: 1.7rem;
}

.photo-stack {
  min-height: 36rem;
}
#vyuziti .section-heading {
  max-width: 64rem;
  margin-bottom: 1.6rem;
}

#vyuziti .section-heading h2 {
  max-width: 20ch;
}

.benefit-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 1.8rem;
}

.benefit-copy {
  display: grid;
  gap: 1.25rem;
  padding: 1.55rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.benefit-copy p {
  margin: 0;
  max-width: 29rem;
  font-size: 1.04rem;
}

.check-list {
  gap: 0.95rem;
  margin: 0;
}

.check-list li {
  padding-left: 1.75rem;
  font-size: 1.02rem;
}

.check-list li::before {
  top: 0.42rem;
  width: 0.78rem;
  height: 0.78rem;
}

.feature-panel {
  gap: 1.1rem;
}

.feature-panel article {
  padding: 1.45rem 1.55rem;
  background: rgba(255, 250, 241, 0.8);
}

.feature-panel article strong {
  margin-bottom: 0.65rem;
}

@media (max-width: 980px) {
  .benefit-copy {
    padding: 1.35rem 1.25rem;
  }
}
#vyuziti {
  position: relative;
}

#vyuziti .section-heading {
  max-width: 58rem;
  margin-bottom: 1.9rem;
}

#vyuziti .section-heading h2 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.benefit-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 1.5rem;
}

.benefit-copy {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 1.55rem;
  border-radius: 1.75rem;
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

#vyuziti .benefit-copy p {
  margin: 0;
  max-width: 28rem;
  color: var(--text-soft);
  font-size: 1.03rem;
}

.check-list {
  gap: 0.85rem;
  margin: 0;
}

.check-list li {
  padding-left: 1.85rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.check-list li::before {
  top: 0.3rem;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #f0b214 0%, #ffd665 100%);
  box-shadow: 0 0 0 4px rgba(240, 178, 20, 0.12);
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-panel article {
  min-height: 10.25rem;
  padding: 1.4rem 1.45rem;
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

.feature-panel article:first-child {
  grid-column: 1 / -1;
}

.feature-panel article strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 1.04rem;
}

#vyuziti .feature-panel p {
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .benefit-layout {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-panel article:first-child {
    grid-column: auto;
  }
}
.benefit-main {
  display: grid;
  align-content: start;
  gap: 1rem;
}

#vyuziti .benefit-heading {
  max-width: none;
  margin-bottom: 0;
}

#vyuziti .benefit-heading h2 {
  max-width: 11ch;
  font-size: clamp(1.95rem, 3.1vw, 3rem);
  line-height: 1.06;
}

.benefit-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.35rem;
}

.benefit-copy {
  gap: 1.15rem;
  padding: 1.35rem 1.4rem;
}

#vyuziti .benefit-copy p {
  max-width: 26rem;
  font-size: 1rem;
}

.feature-panel article {
  min-height: 9.5rem;
  padding: 1.25rem 1.3rem;
}

.feature-panel article strong {
  margin-bottom: 0.55rem;
}

@media (max-width: 980px) {
  .benefit-main {
    gap: 0.9rem;
  }

  #vyuziti .benefit-heading h2 {
    max-width: 100%;
  }
}

#vyuziti {
  padding-top: clamp(4.2rem, 7vw, 5.5rem);
}

#vyuziti .benefit-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 1.4rem;
  align-items: start;
}

#vyuziti .benefit-main {
  gap: 1.15rem;
}

#vyuziti .benefit-heading {
  max-width: 34rem;
}

#vyuziti .benefit-heading .eyebrow {
  margin-bottom: 0.85rem;
}

#vyuziti .benefit-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

#vyuziti .benefit-copy {
  gap: 1.3rem;
  padding: 1.55rem 1.6rem;
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 46px rgba(84, 60, 24, 0.08);
}

#vyuziti .benefit-copy p {
  max-width: 29rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

#vyuziti .check-list {
  gap: 0.95rem;
}

#vyuziti .check-list li {
  font-size: 1rem;
}

#vyuziti .feature-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#vyuziti .feature-panel article {
  min-height: 11rem;
  padding: 1.45rem 1.45rem 1.35rem;
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 22px 46px rgba(84, 60, 24, 0.08);
}

#vyuziti .feature-panel article:first-child {
  grid-column: 1 / -1;
  min-height: 9rem;
}

#vyuziti .feature-panel article strong {
  margin-bottom: 0.65rem;
  font-size: 1.04rem;
  line-height: 1.25;
}

#vyuziti .feature-panel article p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

#vyuziti .feature-panel-single {
  grid-template-columns: 1fr;
}

#vyuziti .feature-panel-single article {
  min-height: auto;
  padding: 1.65rem 1.7rem;
  display: grid;
  align-content: center;
}

#vyuziti .feature-panel-single article p {
  max-width: 34rem;
  font-size: 1.04rem;
  line-height: 1.85;
}

@media (max-width: 980px) {
  #vyuziti .benefit-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  #vyuziti .benefit-heading {
    max-width: 100%;
  }

  #vyuziti .benefit-heading h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  #vyuziti .feature-panel {
    grid-template-columns: 1fr;
  }

  #vyuziti .feature-panel article:first-child {
    grid-column: auto;
  }

  #vyuziti .feature-panel-single article {
    padding: 1.35rem 1.25rem;
  }
}
