:root {
  --bg-dark: #0b1220;
  --bg-dark-2: #111827;
  --text: #111827;
  --text-light: #e5e7eb;
  --muted: #6b7280;
  --white: #ffffff;
  --line: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f8fafc;
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.top-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.header-bar {
  padding: 20px 0;
}

.centered-header {
  display: flex;
  justify-content: center;
  text-align: center;
}

.shop-name {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.1;
}

.shop-address {
  margin: 8px 0 0;
  font-size: 1rem;
  color: var(--muted);
}

.main-button,
.card-button,
.close-gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.main-button:hover,
.card-button:hover,
.close-gallery-button:hover {
  transform: translateY(-1px);
}

.light-button {
  background: #ffffff;
  color: #111827;
}

.dark-outline-button {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.dark-button,
.card-button,
.close-gallery-button {
  background: #111827;
  color: #ffffff;
}

.full-width-button {
  width: 100%;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.09), transparent 28%),
    linear-gradient(135deg, #0b1220 0%, #111827 55%, #1f2937 100%);
  color: var(--text-light);
  padding: 36px 0 72px;
}

.hero-banner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 640px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-image {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(5, 10, 20, 0.82) 0%,
      rgba(5, 10, 20, 0.55) 38%,
      rgba(5, 10, 20, 0.2) 65%,
      rgba(5, 10, 20, 0.12) 100%
    );
}

.hero-overlay-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  text-align: center;
}

.eyebrow,
.section-label,
.service-tag,
.contact-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.14);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-overlay-content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 760px;
  color: #ffffff;
}

.hero-subtext {
  margin: 22px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.centered-buttons {
  justify-content: center;
  align-items: center;
}

.section {
  padding: 84px 0 30px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-label {
  color: #4b5563;
  margin-bottom: 10px;
}

.light-label {
  color: rgba(255,255,255,0.65);
}

.section-heading h3,
.about-strip h3,
.gallery-header h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.16);
}

.service-image {
  height: 270px;
  object-fit: cover;
}

.service-card-content {
  padding: 22px;
}

.service-tag {
  color: var(--muted);
  margin-bottom: 8px;
}

.service-card h4 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.about-strip-section {
  padding-top: 26px;
}

.about-strip {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #f9fafb;
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.about-strip p:last-child {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-info-card h4,
.contact-form-card h4 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.contact-label {
  color: var(--muted);
}

.contact-info-item p {
  margin: 4px 0 0;
  color: #374151;
}

.input-group {
  margin-bottom: 16px;
}

.input-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  background: #ffffff;
  color: #111827;
}

.input-group textarea {
  resize: vertical;
}

.form-status {
  margin: 14px 0 0;
  color: #166534;
  font-weight: 700;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.hidden {
  display: none;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.76);
  backdrop-filter: blur(4px);
}

.gallery-panel {
  position: relative;
  width: min(100% - 32px, 1000px);
  margin: 40px auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  max-height: calc(100vh - 80px);
  overflow: auto;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.gallery-header h3 {
  margin: 0;
  font-size: 1.8rem;
}

.close-gallery-button {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
}

.gallery-main-image-wrap {
  margin-bottom: 18px;
}

.gallery-main-image {
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-thumb {
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  padding: 0;
}

.gallery-thumb.active {
  border-color: #111827;
}

.gallery-thumb img {
  height: 150px;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  margin-top: 60px;
}

.footer-content {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .service-grid,
  .about-strip,
  .contact-grid,
  .gallery-thumbs {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: 520px;
  }

  .hero-image {
    height: 520px;
  }

  .hero-overlay-content {
    padding: 36px 28px;
  }

  .gallery-main-image {
    height: 320px;
  }
}

@media (max-width: 680px) {
  .shop-name {
    font-size: 1.8rem;
  }

  .hero-banner {
    min-height: 460px;
  }

  .hero-image {
    height: 460px;
  }

  .hero-overlay-content h2 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .main-button {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}