:root {
  --bg: #0b1220;
  --paper: #0f172a;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #fbbf24; /* warm gold */
  --accent2: #22c55e; /* green */
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 600px at 70% 10%, rgba(251, 191, 36, 0.16), transparent 55%),
    radial-gradient(900px 500px at 20% 30%, rgba(34, 197, 94, 0.12), transparent 55%),
    linear-gradient(180deg, #070b12 0%, #0b1220 35%, #06080d 100%);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 999;
}
.skip:focus {
  left: 12px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header--scrolled {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}
.header--simple {
  position: sticky;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}
.brand__mark {
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.9);
}
.brand__text {
  display: grid;
  line-height: 1.15;
}
.brand__name {
  font-family: "IBM Plex Serif", ui-serif, "Iowan Old Style", Palatino, "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand__sub {
  font-size: 12px;
  color: var(--muted);
}
.brand--small .brand__mark {
  width: 34px;
  height: 34px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
}
.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
}
.hamburger {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
}
.hamburger::before {
  top: -6px;
}
.hamburger::after {
  top: 6px;
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__link {
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  transition: background 160ms ease, color 160ms ease;
}
.nav__link:hover,
.nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
}
.nav__link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.98);
}
.nav__cta {
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.1);
  color: rgba(255, 255, 255, 0.95);
}
.nav__cta:hover,
.nav__cta:focus-visible {
  background: rgba(251, 191, 36, 0.16);
}

/* Lang toggle */
.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.lang__btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 10px;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: 0.4px;
}
.lang__btn[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
}

/* Hero */
.hero {
  padding: 40px 0 18px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}
.kicker {
  margin: 0 0 8px;
  color: rgba(251, 191, 36, 0.9);
  font-weight: 650;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}
.hero__title {
  margin: 0 0 12px;
  font-family: "IBM Plex Serif", ui-serif, "Iowan Old Style", Palatino, "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-weight: 800;
  line-height: 1.06;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: 0.3px;
}
.hero__lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}
.hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
.fine {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}
.fine--muted {
  color: rgba(255, 255, 255, 0.55);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
}
.btn--primary {
  border-color: rgba(251, 191, 36, 0.4);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.22), rgba(251, 191, 36, 0.12));
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
}
.btn__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.btn--wide {
  width: 100%;
}

.media-stack {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.media-stack__img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  filter: saturate(1.05) contrast(1.05);
}
.media-stack__card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(11, 18, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.media-stack__title {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.media-stack__text {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}
.media-stack__icons {
  display: flex;
  gap: 10px;
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 46px 0;
}
.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}
.section__title {
  margin: 0;
  font-family: "IBM Plex Serif", ui-serif, "Iowan Old Style", Palatino, "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-size: 30px;
  letter-spacing: 0.2px;
}
.section__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.card__icon {
  opacity: 0.9;
  margin-bottom: 10px;
}
.card__title {
  margin: 0 0 6px;
  font-size: 16px;
}
.card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.price {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.price__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.price__name {
  margin: 0;
  font-size: 15px;
}
.price__val {
  margin: 0;
  color: rgba(251, 191, 36, 0.9);
  font-weight: 800;
}
.price__desc {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}
.note p {
  margin: 0;
}

/* Page variants */
.hero--page {
  padding-top: 34px;
}

/* Photo strip */
.photo-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.photo-strip__img {
  width: 100%;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.steps__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}
.steps__num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 850;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
}
.steps__title {
  margin: 0 0 4px;
  font-size: 16px;
}
.steps__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

/* CTA */
.cta {
  margin-top: 18px;
}
.cta__card {
  padding: 16px 16px;
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}
.cta__title {
  margin: 0 0 6px;
  font-family: "IBM Plex Serif", ui-serif, "Iowan Old Style", Palatino, "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-size: 22px;
  letter-spacing: 0.2px;
}
.cta__text {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.75);
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Team profiles */
.profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.profile {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.profile__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.profile__body {
  padding: 14px 14px;
}
.profile__name {
  margin: 0 0 4px;
  font-size: 18px;
}
.profile__role {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}
.profile__text {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
}
.profile__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.75);
}
.profile__list li {
  margin: 4px 0;
}

/* Works */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 18px;
}
.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.chip:hover,
.chip:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.92);
}
.chip[aria-pressed="true"] {
  background: rgba(251, 191, 36, 0.14);
  border-color: rgba(251, 191, 36, 0.35);
  color: rgba(255, 255, 255, 0.98);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.work {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  min-height: 100%;
}
.work--hidden {
  display: none;
}
.work__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.work__body {
  padding: 14px 14px;
}
.work__kicker {
  margin: 0 0 8px;
  color: rgba(251, 191, 36, 0.9);
  font-weight: 750;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}
.work__title {
  margin: 0 0 6px;
  font-size: 16px;
}
.work__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery__item {
  margin: 0;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.gallery__item figcaption {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 10px;
}
.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
}
.faq__q {
  cursor: pointer;
  font-weight: 700;
}
.faq__a {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.contact__card {
  margin-top: 12px;
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
}
.contact__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact__row:last-child {
  border-bottom: 0;
}
.contact__label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.contact__val {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}
.contact__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.map {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  padding: 22px 0 26px;
}
.footer__inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}
.footer__brand {
  margin: 0;
  font-weight: 800;
}
.footer__muted {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.link:hover,
.link:focus-visible {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(251, 191, 36, 0.6);
}

/* Page prose */
.page {
  padding: 24px 0 44px;
}
.prose {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius2);
  padding: 18px 18px;
}
.prose h1 {
  font-family: "IBM Plex Serif", ui-serif, "Iowan Old Style", Palatino, "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  margin: 0 0 6px;
}
.prose h2 {
  margin: 16px 0 8px;
  font-size: 18px;
}
.prose p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.8);
}
.prose ul {
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.78);
}
.muted {
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .profiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .map {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav__panel {
    display: none;
    position: absolute;
    right: 16px;
    top: 62px;
    width: min(320px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(11, 18, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
  }
  .nav__panel--open {
    display: flex;
  }
  .nav__link {
    padding: 12px 12px;
  }
  .photo-strip {
    grid-template-columns: 1fr;
  }
  .profiles {
    grid-template-columns: 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    flex-direction: column;
    align-items: start;
  }
  .footer__links {
    justify-content: flex-start;
  }
}
