:root {
  --bg: #0b1017;
  --surface: #121a24;
  --muted: #94a3b8;
  --text: #f8fafc;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.14);
  --radius: 14px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(15px, 2.5vw, 17px);
  padding-bottom: env(safe-area-inset-bottom);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

header.top {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(11, 16, 23, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

header.top .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  color: inherit;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.header-contact a.phone {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  white-space: nowrap;
}

.header-contact a.phone:hover {
  color: var(--accent);
  text-decoration: none;
}

.addr-mini {
  color: var(--muted);
  max-width: min(280px, 36vw);
  line-height: 1.35;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: grid;
  align-items: end;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 16, 23, 0.35) 0%, rgba(11, 16, 23, 0.94) 82%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fde68a;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero-sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  max-width: 40ch;
}

.hero-price {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--text);
}

.hero-price strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fef9c3;
}

.hero-price-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.badge {
  background: var(--accent-soft);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: #fde68a;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(145deg, #d4af37, #a67c00);
  color: #1a1408;
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 16px 48px rgba(201, 162, 39, 0.45);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 520px;
}

.stats div {
  text-align: left;
}

.stats dt {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}

.stats dd {
  margin: 0.2rem 0 0;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 52ch;
}

.section-lead.tight {
  margin-bottom: 0;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.card-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery {
  background: linear-gradient(180deg, var(--bg) 0%, #0e1520 50%, var(--bg) 100%);
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(110px, 14vw);
}

.g-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

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

.g-wide {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.gallery-grid > .g-item:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
}

.gallery-grid > .g-item:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

.gallery-grid > .g-item:nth-child(4) {
  grid-column: 5 / 9;
  grid-row: 3 / 4;
}

.gallery-grid > .g-item:nth-child(5) {
  grid-column: 9 / 13;
  grid-row: 3 / 4;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.split-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.split-visual img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.points {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.points li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.contact-band {
  background: linear-gradient(165deg, var(--surface) 0%, #0f172a 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-highlight {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(201, 162, 39, 0.28);
}

.ch-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.ch-phone {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.ch-phone:hover {
  color: #fef9c3;
  text-decoration: none;
}

.ch-hours {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.ch-addr {
  margin: 0;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.ch-map {
  display: inline-block;
  margin-top: 0.65rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.contact-card .big {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-card .big a {
  color: inherit;
}

.contact-card .big a:hover {
  color: var(--accent);
}

.contact-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  padding: 2rem 0 calc(2.5rem + 56px);
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

footer strong {
  color: var(--text);
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0.65rem max(0.75rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom))
    max(0.75rem, env(safe-area-inset-left));
  background: rgba(11, 16, 23, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.65rem;
  justify-content: stretch;
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  text-decoration: none;
}

.mb-phone {
  background: linear-gradient(145deg, #d4af37, #a67c00);
  color: #1a1408;
}

.mb-addr {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(130px, 26vw);
  }

  .g-wide {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .gallery-grid > .g-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
  }

  .gallery-grid > .g-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .gallery-grid > .g-item:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
  }

  .gallery-grid > .g-item:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
  }
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    max-width: none;
  }

  .stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.65rem;
  }

  .stats div:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .addr-mini {
    max-width: none;
    width: 100%;
    text-align: right;
  }

  .mobile-bar {
    display: flex;
  }
}

@media (max-width: 520px) {
  .header-contact .addr-mini {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(180px, 42vw);
  }

  .g-wide,
  .gallery-grid > .g-item:nth-child(2),
  .gallery-grid > .g-item:nth-child(3),
  .gallery-grid > .g-item:nth-child(4),
  .gallery-grid > .g-item:nth-child(5) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}
