/* ===== RESET & BASICS ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: #8a8a8a;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.section-lead {
  max-width: 640px;
  color: #555;
  margin-bottom: 2.5rem;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  border-radius: 2px;
  border: 1px solid #111;
  transition: background 0.2s, color 0.2s;
}
.btn-primary { background: #111; color: #fff; }
.btn-primary:hover { background: #333; }
.btn-outline { background: transparent; color: #111; }
.btn-outline:hover { background: #111; color: #fff; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  text-decoration: none;
}
.main-nav ul {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.social-icon img { border-radius: 50%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #111;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #eee;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}
.section-alt {
  background: #f6f5f3;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-media img {
  border-radius: 4px;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 2rem 1.75rem;
  text-align: center;
}
.card-highlight {
  border-color: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
}
.card-title {
  margin: 0.5rem 0 0.25rem;
  letter-spacing: 0.05em;
}
.card-subtitle {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.card-list {
  text-align: left;
  margin-bottom: 1.5rem;
}
.card-list li {
  padding: 0.35rem 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.9rem;
}
.card-price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.card-note {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1.25rem;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.feature h4 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.feature p {
  font-size: 0.85rem;
  color: #777;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #777;
  margin-top: 0.75rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
}
.contact-form button {
  margin-top: 1.5rem;
  align-self: flex-start;
  cursor: pointer;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 3rem 0;
}
.footer-name {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-links a {
  text-decoration: none;
  color: #ccc;
}
.footer-links {
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: #777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f2f2f2;
  }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; }
}
