/* Home Reset - one page */
:root {
  --ink: #243028;
  --ink-soft: #5a6b60;
  --paper: #f5f3ee;
  --mist: #e7eee8;
  --sage: #6d8f7a;
  --sage-deep: #3f5c4a;
  --champagne: #c4a574;
  --champagne-soft: #e6d5b8;
  --line: rgba(36, 48, 40, 0.1);
  --glow: rgba(109, 143, 122, 0.28);
  --danger: #a04545;
  --ok: #3f5c4a;
  --font-display: "Cormorant Infant", Georgia, serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --radius: 18px;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(920px 520px at 10% -8%, rgba(109, 143, 122, 0.22), transparent 58%),
    radial-gradient(780px 460px at 92% 10%, rgba(196, 165, 116, 0.22), transparent 52%),
    radial-gradient(700px 420px at 50% 90%, rgba(231, 238, 232, 0.7), transparent 55%),
    linear-gradient(180deg, #eef3ee 0%, var(--paper) 42%, #efebe3 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

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

a {
  color: var(--sage-deep);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sage);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(245, 243, 238, 0.84);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 243, 238, 0.95);
  box-shadow: 0 8px 30px rgba(36, 48, 40, 0.05);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-text em {
  font-style: italic;
  font-weight: 600;
  color: var(--sage-deep);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--champagne));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0.55rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0.35rem 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: #f7f4ef;
  box-shadow: 0 12px 32px var(--glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7fa08c 0%, var(--sage) 100%);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(109, 143, 122, 0.35);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--champagne);
  color: var(--sage-deep);
  background: rgba(247, 244, 239, 0.88);
}

.btn-small {
  padding: 0.58rem 1.1rem;
  background: var(--ink);
  color: #f7f4ef;
  font-size: 0.88rem;
}

.btn-small:hover {
  background: var(--sage-deep);
  color: #fff;
}

.btn-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.btn-submit[disabled] {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(94vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: 5.5rem 0 4.75rem;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-visual img {
  object-fit: cover;
  object-position: 62% center;
  animation: heroDrift 22s var(--ease) infinite alternate;
  filter: saturate(1.08) contrast(1.04);
}

.hero-mist {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(36, 48, 40, 0.18) 0%, rgba(36, 48, 40, 0.05) 28%, rgba(245, 243, 238, 0.55) 68%, var(--paper) 100%),
    linear-gradient(105deg, rgba(245, 243, 238, 0.88) 0%, rgba(245, 243, 238, 0.55) 34%, rgba(245, 243, 238, 0.12) 58%, transparent 72%);
}

.hero-color-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 340px at 78% 30%, rgba(196, 165, 116, 0.22), transparent 70%),
    radial-gradient(420px 280px at 18% 70%, rgba(109, 143, 122, 0.18), transparent 65%);
  mix-blend-mode: soft-light;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  animation: riseIn 1s var(--ease) both;
}

.hero-brand {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-brand em {
  font-style: italic;
  color: var(--sage-deep);
}

.hero h1,
.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
  max-width: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  display: grid;
  gap: 0.06em;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.45rem;
  }
}

.hero-lead {
  margin: 0 0 1.85rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 34ch;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes softFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

/* Sections */
.section {
  padding: 5.75rem 0;
  position: relative;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 22ch;
}

.section-services h2,
.services-title {
  max-width: 16ch;
  display: grid;
  gap: 0.15rem;
}

.services-title-brand {
  display: block;
  font-style: italic;
  color: var(--sage-deep);
}

.services-title-rest {
  display: block;
}

.section-lead-follow {
  margin-top: -1.6rem;
}

.section-lead {
  margin: 0 0 2.6rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 48ch;
  font-weight: 500;
}


.section-services {
  overflow: hidden;
}

.section-services::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 165, 116, 0.22), transparent 70%);
  pointer-events: none;
  transform: translateX(35%);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-list li {
  padding: 1.65rem 1.5rem 1.7rem;
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.78), rgba(247, 244, 239, 0.55));
  border: 1px solid rgba(109, 143, 122, 0.16);
  box-shadow: 0 10px 36px rgba(36, 48, 40, 0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.service-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 165, 116, 0.45);
  box-shadow: 0 16px 40px rgba(109, 143, 122, 0.12);
}

.service-list h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.service-list p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.section-process {
  background:
    linear-gradient(180deg, transparent, rgba(109, 143, 122, 0.1) 18%, rgba(196, 165, 116, 0.1) 70%, transparent);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 4.75rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--champagne);
  line-height: 1;
  padding-top: 0.1rem;
}

.process-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.section-extra {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #e8eee9;
  background-image:
    linear-gradient(
      180deg,
      rgba(245, 243, 238, 0.88) 0%,
      rgba(245, 243, 238, 0.72) 35%,
      rgba(245, 243, 238, 0.78) 100%
    ),
    image-set(
      url("../assets/extra-bg.webp") type("image/webp"),
      url("../assets/extra-bg.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
}

.section-extra .shell {
  position: relative;
  z-index: 1;
}

.section-extra .eyebrow,
.section-extra h2 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.extra-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.extra-list li {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(247, 244, 239, 0.88));
  border: 1px solid rgba(109, 143, 122, 0.16);
  box-shadow: 0 12px 36px rgba(36, 48, 40, 0.08);
  backdrop-filter: blur(6px);
}

.extra-list h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  max-width: none;
}

.extra-list p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 500;
  max-width: none;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Pricing */
.section-pricing {
  padding-bottom: 5rem;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.pricing-list li {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.6rem 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(247, 244, 239, 0.62));
  border: 1px solid rgba(109, 143, 122, 0.16);
  box-shadow: 0 12px 36px rgba(36, 48, 40, 0.05);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.pricing-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 165, 116, 0.45);
  box-shadow: 0 16px 40px rgba(109, 143, 122, 0.12);
}

.pricing-featured {
  border-color: rgba(109, 143, 122, 0.35);
  background:
    linear-gradient(165deg, rgba(231, 238, 232, 0.95), rgba(255, 255, 255, 0.75));
  box-shadow: 0 16px 42px rgba(109, 143, 122, 0.14);
}

.pricing-wide {
  grid-column: 1 / -1;
}

.pricing-wide .pricing-desc {
  max-width: 62ch;
}

.pricing-name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing-price {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sage-deep);
}

.pricing-price strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pricing-desc {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  font-weight: 500;
  flex: 1;
}

.pricing-cta {
  align-self: flex-start;
  padding: 0.65rem 1.15rem;
  font-size: 0.9rem;
}

/* Visual strip - color & life between sections */
.visual-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: min(1200px, calc(100% - 1.5rem));
  margin: -1.5rem auto 1rem;
  padding: 0;
}

.visual-strip-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  min-height: 220px;
  box-shadow: 0 16px 40px rgba(36, 48, 40, 0.1);
}

.visual-strip-item picture,
.visual-strip-item img {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 220px;
}

.visual-strip-item img {
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: saturate(1.1);
}

.visual-strip-item:hover img {
  transform: scale(1.04);
}

.visual-strip-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.4rem 1.1rem 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: #f7f4ef;
  background: linear-gradient(180deg, transparent, rgba(36, 48, 40, 0.72));
}

.who-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.75rem;
  align-items: stretch;
}

.who-visual {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 18px 48px rgba(36, 48, 40, 0.1);
}

.who-visual picture,
.who-visual > picture img,
.who-visual > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08);
}

.who-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.who-points li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.1rem;
  color: var(--ink-soft);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  border: 1px solid rgba(109, 143, 122, 0.12);
}

.who-points li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne-soft), var(--sage));
  box-shadow: 0 0 0 3px rgba(109, 143, 122, 0.12);
}

.who-aside {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1.5rem 1.4rem;
  background: rgba(245, 243, 238, 0.92);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(36, 48, 40, 0.12);
}

.who-quote {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: #f7f4ef;
}

.who-visual .who-quote {
  color: var(--ink);
}

.who-sign {
  margin: 0;
  color: var(--sage-deep);
  font-weight: 700;
}

.section-contact {
  padding-bottom: 6.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-promise {
  margin: 0.35rem 0 1.35rem;
  padding: 0;
  border: 0;
  background: none;
}

.contact-promise-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--sage-deep);
}

.contact-promise p:last-child {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.5;
}

.contact-form {
  position: relative;
  padding: 1.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 244, 239, 0.78));
  border: 1px solid rgba(109, 143, 122, 0.18);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 22px 55px rgba(36, 48, 40, 0.07);
  backdrop-filter: blur(12px);
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.optional {
  font-weight: 500;
  color: var(--ink-soft);
}

.field-photos .photo-picker {
  display: grid;
  gap: 0.45rem;
}

.field-photos input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.photo-picker-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1.5px dashed rgba(109, 143, 122, 0.45);
  background: rgba(231, 238, 232, 0.45);
  color: var(--sage-deep);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.photo-picker-btn:hover {
  background: rgba(231, 238, 232, 0.85);
  border-color: var(--sage);
  transform: translateY(-1px);
}

.photo-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.photo-preview {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.photo-preview li {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(109, 143, 122, 0.2);
  background: #eef3ee;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-remove {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 1.55rem;
  height: 1.55rem;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 48, 40, 0.72);
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
}

.photo-remove:hover {
  background: var(--danger);
}

@media (max-width: 760px) {
  .photo-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid rgba(36, 48, 40, 0.12);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(109, 143, 122, 0.16);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--danger);
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status.is-ok {
  color: var(--ok);
}

.form-status.is-error {
  color: var(--danger);
}

.form-privacy {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.1rem 0 2.6rem;
  background:
    linear-gradient(180deg, rgba(231, 238, 232, 0.4), rgba(196, 165, 116, 0.12));
}

.footer-inner {
  display: grid;
  gap: 0.55rem;
}

.footer-copy,
.footer-meta,
.footer-admin {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-admin {
  margin-top: 0.25rem;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .service-list,
  .pricing-list {
    grid-template-columns: 1fr;
  }

  .visual-strip {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .visual-strip-item,
  .visual-strip-item picture,
  .visual-strip-item img {
    min-height: 200px;
  }

  .who-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(1120px, calc(100% - 1.5rem));
  }

  .nav-toggle {
    display: block;
  }

  .header-actions .btn-small {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(245, 243, 238, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 88vh;
    padding-top: 4rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 3.4rem 1fr;
    padding: 1.05rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-visual img,
  .hero-inner,
  .who-aside,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
