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

:root {
  --bg: #0f1419;
  --bg-card: #1a222d;
  --text: #f4f6f8;
  --muted: #9aa8b8;
  --accent: #d4a853;
  --accent-hover: #e8bc5f;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --font: "Manrope", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4vw;
  background: linear-gradient(to bottom, rgba(15, 20, 25, 0.92), transparent);
}

.logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

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

.header-phone {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.header-phone:hover {
  background: rgba(212, 168, 83, 0.28);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 4vw 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600585154340-be6162a9a0d2?w=1920&q=80") center / cover no-repeat;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 20, 25, 0.92) 0%, rgba(15, 20, 25, 0.55) 55%, rgba(15, 20, 25, 0.35) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-points li {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-points strong {
  color: var(--accent);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

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

.btn-primary {
  background: var(--accent);
  color: #1a1408;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Gallery */
.gallery {
  padding: 5rem 0;
}

.gallery h2,
.contact h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-grid figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
}

.gallery-grid a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem 1rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(to top, rgba(15, 20, 25, 0.9), transparent);
}

/* Features */
.features {
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--border);
}

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

.features-grid article {
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(212, 168, 83, 0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.features-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.features-grid p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* Contact */
.contact {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(26, 34, 45, 0.6));
}

.contact-inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.contact-text p {
  color: var(--muted);
  max-width: 36ch;
}

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

.contact-card {
  display: block;
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

a.contact-card:hover {
  border-color: rgba(212, 168, 83, 0.5);
  transform: translateX(4px);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-value {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-card--phone .contact-value {
  color: var(--accent);
  font-size: 1.5rem;
}

.contact-card--map .contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 2rem 4vw;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* Floating call button */
.fab-phone {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 99;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s;
}

.fab-phone:hover {
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .header-phone {
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
  }
}
