:root {
  --red: #D91312;
  --red-dark: #B00E0D;
  --cream: #F8ECEC;
  --black: #1A1414;
  --white: #FFFFFF;
  --gray: #6B6161;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}

.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 48px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-outline {
  border-color: var(--black);
  color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-logo { height: 48px; width: auto; }

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.nav a:hover { color: var(--red); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, #FDF7F7 100%);
  padding: 120px 0 100px;
  text-align: center;
}

.hero-inner { max-width: 720px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section { padding: 100px 0; }
.section.alt { background: var(--cream); }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  padding: 40px 28px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover {
  box-shadow: 0 16px 40px rgba(217,19,18,0.12);
  transform: translateY(-4px);
}

.card-icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 16px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card p { color: var(--gray); font-size: 0.95rem; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p { color: var(--gray); margin-bottom: 16px; }
.about-text .section-title { margin-bottom: 20px; }

.about-image img {
  border-radius: 16px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-text p { color: var(--gray); margin-bottom: 24px; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-list a { color: var(--red); font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-size: 0.95rem;
  resize: vertical;
  background: var(--white);
  color: var(--black);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--black);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.contact-form button { margin-top: 8px; }

.form-note { font-size: 0.9rem; color: var(--red); min-height: 1.2em; }

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  height: 40px;
  border-radius: 8px;
}

.footer-inner p { font-size: 0.85rem; }

/* Responsive */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about-image img { height: 340px; }
}

@media (max-width: 720px) {
  .nav, .nav-cta { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 90px 0 64px; }
}
