:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.09);
  --primary: #c46b42;
  --primary-dark: #9f5634;
  --accent: #e9d5c9;
  --success: #166534;
  --danger: #b91c1c;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --container: 1240px;
  --header-height: 78px;
}

* { 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(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 107, 66, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.18), transparent 38%);
  z-index: -1;
}

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

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

button, input { font: inherit; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--text);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 25px rgba(196, 107, 66, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.hero h1,
.section-heading h2,
.about-panel h2,
.contact-panel h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(196, 107, 66, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 10.8ch;
}

.hero p {
  margin: 0 0 1.75rem;
  max-width: 60ch;
  font-size: 1.06rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 16px 35px rgba(196, 107, 66, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border-color: var(--line);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.hero-signature {
  margin-top: 1rem;
  max-width: 52ch;
  padding-left: 1rem;
  border-left: 2px solid rgba(196, 107, 66, 0.24);
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-signature strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -20% 68% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 107, 66, 0.22), transparent 62%);
  pointer-events: none;
}

.dashboard {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.6;
  animation: floatSoft 10s ease-in-out infinite;
}

.orb-1 {
  width: 150px;
  height: 150px;
  top: -20px;
  right: -25px;
  background: radial-gradient(circle, rgba(196, 107, 66, 0.16), rgba(196, 107, 66, 0));
}

.orb-2 {
  width: 110px;
  height: 110px;
  bottom: 24px;
  left: -18px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0));
  animation-delay: -4s;
}

.wave-line {
  position: absolute;
  inset: auto 0 12px 0;
  width: 100%;
  height: 110px;
  opacity: 0.45;
}

.wave-line path {
  fill: none;
  stroke: rgba(196, 107, 66, 0.22);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  animation: driftLine 16s linear infinite;
}

.editorial-shot {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(242, 232, 225, 0.9), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.shot-window {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.shot-toolbar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.85rem;
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.shot-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(196, 107, 66, 0.32);
}

.shot-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 200px;
}

.shot-sidebar {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.02));
  border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.shot-content {
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(196, 107, 66, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,247,244,0.9));
}

.shot-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.09);
  margin-bottom: 0.7rem;
}

.shot-line.large { width: 72%; height: 16px; }
.shot-line.medium { width: 58%; }
.shot-line.small { width: 42%; }

.shot-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.shot-cards span {
  display: block;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(196, 107, 66, 0.12), rgba(15, 23, 42, 0.04));
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.shot-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.dashboard-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,248,245,0.9));
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 24px;
  padding: 1rem;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.status-pill {
  padding: 0.4rem 0.7rem;
  background: rgba(22, 101, 52, 0.08);
  color: var(--success);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

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

.metric {
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,248,245,0.88));
}

.metric strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.2rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.94rem;
}

.sparkline {
  margin-top: 0.8rem;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(241,245,249,0.9), rgba(255,255,255,0.85));
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.sparkline svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sparkline path {
  fill: none;
  stroke: rgba(196, 107, 66, 0.65);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sparkline .area {
  fill: rgba(196, 107, 66, 0.08);
  stroke: none;
}

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

.mini-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,248,245,0.9));
  transition: transform 0.32s ease, border-color 0.28s ease, box-shadow 0.32s ease;
}

.mini-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 107, 66, 0.18);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.07);
}

.mini-list small {
  display: block;
  color: var(--muted);
}

section {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading .tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-heading h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading .tag {
  position: relative;
  padding-right: 2.8rem;
}

.section-heading .tag::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.7rem);
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 107, 66, 0.42), transparent);
}

.compact-heading {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 0.8rem;
  line-height: 1.04;
}

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

.hero-card,
.editorial-shot,
.dashboard-panel,
.metric,
.service-card,
.about-panel,
.contact-panel,
.about-point {
  --mx: 50%;
  --my: 50%;
  transition:
    transform 0.38s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.38s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  will-change: transform, box-shadow;
}

.hero-card::after,
.editorial-shot::after,
.dashboard-panel::after,
.metric::after,
.service-card::after,
.about-panel::after,
.contact-panel::after,
.about-point::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(240px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.52), transparent 45%),
    radial-gradient(320px circle at var(--mx) var(--my), rgba(196, 107, 66, 0.11), transparent 58%);
  transition: opacity 0.28s ease;
}

.hero-card:hover,
.editorial-shot:hover,
.dashboard-panel:hover,
.service-card:hover,
.about-panel:hover,
.contact-panel:hover,
.about-point:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 107, 66, 0.18);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.09);
}

.metric:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 107, 66, 0.18);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.hero-card:hover::after,
.editorial-shot:hover::after,
.dashboard-panel:hover::after,
.metric:hover::after,
.service-card:hover::after,
.about-panel:hover::after,
.contact-panel:hover::after,
.about-point:hover::after,
.hero-card.is-hovered::after,
.editorial-shot.is-hovered::after,
.dashboard-panel.is-hovered::after,
.metric.is-hovered::after,
.service-card.is-hovered::after,
.about-panel.is-hovered::after,
.contact-panel.is-hovered::after,
.about-point.is-hovered::after {
  opacity: 1;
}

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 245, 0.88));
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(196, 107, 66, 0.14), rgba(196, 107, 66, 0.24));
  color: var(--primary-dark);
  font-weight: 800;
}

.service-icon svg,
.feature-icon svg,
.list-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon,
.feature-icon,
.list-icon {
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.service-card:hover .service-icon,
.about-point:hover .feature-icon,
.feature-list li:hover .list-icon,
.dashboard-panel:hover .service-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 24px rgba(196, 107, 66, 0.18);
}

.service-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.about {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(241,245,249,0.8));
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
}

.about-panel,
.contact-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 248, 245, 0.86));
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 28px;
  padding: 1.7rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.about-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.about-point {
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,242,238,0.86));
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.about-point strong {
  display: block;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.about-point-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.feature-icon,
.list-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(196, 107, 66, 0.12), rgba(196, 107, 66, 0.2));
  color: var(--primary-dark);
  border: 1px solid rgba(196, 107, 66, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: start;
}

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

.contact-card p,
.contact-card li,
.contact-note,
.form-help {
  color: var(--muted);
}

.contact-note code {
  padding: 0.18rem 0.4rem;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.06);
}

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

.contact-list li {
  padding: 1rem;
  border-radius: 16px;
  background: var(--surface-alt);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.9rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 0.15rem;
}

form {
  display: grid;
  gap: 1rem;
}

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

label {
  font-weight: 600;
  letter-spacing: -0.01em;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus {
  border-color: rgba(196, 107, 66, 0.55);
  box-shadow: 0 0 0 4px rgba(196, 107, 66, 0.12);
}

.captcha-box {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #fff, #faf8f6);
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.captcha-question {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: var(--surface-alt);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.captcha-row input {
  max-width: 120px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.form-message {
  min-height: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-message.error { color: var(--danger); }
.form-message.success { color: var(--success); }

.site-footer {
  padding: 1.75rem 0 2.2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p,
.footer-inner a {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@keyframes floatSoft {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes driftLine {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -180; }
}

@media (max-width: 960px) {
  .hero-grid,
  .services-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--surface-alt);
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 4.25rem;
  }

  .shot-body {
    grid-template-columns: 68px 1fr;
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 72px;
  }

  section {
    padding: 3.7rem 0;
  }

  .hero-actions,
  .form-actions,
  .footer-inner {
    align-items: stretch;
  }

  .btn,
  .form-actions .btn {
    width: 100%;
  }

  .metric-grid,
  .shot-cards {
    grid-template-columns: 1fr;
  }
}


@media (hover: none) {
  .hero-card:hover,
  .editorial-shot:hover,
  .dashboard-panel:hover,
  .service-card:hover,
  .about-panel:hover,
  .contact-panel:hover,
  .about-point:hover,
  .metric:hover,
  .mini-list li:hover {
    transform: none;
    box-shadow: initial;
  }
}
