/* ── Terra & Stone Outdoor — Evrenna Studio Build ── */
/* ── Color Scheme: Earth & Stone ── */
:root {
  --brown-dark:   #3d2b1f;
  --brown-mid:    #5c3d25;
  --brown-light:  #8c6b4a;
  --stone:        #7a7060;
  --olive:        #6b7c45;
  --olive-light:  #a8bc7a;
  --cream:        #f5f0e8;
  --sand:         #e8dcc8;
  --white:        #fafaf8;
  --gray:         #6b6560;
  --dark:         #2c1f0e;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Georgia, serif; color: var(--dark); background: var(--white); line-height: 1.68; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 80px;
  background: rgba(61,43,31,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.22);
}
.nav-logo img { height: 62px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 0.94rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--olive-light); }
.nav-cta {
  background: var(--olive) !important; color: #fff !important;
  padding: 10px 22px; border-radius: 7px;
  font-weight: 700 !important; font-size: 0.9rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--olive-light) !important; color: var(--dark) !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover; background-position: center 55%;
  filter: brightness(0.38);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 24px; }
.hero-badge {
  display: inline-block;
  background: var(--olive); color: #fff;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 18px; border-radius: 4px; margin-bottom: 1.4rem;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.hero h1 span { color: var(--olive-light); }
.hero p {
  color: rgba(255,255,255,0.82); font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.2rem; max-width: 560px; margin-inline: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 15px 32px; border-radius: 7px;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s; border: none;
}
.btn-olive { background: var(--olive); color: #fff; }
.btn-olive:hover { background: var(--olive-light); color: var(--dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.55); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-brown { background: var(--brown-dark); color: #fff; }
.btn-brown:hover { background: var(--brown-mid); transform: translateY(-2px); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--brown-dark); padding: 18px 5%;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.88); font-size: 0.9rem; font-weight: 600;
}
.trust-item svg { color: var(--olive-light); flex-shrink: 0; }

/* ── SECTIONS ── */
section { padding: 86px 5%; }
.section-label {
  display: inline-block; color: var(--olive);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 0.6rem;
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2;
  color: var(--brown-dark); margin-bottom: 1rem; font-family: Georgia, serif;
}
.section-sub { color: var(--gray); font-size: 1.05rem; max-width: 560px; }

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-img {
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
}
.about-text p { color: var(--gray); margin-bottom: 1rem; font-size: 1.02rem; }
.about-checks { list-style: none; margin: 1.2rem 0 2rem; }
.about-checks li {
  display: flex; align-items: center; gap: 10px;
  color: var(--dark); font-weight: 500; margin-bottom: 0.7rem;
}
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--olive); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.75rem; font-weight: 700;
}

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; max-width: 1100px; margin: 52px auto 0;
}
.service-card {
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.13); }
.service-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-card-body { padding: 22px 24px 28px; background: var(--white); }
.service-icon { font-size: 1.7rem; margin-bottom: 10px; }
.service-card-body h3 { color: var(--brown-dark); font-size: 1.12rem; margin-bottom: 6px; font-family: Georgia, serif; }
.service-card-body p { color: var(--gray); font-size: 0.93rem; }

/* ── GALLERY ── */
.gallery { background: var(--sand); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; max-width: 1100px; margin: 52px auto 0;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 12px; transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* ── WHY US ── */
.why-us { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; max-width: 1100px; margin: 52px auto 0;
}
.why-card { text-align: center; padding: 32px 20px; }
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h4 { color: var(--brown-dark); font-size: 1.05rem; margin-bottom: 8px; font-family: Georgia, serif; }
.why-card p { color: var(--gray); font-size: 0.92rem; }

/* ── CONTACT ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
  max-width: 1000px; margin: 0 auto; align-items: start;
}
.contact-info h3 { color: var(--brown-dark); font-size: 1.3rem; margin-bottom: 1.4rem; font-family: Georgia, serif; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.2rem; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brown-dark); color: var(--olive-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.contact-detail-text strong { display: block; color: var(--dark); font-weight: 700; }
.contact-detail-text span { color: var(--gray); font-size: 0.95rem; }
.contact-form {
  background: var(--cream); border-radius: 18px;
  padding: 42px 38px; box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--brown-dark); margin-bottom: 1.4rem; font-family: Georgia, serif; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #d4c8b8; border-radius: 7px;
  font-size: 0.95rem; font-family: inherit;
  outline: none; transition: border-color 0.2s; background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--olive); }
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--brown-dark); color: #fff;
  border: none; border-radius: 7px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--olive); transform: translateY(-2px); }

/* ── CTA BAND ── */
.cta-band { background: var(--brown-dark); padding: 70px 5%; text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0.8rem auto 2rem; }

/* ── FOOTER ── */
footer {
  background: #1e130a; color: rgba(255,255,255,0.65);
  padding: 52px 5% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; max-width: 1100px; margin: 0 auto 40px;
}
.footer-brand img { height: 68px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; font-family: Georgia, serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--olive-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px; text-align: center; font-size: 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 80px; left: 0; right: 0;
    background: var(--brown-dark); padding: 20px 5%; gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar { gap: 1.4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
