/* Simple, clean stylesheet */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #111;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  z-index: 10;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand { font-weight: 700; letter-spacing: 0.2px; }
.nav { display: flex; gap: 14px; flex-wrap: wrap; }
.nav a { text-decoration: none; opacity: 0.9; }
.nav a:hover { opacity: 1; text-decoration: underline; }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: #f4f4f4; }
h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin-bottom: 14px; }
h2 { font-size: 28px; margin-bottom: 10px; }
h3 { font-size: 18px; margin-bottom: 8px; }
.muted { color: #555; margin-bottom: 18px; }
.fineprint { font-size: 13px; color: #666; margin-top: 12px; }

/* Hero */
.hero { padding: 72px 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.hero-media {
  border-radius: 12px;
  overflow: hidden;
  background: #e9e9e9;
  aspect-ratio: 4 / 5;
  border: 1px solid #ddd;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border: 1px solid #111;
  cursor: pointer;
}
.btn:hover { opacity: 0.92; }
.btn-outline {
  background: transparent;
  color: #111;
}

/* Cards */
.cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
}
.notice {
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
}

/* Gallery */
.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ph {
  border-radius: 12px;
  overflow: hidden;
  background: #e9e9e9;
  aspect-ratio: 4 / 5;
  border: 1px solid #ddd;
}
.ph img { width: 100%; height: 100%; object-fit: cover; }

/* Form */
.form {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
}
.form label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.form input, .form select, .form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font: inherit;
  background: #fff;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Contact + Footer */
.contact p { margin-bottom: 8px; }
.site-footer {
  background: #111;
  color: #fff;
  padding: 18px 0;
  margin-top: 0;
}
.footer-row { display: flex; justify-content: center; text-align: center; font-size: 14px; }

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .two { grid-template-columns: 1fr; }
}