:root {
  --yellow: #fff200;
  --yellow-soft: #fff96a;
  --graphite: #5f5a58;
  --graphite-2: #33312f;
  --ink: #111111;
  --steel: #d7e0dd;
  --steel-dark: #b9c6c3;
  --paper: #f6f5ef;
  --white: #ffffff;
  --muted: #6c6a66;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
  --display-font: "Segoe UI Variable Display", "Avenir Next", "Segoe UI", sans-serif;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(255, 242, 0, 0.12), transparent 32rem),
    linear-gradient(180deg, #151514 0%, #242321 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

b,
strong {
  font-weight: 500;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--yellow);
  transition: top 0.2s ease;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(1220px, calc(100% - 28px));
  margin: 0.75rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.55rem;
  background: rgba(24, 24, 23, 0.86);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.topbar.is-scrolled {
  background: rgba(17, 17, 17, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.72rem;
  padding-right: 0.5rem;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--yellow);
  background: var(--graphite);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 0.2rem;
  max-width: 245px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  line-height: 1.25;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  padding: 0.28rem;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a {
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-1px);
}

.nav-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.84rem 1.18rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-action,
.btn-primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(255, 242, 0, 0.28);
}

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

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--yellow);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(720px, calc(100vh - 30px));
  padding: clamp(3.2rem, 5vw, 5rem) 0 clamp(3rem, 5vw, 4.4rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(47, 45, 43, 0.96)),
    var(--graphite);
}

.intro::before {
  content: "";
  position: absolute;
  inset: auto -10% -28% 48%;
  z-index: -1;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 242, 0, 0.5), transparent 65%);
  filter: blur(12px);
}

.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.23;
  background-image:
    linear-gradient(115deg, transparent 0 47%, rgba(255, 242, 0, 0.75) 47% 48%, transparent 48% 100%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 220px 220px, 44px 44px, 44px 44px;
}

.intro-texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  background:
    radial-gradient(circle at 22% 25%, rgba(255, 242, 0, 0.16), transparent 18rem),
    radial-gradient(circle at 82% 30%, rgba(215, 224, 221, 0.14), transparent 18rem);
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 4px;
  border-radius: 99px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--yellow);
}

.intro h1,
.section-heading h2,
.service-copy h2,
.about-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.intro h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5vw, 4.75rem);
}

.lead {
  max-width: 670px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.58;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.status-strip span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.72rem 0.92rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 500;
}

.intro-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.brand-orbit {
  position: relative;
  width: min(82%, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 242, 0, 0.34);
  border-radius: 50%;
  padding: 1.15rem;
  background:
    linear-gradient(145deg, rgba(255, 242, 0, 0.2), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.brand-orbit::before,
.brand-orbit::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px dashed rgba(255, 242, 0, 0.34);
  border-radius: inherit;
  animation: spin 18s linear infinite;
}

.brand-orbit::after {
  inset: -36px;
  opacity: 0.45;
  animation-direction: reverse;
  animation-duration: 24s;
}

.brand-orbit img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.section-pad {
  padding: clamp(4rem, 7vw, 6.8rem) 0;
}

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

.section-heading h2,
.service-copy h2,
.about-panel h2,
.contact-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.3rem);
}

.about-panel h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
}

.section-heading p,
.service-copy p,
.about-panel p,
.contact-copy p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0 1.5rem;
}

.filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: transparent;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-1px);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.05;
  padding: 0.65rem;
  background:
    linear-gradient(140deg, rgba(215, 224, 221, 0.18), transparent),
    #2b2a28;
}

.product-media img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top center;
}

.product-info {
  padding: 1rem 1rem 1.15rem;
}

.product-info span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  color: var(--yellow);
  background: rgba(255, 242, 0, 0.28);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-info h3 {
  margin: 0.75rem 0 0;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.product-info p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  line-height: 1.5;
}

.service-section {
  background:
    linear-gradient(135deg, rgba(255, 242, 0, 0.13), transparent 34rem),
    #1c1c1a;
}

.service-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.35rem;
  color: var(--white);
  font-weight: 500;
}

.text-link::after {
  content: "→";
  margin-left: 0.55rem;
  color: var(--yellow);
  text-shadow: 0 0 0 var(--ink);
}

.service-steps {
  display: grid;
  gap: 1rem;
  counter-reset: steps;
}

.service-steps article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem 1.25rem 5rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.service-steps article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--yellow);
}

.service-steps span {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 500;
}

.service-steps h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.service-steps p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.58;
}

.about-section {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 242, 0, 0.18), transparent 22rem),
    var(--ink);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.25rem;
}

.about-panel,
.principles article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.about-panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.about-panel img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 4px solid var(--yellow);
  object-fit: cover;
  object-position: center;
}

.about-panel .since {
  display: inline-flex;
  margin: 1.25rem 0 0.8rem;
  border-radius: 999px;
  padding: 0.44rem 0.7rem;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 500;
}

.about-panel p:not(.since) {
  color: rgba(255, 255, 255, 0.74);
}

.about-story {
  display: grid;
  gap: 0.82rem;
  margin-top: 1.15rem;
}

.about-story p {
  margin: 0;
}

.principles {
  display: grid;
  gap: 1rem;
}

.principles article {
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.principles span {
  color: var(--yellow);
  font-family: var(--display-font);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principles p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.68;
}

.proof-section {
  padding: 1rem 0;
  background: var(--yellow);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.16);
}

.proof-grid article {
  min-height: 132px;
  padding: 1.15rem;
  color: var(--ink);
  background: var(--yellow);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.proof-grid span {
  margin-top: 0.5rem;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.45;
  font-size: 0.9rem;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 242, 0, 0.09), transparent 26rem),
    linear-gradient(180deg, #242321, #181817);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.whatsapp-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.form-heading {
  margin-bottom: 0.45rem;
}

.form-heading span {
  display: block;
  font-family: var(--display-font);
  font-size: 1.3rem;
  font-weight: 400;
}

.form-heading p,
.whatsapp-form .form-note {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.5;
}

.whatsapp-form label {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 500;
}

.whatsapp-form input,
.whatsapp-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.88rem 0.95rem;
  color: var(--white);
  background: rgba(17, 17, 17, 0.62);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-form textarea {
  min-height: 116px;
  resize: vertical;
}

.whatsapp-form input::placeholder,
.whatsapp-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.whatsapp-form input:focus,
.whatsapp-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 242, 0, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 0.8rem;
  border: 0;
  cursor: pointer;
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
}

.contact-card,
.hours-card,
.work-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--white);
  background: #0f766e;
  font-size: 1.28rem;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 8px 20px rgba(0, 0, 0, 0.22);
}

.contact-card:nth-child(2) .contact-icon {
  background: #1d4ed8;
}

.contact-card:nth-child(3) .contact-icon {
  background: linear-gradient(135deg, #833ab4, #e1306c 58%, #f77737);
}

.contact-card:nth-child(4) .contact-icon {
  background: #be123c;
}

.instagram-glyph {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.instagram-glyph::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.instagram-glyph::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.location-glyph {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: translateY(-2px) rotate(-45deg);
}

.location-glyph::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-card a,
.work-card a {
  display: block;
  width: fit-content;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-card a:hover,
.work-card a:hover {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--yellow);
}

.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.hours-card {
  padding: 0;
}

.hours-card summary {
  cursor: pointer;
  padding: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hours-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  list-style: none;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.7rem;
}

.hours-card span {
  color: rgba(255, 255, 255, 0.64);
}

.hours-card strong {
  text-align: right;
}

.work-card {
  padding: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 242, 0, 0.92), rgba(255, 250, 114, 0.9)),
    var(--yellow);
  color: var(--ink);
}

.work-card span {
  display: block;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.work-card a {
  color: var(--graphite-2);
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 242, 0, 0.24);
  padding: 3rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 242, 0, 0.1), transparent 22rem),
    linear-gradient(145deg, #171716, #0d0d0d);
}

.footer-grid {
  display: grid;
  gap: 2.35rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(330px, 1.2fr) minmax(180px, 0.65fr) minmax(260px, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.footer-brand {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 1.15rem;
  color: var(--white);
  font-weight: 500;
}

.footer-brand img {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--yellow);
  box-shadow: 0 12px 34px rgba(255, 242, 0, 0.15);
}

.footer-brand span {
  display: grid;
  gap: 0.35rem;
}

.footer-brand strong {
  font-family: var(--display-font);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.footer-brand small {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
}

.footer-label {
  margin-bottom: 0.18rem;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a {
  width: fit-content;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-contact p,
.footer-bottom p {
  margin: 0;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  border-color: var(--yellow);
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

.footer-bottom a span {
  color: var(--yellow);
  font-size: 1rem;
}

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

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .nav-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav.is-open {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 84px;
    display: grid;
    gap: 0.45rem;
    border-radius: 26px;
    padding: 0.7rem;
    background: rgba(17, 17, 17, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    color: var(--white);
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.08);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .intro-grid,
  .service-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: auto;
  }

  .intro-visual {
    min-height: 460px;
  }

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

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .topbar {
    width: calc(100% - 18px);
    margin-top: 0.5rem;
  }

  .brand small {
    display: none;
  }

  .intro {
    padding-top: 2.5rem;
  }

  .intro-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .status-strip {
    display: grid;
  }

  .intro-visual {
    min-height: 540px;
  }

  .brand-orbit {
    width: min(82vw, 300px);
  }

  .product-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .service-steps article {
    padding-left: 1.1rem;
    padding-top: 4.65rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .hours-card li {
    display: grid;
  }

  .hours-card strong {
    text-align: left;
  }

  .footer {
    padding-top: 2.4rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer-brand img {
    width: 80px;
    height: 80px;
  }

  .footer-links {
    grid-column: auto;
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-height: 780px) and (min-width: 900px) {
  .intro {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .intro h1 {
    font-size: clamp(2.35rem, 4.2vw, 4rem);
  }

  .lead {
    margin-top: 0.9rem;
  }

  .intro-actions {
    margin-top: 1.25rem;
  }

  .status-strip {
    margin-top: 1.1rem;
  }

  .intro-visual {
    min-height: 440px;
  }

  .brand-orbit {
    width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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