/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  color: #333;
  background: #fff;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #8a6a5a; }
img { max-width: 100%; }

/* ===== HEADER / NAV ===== */
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo {
  padding: 12px 0;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

nav a {
  display: block;
  padding: 22px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: #8a6a5a;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 380px;
  background: url('../images/hero.jpg') center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-tagline {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}

.hero-tagline span { margin: 0 12px; opacity: 0.7; }

.page-hero {
  height: 300px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ===== MAIN CONTENT ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-subtitle {
  font-size: 17px;
  color: #8a6a5a;
  margin-bottom: 28px;
  font-weight: 400;
}

.intro-text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

/* ===== HOME SERVICE CARDS ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.service-card {
  text-align: center;
  padding: 24px 16px;
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.service-card ul {
  list-style: none;
  font-size: 13px;
  color: #666;
  line-height: 2;
}

.service-card .read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #8a6a5a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-card .read-more:hover { text-decoration: underline; }

/* ===== INNER PAGE SECTIONS ===== */
.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #8a6a5a;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e0e0e0;
}

.section ul {
  list-style: none;
  padding-left: 0;
}

.section ul li {
  padding: 5px 0 5px 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.section ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #8a6a5a;
  font-weight: bold;
}

/* ===== CONTACT PAGE ===== */
.contact-info {
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 2;
  color: #444;
}

.contact-info strong { color: #222; }

.contact-form {
  max-width: 560px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
  margin-bottom: 5px;
  margin-top: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8a6a5a;
  background: #fff;
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-form button {
  margin-top: 20px;
  background: #8a6a5a;
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover { background: #6d5047; }

/* ===== FOOTER ===== */
footer {
  background: #f7f5f3;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  padding: 28px 20px;
  font-size: 12px;
  color: #888;
}

footer a {
  color: #888;
  margin: 0 8px;
}

footer a:hover { color: #8a6a5a; }

/* ===== CLIENT AREA ===== */
.client-area-box {
  background: #f7f5f3;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.client-area-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 680px) {
  .nav-inner { gap: 0; }
  nav a { padding: 16px 10px; font-size: 10px; }
  .hero { height: 250px; }
  .hero-tagline { font-size: 14px; }
  .services { grid-template-columns: 1fr 1fr; }
  .container { padding: 40px 16px; }
}
