:root {
  --bg: #0f1117;
  --card: rgba(236, 164, 56, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --primary: rgb(231, 153, 37);
  --accent: #e4bd90;
  --text: #e9ecf2;
  --muted: #aeb8ca;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --theme-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M21 12.79A9 9 0 0 1 11.21 3 7 7 0 1 0 21 12.79Z'/%3E%3C/svg%3E");
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f7f8fb;
  --card: rgba(0, 0, 0, 0.04);
  --card-strong: rgba(0, 0, 0, 0.08);
  --primary: #f6b23a;
  --accent: #fbe4b5;
  --text: #0f1624;
  --muted: #4b5565;
  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --theme-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M6.76 4.84 5 3.08 3.59 4.5l1.76 1.76 1.41-1.42Zm10.48 0 1.42 1.42 1.76-1.76L18.24 3.08 17.24 4.1ZM12 5.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Zm0-5.5h-2v3h2V0Zm0 21h-2v3h2v-3ZM3.5 11h-3v2h3v-2Zm20 0h-3v2h3v-2Zm-16.66 8.58-1.76 1.76 1.41 1.42 1.76-1.76-1.41-1.42Zm12.32 0-1.41 1.42 1.76 1.76 1.41-1.42-1.76-1.76Z'/%3E%3C/svg%3E");
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: radial-gradient(120% 120% at 20% 20%, rgba(182, 240, 156, 0.12), transparent 40%),
    radial-gradient(120% 120% at 80% 0%, rgba(240, 220, 197, 0.15), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(11, 18, 33, 0.9), rgba(11, 18, 33, 0.75));
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(247, 248, 251, 0.9), rgba(247, 248, 251, 0.78));
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0f1117;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
}

.brand-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-size: 12px;
}

.brand-name {
  margin: 2px 0 0 0;
  font-weight: 700;
  font-size: 18px;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.theme-toggle:active {
  transform: translateY(0);
}

.theme-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: var(--theme-icon);
  -webkit-mask: var(--theme-icon);
}

.pill, .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
}

.pill {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0f1117;
  box-shadow: var(--shadow);
}

[data-theme="light"] .pill {
  background: linear-gradient(135deg, #f6b23a, #ffe1a3);
  color: #0f1624;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .ghost {
  background: rgba(0, 0, 0, 0.06);
  color: #0f1624;
}

.pill:hover, .ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 12px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15, 17, 23, 0.7);
  border: 1px solid var(--border);
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.photo-specs {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.photo-specs span {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15, 17, 23, 0.7);
  border: 1px solid var(--border);
  font-weight: 600;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  height: 110px;
  position: relative;
}

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

.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  margin: 10px 0 14px;
}

.highlight {
  color: var(--primary);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.lede {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.contact-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 16px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

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

.strong {
  margin: 2px 0;
  font-weight: 700;
}

.hero-card {
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 100% at 80% 0%, rgba(249, 115, 22, 0.18), transparent 45%);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.metric {
  margin: 6px 0 0;
  font-weight: 700;
  font-size: 20px;
}

.hero-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-features span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--card-strong);
  border: 1px solid var(--border);
  font-weight: 600;
}

.hero-note {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.section {
  padding: 60px 0;
}

.section-head h2 {
  margin: 6px 0 8px;
  font-size: 30px;
}

.card-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.card-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 18px;
}

.gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  height: 220px;
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: rgba(15, 17, 23, 0.72);
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 600;
  color: #f7f8fb;
}

[data-theme="light"] .gallery-caption {
  background: rgba(0, 0, 0, 0.7);
  color: #f7f8fb;
}

.section-gap {
  margin-top: 88px;
}

.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tag {
  padding: 8px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
}

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.panel-title {
  margin: 0 0 12px;
  font-weight: 700;
}

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

.specs li {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--card-strong);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.specs span {
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.checklist div {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  font-weight: 600;
}

.cta-block {
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.cta-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 20px;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 36px;
  background: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .site-footer {
  background: rgba(0, 0, 0, 0.04);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

@media (max-width: 640px) {
  .header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-card, .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-links, .footer-links {
    text-align: left;
    width: 100%;
  }
}
