:root {
  --bg-900: #100708;
  --bg-850: #160b0c;
  --bg-800: #1d1111;
  --bg-700: #2a1a17;
  --surface: rgba(41, 24, 20, 0.66);
  --surface-strong: rgba(33, 19, 16, 0.9);
  --text-primary: #f4ecdf;
  --text-secondary: #d4c8b7;
  --text-muted: #ac9985;
  --accent-gold: #c7a064;
  --accent-gold-soft: #ab7f46;
  --accent-gold-light: #e2c38b;
  --accent-maroon: #64202b;
  --accent-brown: #3f291f;
  --accent-glow: rgba(199, 160, 100, 0.35);
  --border-soft: rgba(199, 160, 100, 0.24);
  --radius-xl: 1.3rem;
  --radius-lg: 1rem;
  --radius-md: 0.8rem;
  --shadow-soft: 0 24px 60px rgba(9, 4, 3, 0.56);
  --shadow-card: 0 14px 30px rgba(8, 4, 3, 0.44);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 14% 10%, rgba(132, 38, 58, 0.34), transparent 40%),
    radial-gradient(circle at 86% 16%, rgba(141, 103, 58, 0.18), transparent 36%),
    linear-gradient(165deg, #0b0506 0%, #170c0d 45%, #140b0a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 229, 189, 0.24) 0.8px, transparent 0);
  background-size: 3px 3px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 94%);
  z-index: -1;
}

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

svg {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  z-index: 200;
  color: var(--text-primary);
  background: rgba(34, 20, 17, 0.96);
  border: 1px solid var(--border-soft);
}

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

.section {
  position: relative;
  padding: 6.5rem 0;
}

.section-sm {
  position: relative;
  padding: 2.2rem 0 0;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
  z-index: -2;
  animation: float-orb 11s ease-in-out infinite alternate;
}

.orb-one {
  width: 380px;
  height: 380px;
  background: rgba(133, 37, 63, 0.25);
  top: -120px;
  left: -90px;
}

.orb-two {
  width: 320px;
  height: 320px;
  background: rgba(177, 137, 79, 0.2);
  right: -110px;
  top: 210px;
  animation-duration: 13s;
}

@keyframes float-orb {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(28px, -26px, 0) scale(1.08);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(14, 8, 8, 0.78);
  border-color: rgba(199, 160, 100, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 42px rgba(7, 3, 2, 0.55);
}

.nav-shell {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 18px rgba(10, 4, 3, 0.28));
}

.logo-text {
  display: inline-block;
  transform: translateY(0.03em);
}

.logo:focus-visible {
  outline: 2px solid rgba(235, 206, 155, 0.85);
  outline-offset: 5px;
}

.site-nav {
  margin-left: auto;
}

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

.nav-links a {
  display: inline-flex;
  padding: 0.35rem 0;
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-gold-light);
}

.mobile-only {
  display: none;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 0.7rem;
  padding: 0.35rem;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.24rem 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:focus-visible {
  outline: 2px solid rgba(228, 199, 143, 0.88);
  outline-offset: 2px;
}

.btn-primary {
  color: #23150f;
  background: linear-gradient(120deg, #b98c52 0%, #d4b178 52%, #c59b62 100%);
  box-shadow: 0 10px 28px rgba(188, 137, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(188, 137, 74, 0.45);
}

.btn-secondary {
  color: var(--text-primary);
  border-color: var(--border-soft);
  background: rgba(36, 21, 18, 0.72);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  color: var(--accent-gold-light);
  border-color: rgba(223, 191, 139, 0.5);
  box-shadow: var(--shadow-card);
}

.btn-auth-emphasis {
  box-shadow: 0 16px 38px rgba(188, 137, 74, 0.4);
}

.btn-nav {
  margin-left: 0.4rem;
}

.hero {
  padding-top: 5.6rem;
  padding-bottom: 4.2rem;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 2%;
  top: -120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(199, 160, 100, 0.17), rgba(199, 160, 100, 0.02) 58%, transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  align-items: start;
  gap: 2rem;
}

.eyebrow,
.section-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.33rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5cfab;
  border: 1px solid rgba(199, 160, 100, 0.3);
  background: rgba(43, 27, 22, 0.7);
}

.hero-copy h1 {
  margin: 1rem 0 1.2rem;
  max-width: 11.5ch;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero-copy > p {
  margin: 0;
  max-width: 61ch;
  font-size: 1.03rem;
  color: var(--text-secondary);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-access {
  position: relative;
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  overflow: hidden;
  border-radius: 1.05rem;
  border: 1px solid rgba(223, 188, 132, 0.24);
  background:
    linear-gradient(135deg, rgba(118, 34, 51, 0.26), rgba(26, 15, 14, 0.92) 48%),
    rgba(25, 15, 13, 0.9);
  box-shadow: var(--shadow-card);
}

.hero-access::before {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -72px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 160, 100, 0.26), transparent 68%);
  pointer-events: none;
}

.hero-access-copy,
.hero-access-actions {
  position: relative;
  z-index: 1;
}

.hero-access-label {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ebd3af;
}

.hero-access-title {
  margin: 0;
  max-width: 52ch;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-access-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.hero-metrics {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(199, 160, 100, 0.19);
  background: rgba(33, 20, 17, 0.6);
  box-shadow: var(--shadow-card);
}

.metric strong {
  display: block;
  font-size: 1.08rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.metric span {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.hero-panel {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(199, 160, 100, 0.26);
  background:
    linear-gradient(145deg, rgba(114, 31, 49, 0.3), rgba(26, 15, 14, 0.94) 42%),
    rgba(22, 13, 12, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  padding: 1.45rem;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(199, 160, 100, 0.24), transparent 68%);
  pointer-events: none;
}

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

.panel-top p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.panel-top span {
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ecd9bb;
  border: 1px solid rgba(199, 160, 100, 0.34);
  background: rgba(34, 21, 18, 0.84);
}

.panel-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(199, 160, 100, 0.18);
  background: rgba(25, 15, 13, 0.58);
}

.panel-item + .panel-item {
  margin-top: 0.7rem;
}

.panel-dot {
  width: 0.62rem;
  height: 0.62rem;
  margin-top: 0.38rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e0c287, #b88749);
  box-shadow: 0 0 14px rgba(199, 160, 100, 0.85);
}

.panel-item h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.panel-item p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.panel-footer {
  margin-top: 0.9rem;
  border-top: 1px solid rgba(199, 160, 100, 0.2);
  padding-top: 0.9rem;
}

.panel-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.panel-footer strong {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
}

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

.trust-badge {
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-size: 0.82rem;
  text-align: center;
  color: #e4d5be;
  border: 1px solid rgba(199, 160, 100, 0.2);
  background: rgba(32, 20, 16, 0.72);
}

.logo-strip {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(199, 160, 100, 0.18);
  background: rgba(24, 15, 13, 0.74);
  color: #dbc8ab;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0.95rem 0 0.95rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.section-heading p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

.services-grid {
  margin-top: 2.35rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 160, 100, 0.2);
  padding: 1.25rem;
  background:
    linear-gradient(155deg, rgba(117, 34, 51, 0.18), rgba(22, 13, 12, 0.9) 36%),
    rgba(24, 15, 14, 0.84);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 188, 132, 0.52);
  box-shadow: 0 18px 35px rgba(10, 4, 3, 0.48);
}

.service-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(138, 38, 59, 0.48), rgba(184, 137, 76, 0.28));
  color: #ebd6b2;
  margin-bottom: 0.9rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.service-card p {
  margin: 0.52rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.portfolio-grid {
  margin-top: 2.35rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 160, 100, 0.2);
  background: rgba(24, 15, 13, 0.88);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 188, 132, 0.55);
}

.project-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0.85rem;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 14px 30px rgba(8, 3, 2, 0.5);
  transition: transform 0.3s ease;
}

.mug-visual {
  padding: 0.85rem;
  background: linear-gradient(145deg, #2e1615, #5c2628 48%, #261111);
}

.mug-visual::after {
  background: linear-gradient(to top, rgba(16, 9, 8, 0.32), transparent 62%);
}

.mug-visual .project-image {
  object-fit: contain;
  background: rgba(255, 244, 228, 0.08);
  padding: 0.35rem;
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 9, 8, 0.72), transparent 56%);
  pointer-events: none;
}

.tone-one {
  background: linear-gradient(132deg, #492122, #7a2d34 44%, #2d1818);
}

.tone-two {
  background: linear-gradient(132deg, #3a241c, #6f4532 48%, #2a1712);
}

.tone-three {
  background: linear-gradient(132deg, #3a1f28, #6b2d42 46%, #2a151a);
}

.tone-four {
  background: linear-gradient(132deg, #41231e, #734333 47%, #2d1814);
}

.tone-five {
  background: linear-gradient(132deg, #3f2025, #6d2d39 46%, #281317);
}

.tone-six {
  background: linear-gradient(132deg, #40261f, #75462f 46%, #2b1813);
}

.screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(242, 217, 178, 0.2);
  background: linear-gradient(165deg, rgba(248, 226, 192, 0.24), rgba(157, 93, 66, 0.08));
  box-shadow: 0 14px 30px rgba(8, 3, 2, 0.5);
  transition: transform 0.3s ease;
}

.screen::before {
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 0.5rem;
  border: 1px solid rgba(247, 227, 196, 0.2);
  background: linear-gradient(to bottom, rgba(255, 245, 226, 0.26), rgba(255, 255, 255, 0.05));
}

.project-card:hover .screen {
  transform: scale(1.04);
}

.project-card:hover .project-image {
  transform: scale(1.04);
}

.project-meta {
  padding: 1.05rem 1rem 1.1rem;
}

.project-meta h3 {
  margin: 0;
  font-size: 0.98rem;
}

.project-meta p {
  margin: 0.38rem 0 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.process-grid {
  margin-top: 2.3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 160, 100, 0.2);
  background: rgba(23, 14, 12, 0.85);
  padding: 1.3rem;
  box-shadow: var(--shadow-card);
}

.step-number {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(204, 170, 112, 0.78), rgba(170, 122, 67, 0.68));
  color: #2a1a11;
  box-shadow: 0 0 0 1px rgba(233, 205, 158, 0.3), 0 0 20px rgba(199, 160, 100, 0.36);
}

.process-step h3 {
  margin: 0.95rem 0 0;
  font-size: 1rem;
}

.process-step p {
  margin: 0.52rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-grid {
  margin-top: 2.35rem;
  display: grid;
  gap: 1rem;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 160, 100, 0.2);
  background: rgba(23, 14, 12, 0.85);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.price-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.plan-badge {
  margin: 0 0 0.65rem;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.64rem;
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2a190f;
  background: linear-gradient(130deg, #ddbf8a, #be9458);
  border: 1px solid rgba(235, 211, 170, 0.45);
}

.price {
  margin: 0.75rem 0 0.6rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.price span {
  margin-left: 0.32rem;
  font-size: 0.85rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  font-weight: 500;
  color: var(--text-muted);
}

.price-copy {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.price-card ul {
  list-style: none;
  margin: 1rem 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.price-card li {
  position: relative;
  padding-left: 1.22rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2c58d, #b7894c);
  box-shadow: 0 0 12px rgba(200, 162, 104, 0.75);
}

.price-card .btn {
  margin-top: auto;
}

.price-card.popular {
  border-color: rgba(230, 200, 147, 0.6);
  background:
    linear-gradient(165deg, rgba(128, 35, 53, 0.28), rgba(24, 14, 12, 0.9) 36%),
    rgba(22, 13, 12, 0.94);
  box-shadow: 0 22px 42px rgba(10, 4, 3, 0.54), 0 0 0 1px rgba(230, 200, 147, 0.28) inset;
  transform: translateY(-8px);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.45rem;
  border: 1px solid rgba(226, 195, 140, 0.33);
  background:
    linear-gradient(126deg, rgba(111, 29, 44, 0.52), rgba(33, 19, 16, 0.92) 45%),
    rgba(25, 15, 13, 0.92);
  box-shadow: var(--shadow-soft);
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
}

.cta-panel::before {
  left: -120px;
  top: -150px;
  background: rgba(191, 146, 84, 0.33);
}

.cta-panel::after {
  right: -120px;
  bottom: -170px;
  background: rgba(136, 42, 61, 0.34);
}

.cta-panel h2 {
  margin: 0.9rem auto 0.9rem;
  max-width: 16ch;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.08rem, 4vw, 3.45rem);
  line-height: 1.03;
  text-wrap: balance;
}

.cta-panel p {
  margin: 0 auto;
  max-width: 60ch;
  color: #d8c8b0;
}

.btn-large {
  margin-top: 1.5rem;
  padding-inline: 1.6rem;
  min-height: 2.9rem;
}

.site-footer {
  border-top: 1px solid rgba(199, 160, 100, 0.22);
  background: rgba(15, 8, 8, 0.78);
  padding: 3.7rem 0 2.2rem;
}

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

.footer-brand p {
  margin: 0.82rem 0 0;
  max-width: 44ch;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.site-footer h3 {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
}

.footer-note {
  margin: 0.8rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-stack {
  margin-top: 0.1rem;
  display: grid;
  gap: 0.32rem;
}

.footer-link {
  margin-top: 0.72rem;
  display: inline-flex;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.24s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--accent-gold-light);
}

.social-list {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.social-icon {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(210, 175, 119, 0.35);
  color: #decaab;
  background: rgba(33, 20, 17, 0.8);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.social-icon svg {
  width: 1.08rem;
  height: 1.08rem;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  color: #efdbb9;
  border-color: rgba(233, 203, 155, 0.68);
  box-shadow: 0 0 0 3px rgba(199, 160, 100, 0.15);
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(199, 160, 100, 0.18);
  padding-top: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.auth-page .site-header {
  position: relative;
  background: rgba(14, 8, 8, 0.82);
  border-bottom-color: rgba(199, 160, 100, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 42px rgba(7, 3, 2, 0.4);
}

.auth-page .nav-shell {
  min-height: 5.1rem;
}

.auth-header-actions {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.auth-main {
  padding: 2rem 0 4rem;
}

.auth-shell {
  padding: 0;
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  align-items: stretch;
}

.auth-showcase,
.auth-card {
  border-radius: 1.45rem;
  border: 1px solid rgba(223, 188, 132, 0.22);
  box-shadow: var(--shadow-soft);
}

.auth-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.7rem, 4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(107, 28, 45, 0.42), rgba(22, 13, 12, 0.92) 44%),
    rgba(23, 14, 12, 0.94);
}

.auth-showcase::before,
.auth-showcase::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.auth-showcase::before {
  width: 250px;
  height: 250px;
  left: -130px;
  top: -110px;
  background: rgba(196, 147, 82, 0.22);
}

.auth-showcase::after {
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -100px;
  background: rgba(131, 34, 56, 0.28);
}

.auth-showcase > * {
  position: relative;
  z-index: 1;
}

.auth-showcase h1 {
  margin: 1rem 0 1rem;
  max-width: 11ch;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.auth-showcase-copy {
  margin: 0;
  max-width: 58ch;
  color: var(--text-secondary);
  font-size: 1rem;
}

.auth-benefits {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.auth-benefit {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(199, 160, 100, 0.16);
  background: rgba(28, 17, 15, 0.54);
}

.auth-benefit-dot {
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.36rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e0c287, #b88749);
  box-shadow: 0 0 14px rgba(199, 160, 100, 0.58);
}

.auth-benefit strong {
  display: block;
  font-size: 0.95rem;
}

.auth-benefit p {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.5;
}

.auth-stats {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-stat {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(199, 160, 100, 0.18);
  background: rgba(26, 16, 14, 0.72);
}

.auth-stat strong {
  display: block;
  font-size: 1.18rem;
  color: var(--text-primary);
}

.auth-stat span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.auth-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background:
    linear-gradient(160deg, rgba(37, 22, 19, 0.92), rgba(18, 11, 10, 0.98)),
    rgba(20, 12, 11, 0.96);
}

.auth-card-kicker {
  margin: 0;
  color: #e3cbab;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-card h2 {
  margin: 0.7rem 0 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.auth-card-copy {
  margin: 0.6rem 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.auth-form {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.48rem;
}

.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.form-field label,
.checkbox-field {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-field input {
  width: 100%;
  border: 1px solid rgba(199, 160, 100, 0.2);
  border-radius: 0.95rem;
  padding: 0.88rem 0.96rem;
  color: var(--text-primary);
  background: rgba(34, 20, 17, 0.82);
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-field input::placeholder {
  color: rgba(214, 196, 171, 0.48);
}

.form-field input:focus {
  outline: none;
  border-color: rgba(226, 195, 140, 0.58);
  background: rgba(39, 24, 20, 0.92);
  box-shadow: 0 0 0 3px rgba(199, 160, 100, 0.14);
}

.auth-inline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
}

.checkbox-field input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: #cea66a;
}

.text-link {
  color: var(--accent-gold-light);
  font-size: 0.88rem;
  transition: color 0.24s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #f0ddb8;
}

.btn-block {
  width: 100%;
}

.auth-switch,
.auth-disclaimer {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.auth-footer {
  padding: 0 0 2rem;
  border-top: 0;
  background: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s cubic-bezier(0.21, 0.67, 0.28, 1), transform 0.72s cubic-bezier(0.21, 0.67, 0.28, 1);
  will-change: transform, opacity;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.22s;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 700px;
  }

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

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

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

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

  .pricing-grid .price-card:last-child {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid .footer-column:last-child {
    grid-column: span 3;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.5rem));
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }

  .logo {
    font-size: 1.75rem;
  }

  .logo-icon {
    width: 2rem;
    height: 2rem;
  }

  .desktop-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.62rem) 0.75rem auto;
    border-radius: 1rem;
    border: 1px solid rgba(199, 160, 100, 0.25);
    background: rgba(24, 13, 12, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.9rem;
  }

  .nav-links a {
    padding: 0.62rem 0.55rem;
    border-radius: 0.5rem;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(182, 136, 76, 0.18);
  }

  .mobile-only {
    display: list-item;
    margin-top: 0.4rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-access {
    grid-template-columns: 1fr;
  }

  .hero-access-actions {
    justify-content: flex-start;
  }

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

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid .price-card:last-child,
  .footer-grid .footer-column:last-child {
    grid-column: auto;
  }

  .price-card.popular {
    transform: none;
  }

  .auth-header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .auth-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 5.1rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-access-actions .btn {
    width: 100%;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .auth-main {
    padding: 1.2rem 0 3rem;
  }

  .auth-showcase h1 {
    max-width: 100%;
  }

  .field-row,
  .auth-inline-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-header-actions .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
