/* PWL Web Host — styles.css */

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

:root {
  --orange: #EE7623;
  --orange-dark: #d4661a;
  --dark: #1c1c1c;
  --mid: #444;
  --light: #f7f7f7;
  --white: #fff;
  --radius: 8px;
}

body {
  font-family: 'Hind', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.site-header {
  background: var(--dark);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--orange-dark); }

/* HERO */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 90px 0 80px;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 1.15rem;
  color: #ccc;
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 16px 40px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background 0.2s;
}

.hero-cta:hover { background: var(--orange-dark); }

/* SERVICES */
.services {
  padding: 80px 0;
  background: var(--white);
}

.section-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(238,118,35,0.1);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  margin: 16px 0 6px;
}

.card .price-note {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
}

.card p {
  color: var(--mid);
  font-size: 0.97rem;
  margin-bottom: 28px;
}

.card-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.card-btn:hover { background: var(--orange-dark); }

/* FEATURES */
.features {
  background: var(--light);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  background: var(--orange);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature p {
  font-size: 0.9rem;
  color: var(--mid);
}

/* FORM SECTION */
.contact {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.contact .section-title { margin-bottom: 12px; }

.contact .sub {
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.form-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 30px 24px;
  font-size: 0.88rem;
}

footer a {
  color: var(--orange);
  text-decoration: none;
}

footer a:hover { text-decoration: underline; }

/* MOBILE */
@media (max-width: 600px) {
  .site-header .wrap { flex-direction: column; gap: 14px; }
  .hero { padding: 60px 0 50px; }
  .cards { grid-template-columns: 1fr; }
}
