:root {
  --bg: #0b0c0f;
  --panel: rgba(15, 16, 20, 0.92);
  --panel-soft: #16181d;
  --panel-strong: #0e1014;
  --line: rgba(242, 242, 242, 0.12);
  --line-strong: rgba(242, 242, 242, 0.2);
  --text: #f2f2f2;
  --muted: #99a1ae;
  --accent: #2d7cff;
  --accent-soft: rgba(45, 124, 255, 0.16);
  --cream: #efe7dc;
  --success: #27c07d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 124, 255, 0.14), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #13151a 0%, #090909 55%, #0b0c0f 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1280px, calc(100% - 28px));
  margin: 14px auto 28px;
  border: 1px solid var(--line);
  background: rgba(7, 8, 10, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: clip;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 10, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: #0d0d0f;
  font-weight: 700;
}

.brand-name {
  font-size: 0.94rem;
}

.site-nav,
.topbar-actions,
.hero-actions,
.hero-facts,
.feature-actions,
.contact-buttons {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a,
.topbar-link {
  position: relative;
}

.site-nav a::after,
.topbar-link::after,
.feature-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.topbar-link:hover::after,
.topbar-link:focus-visible::after,
.feature-link:hover::after,
.feature-link:focus-visible::after {
  transform: scaleX(1);
}

.topbar-actions {
  gap: 18px;
}

.topbar-auth {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.topbar-auth [hidden] {
  display: none !important;
}

.topbar-link {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-entry,
.auth-user-panel,
.auth-logout-btn {
  display: inline-flex;
  align-items: center;
}

.auth-entry {
  justify-content: center;
  min-height: 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.auth-entry:hover,
.auth-entry:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242, 242, 242, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.auth-entry-icon,
.auth-logout-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.auth-entry-icon svg,
.auth-logout-icon svg {
  width: 100%;
  height: 100%;
}

.auth-user-panel {
  gap: 10px;
  padding: 6px 6px 6px 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.auth-user-panel:hover,
.auth-user-panel:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242, 242, 242, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.auth-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--panel-soft);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.auth-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-avatar span {
  display: inline-flex;
}

.auth-user-copy {
  display: grid;
  min-width: 0;
}

.auth-user-copy strong,
.auth-user-copy small {
  max-width: 156px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-user-copy strong {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}

.auth-user-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-logout-btn {
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(242, 242, 242, 0.14);
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.auth-logout-btn:hover,
.auth-logout-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242, 242, 242, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

main {
  padding: 36px 28px 82px;
}

.section-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 44px;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 140px);
  padding: 26px 0 42px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3,
.price-value,
.fact-label,
.form-title {
  font-family: "Space Grotesk", sans-serif;
}

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

h1 {
  max-width: 8ch;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.34rem;
}

.hero-text,
.feature-copy p,
.section-heading + *,
.contact-copy p,
.accordion-panel p,
.process-list p,
.project-card p,
.service-card p,
.hero-meta p,
.contact-form label {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.04rem;
}

.hero-actions,
.feature-actions,
.contact-buttons {
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242, 242, 242, 0.45);
}

.button-primary {
  background: var(--text);
  color: #0d0d0f;
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--text);
}

.button-ghost {
  border-color: rgba(45, 124, 255, 0.34);
  background: rgba(45, 124, 255, 0.08);
}

.instagram-btn {
  gap: 10px;
}

.instagram-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.instagram-btn-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-facts {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-facts div,
.contact-highlights div {
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.fact-label,
.contact-highlights span,
.meta-grid span,
.meta-kicker,
.project-tag,
.price-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-facts strong,
.contact-highlights strong,
.meta-grid strong {
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 10% -8% -10% 15%;
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.24), transparent 58%);
  filter: blur(44px);
  pointer-events: none;
}

.hero-card,
.feature-frame,
.service-card,
.project-card,
.process-list article,
.contact-form,
.accordion {
  border: 1px solid var(--line);
  background: var(--panel);
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 124, 255, 0.9), transparent);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(45, 124, 255, 0.8);
}

.hero-art {
  position: relative;
  background:
    linear-gradient(135deg, #efe7dc 0%, #ddd4c6 100%);
  padding: 24px;
}

.hero-art img,
.feature-frame img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.hero-image {
  aspect-ratio: 4 / 5;
  object-position: center 38%;
}

.feature-image {
  aspect-ratio: 4 / 3;
  object-position: center center;
}

.hero-art-overlay,
.feature-badge,
.gallery-copy {
  position: absolute;
  border: 1px solid rgba(242, 242, 242, 0.14);
  background: rgba(9, 10, 12, 0.72);
  backdrop-filter: blur(14px);
}

.hero-art-overlay {
  left: 36px;
  bottom: 36px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
}

.hero-art-overlay span,
.feature-badge span,
.gallery-copy span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-art-overlay strong,
.feature-badge strong,
.gallery-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  line-height: 1.15;
}

.hero-meta {
  padding: 24px;
}

.hero-meta h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.feature,
.services,
.projects,
.process,
.accordion-section,
.contact {
  padding-top: 84px;
}

.marquee-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--muted);
}

.marquee-band p {
  margin: 0;
  text-align: center;
}

.feature-frame {
  position: relative;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(239, 231, 220, 0.98), rgba(239, 231, 220, 0.84)),
    var(--panel);
}

.feature-badge {
  right: 44px;
  bottom: 44px;
  max-width: 260px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
}

.feature-copy h2 {
  margin-bottom: 24px;
}

.price-block {
  margin: 34px 0 24px;
}

.price-value {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.feature-link {
  position: relative;
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  max-width: 12ch;
}

.service-grid,
.project-grid,
.process-list,
.product-gallery {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.product-strip {
  padding-top: 84px;
}

.product-gallery {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.gallery-card-tall {
  min-height: 520px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.gallery-image-left {
  object-position: 18% center;
}

.gallery-image-center {
  object-position: 54% center;
}

.gallery-image-right {
  object-position: 86% center;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 7, 9, 0.78) 100%);
  pointer-events: none;
}

.gallery-copy {
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.project-card,
.process-list article {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.project-card:hover,
.process-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 242, 242, 0.28);
  background: rgba(19, 21, 26, 0.95);
}

.service-card span,
.process-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
}

.service-card h3,
.project-card h3,
.process-list h3 {
  margin-bottom: 14px;
}

.project-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.project-card-large {
  background:
    linear-gradient(135deg, rgba(45, 124, 255, 0.14), transparent 62%),
    var(--panel-soft);
}

.process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.accordion-section {
  display: grid;
  gap: 12px;
}

.accordion {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  color: var(--text);
  cursor: pointer;
}

.accordion-panel {
  display: none;
  padding: 0 22px 22px;
  border-bottom: 1px solid var(--line);
}

.accordion.is-open + .accordion-panel {
  display: block;
}

.contact {
  padding-bottom: 24px;
}

.contact-highlights {
  display: grid;
  gap: 12px;
  margin: 30px 0 22px;
}

.contact-note {
  margin-top: 18px;
  font-size: 0.92rem;
}

.contact-note.is-ready {
  color: var(--success);
}

.contact-note.is-warning {
  color: #f3c265;
}

.abm-layout {
  display: grid;
  gap: 24px;
  padding-top: 24px;
}

.abm-hero,
.abm-card,
.abm-item {
  border: 1px solid var(--line);
  background: var(--panel);
}

.abm-shell-card,
.abm-hero,
.abm-card {
  padding: 24px;
}

.abm-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.abm-hero h1 {
  max-width: 10ch;
}

.abm-hero-copy .hero-text {
  max-width: 60ch;
}

.abm-hero-meta,
.abm-side-stack {
  display: grid;
  gap: 18px;
}

.abm-auth-card,
.abm-summary-item,
.abm-form-section,
.abm-preview-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.abm-auth-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.abm-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(45, 124, 255, 0.25);
  background: rgba(45, 124, 255, 0.09);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.abm-auth-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
}

.abm-auth-card .contact-note {
  margin-top: 0;
}

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

.abm-summary-item {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.abm-summary-item span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.abm-summary-item strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.abm-summary-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.abm-heading-block {
  align-items: start;
}

.abm-heading-block .contact-note {
  margin: 0;
  max-width: 38ch;
}

.abm-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 18px;
}

.abm-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.abm-form-structured {
  gap: 20px;
}

.abm-form-section {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.abm-section-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.abm-section-intro h3 {
  margin-bottom: 6px;
}

.abm-section-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.abm-step {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(45, 124, 255, 0.28);
  background: rgba(45, 124, 255, 0.1);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
}

.abm-field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 14px;
}

.abm-upload-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(45, 124, 255, 0.06);
}

.abm-upload-copy {
  display: grid;
  gap: 8px;
}

.abm-upload-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.abm-upload-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.abm-file-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.abm-file-field input[type="file"] {
  width: 100%;
  border: 1px dashed rgba(242, 242, 242, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  padding: 12px 14px;
}

.abm-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.abm-form input,
.abm-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 0;
  resize: vertical;
}

.abm-form input:focus,
.abm-form textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.abm-helper {
  display: grid;
  gap: 14px;
}

.abm-helper p,
.abm-item-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.abm-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.abm-list-rich {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.abm-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.abm-item:hover,
.abm-item.is-active {
  transform: translateY(-2px);
  border-color: rgba(45, 124, 255, 0.38);
  background: rgba(19, 21, 26, 0.96);
}

.abm-item-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.abm-item-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.abm-item-top {
  display: grid;
  gap: 6px;
}

.abm-item-copy h3 {
  margin: 0;
}

.abm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.abm-actions-emphasis {
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.abm-preview-card {
  overflow: hidden;
}

.abm-preview-media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(239, 231, 220, 0.98), rgba(239, 231, 220, 0.84));
}

.abm-preview-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.abm-preview-copy {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.abm-preview-copy .eyebrow {
  margin-bottom: 0;
}

.abm-preview-copy .contact-note {
  margin-top: 0;
}

.abm-preview-features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.abm-preview-features li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.abm-preview-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-title {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--text);
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.4);
  background: #21bd5c;
}

.whatsapp-float-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
}

.whatsapp-float-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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

@media (max-width: 1120px) {
  .service-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .abm-hero,
  .abm-editor-layout,
  .abm-summary-grid,
  .abm-list-rich {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .product-gallery,
  .section-grid,
  .contact,
  .marquee-band {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .marquee-band {
    gap: 8px;
  }

  .abm-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100%, calc(100% - 12px));
    margin: 6px auto 18px;
  }

  .topbar,
  main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-nav,
  .topbar-actions {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 12px;
  }

  .site-nav.is-open,
  .topbar-actions.is-open {
    display: flex;
  }

  .topbar-auth {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .auth-user-copy {
    display: none;
  }

  .auth-entry,
  .auth-user-panel {
    justify-content: center;
  }

  .auth-user-panel {
    padding: 4px;
  }

  .auth-avatar {
    width: 36px;
    height: 36px;
  }

  .auth-logout-btn {
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.8rem);
  }

  h2 {
    max-width: none;
  }

  .service-grid,
  .project-grid,
  .product-gallery,
  .process-list,
  .meta-grid,
  .abm-item,
  .abm-field-grid,
  .abm-upload-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card-header,
  .hero-meta,
  .hero-art,
  .feature-frame,
  .service-card,
  .project-card,
  .process-list article,
  .contact-form {
    padding: 18px;
  }

  .hero-art-overlay {
    left: 26px;
    right: 26px;
    bottom: 26px;
  }

  .feature-badge {
    left: 26px;
    right: 26px;
    bottom: 26px;
    max-width: none;
  }

  .gallery-card,
  .gallery-card-tall {
    min-height: 320px;
  }

  .whatsapp-float {
    right: 14px;
    left: auto;
    bottom: 14px;
  }

  .abm-item-image,
  .abm-preview-media {
    aspect-ratio: 16 / 11;
  }
}
