:root {
  --red: #d71920;
  --dark: #171717;
  --grey: #666;
  --light: #f7f7f7;
  --border: #e8e8e8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo-placeholder img {
  width: 120px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
}

nav a:hover {
  color: var(--red);
}

.hero {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f7f7f7);
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.hero p,
.section-intro {
  color: var(--grey);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.btn {
  display: inline-block;
  margin-top: 32px;
  padding: 15px 34px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
}

.btn:hover {
  background: #b8141a;
}

.section {
  padding: 80px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.card,
.price-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,0.04);
  transition: 0.25s ease;
}

.card:hover,
.price-card:hover {
  transform: translateY(-4px);
}

.pricing {
  background: var(--light);
}

.price-card {
  text-align: center;
}

.featured {
  border: 2px solid var(--red);
}

.price {
  font-size: 2.2rem;
  color: var(--red);
  font-weight: 900;
  margin: 16px 0;
}

.collection-banner {
  grid-column: 1 / -1;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;

  padding: 22px 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.collection-banner strong {
  color: var(--red);
  font-size: 1.25rem;
  white-space: nowrap;
}

.collection-banner p {
  margin: 0;
  color: #555;
  max-width: 650px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.gallery-placeholder {
  height: 220px;
  background: var(--light);
  border: 1px dashed #bbb;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 700;
}

.about {
  background: #fff;
}

.ticks {
  list-style: none;
  max-width: 650px;
  margin: 35px auto 0;
  display: grid;
  gap: 16px;
}

.ticks li {
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--light);
  font-weight: 700;
}

.ticks li::before {
  content: "✓";
  color: var(--red);
  margin-right: 10px;
  font-weight: 900;
}

.contact {
  background: var(--light);
}

form {
  max-width: 650px;
  margin: 35px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button {
  padding: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

button:hover {
  background: #b8141a;
}

footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 38px 0;
}

.footer-content {
  display: grid;
  gap: 6px;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: .2s;
}

footer a:hover {
  color: var(--red);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .collection-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .collection-banner strong {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-placeholder img {
    width: 105px;
  }

  .hero {
    padding: 85px 0;
  }

  .section {
    padding: 65px 0;
  }
}