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

body {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #121212;
  color: #f5f2ec;
  line-height: 1.6;
}

/* LAYOUT HELPERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* COLORS / THEME */
:root {
  --bg-dark: #121212;
  --bg-panel: #1e1a16;
  --bg-panel-alt: #18130f;
  --accent: #c19a6b; /* tan / leather */
  --accent-dark: #8f6b3b;
  --text-main: #f5f2ec;
  --text-muted: #b8b1a5;
  --border-strong: #3d3429;
}

/* HEADER & NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 10, 8, 0.96);
  border-bottom: 2px solid #2f2720;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.18em;
}

.logo-main {
  font-size: 0.85rem;
  color: var(--accent);
}

.logo-sub {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--text-main);
  border-bottom-color: var(--accent);
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
}

/* HERO */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: url("hero-placeholder.jpg") center center / cover no-repeat,
    radial-gradient(circle at top, #3a2d23 0, #120e0b 55%);
  color: var(--text-main);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.7),
    rgba(18, 14, 11, 0.95)
  );
}

.hero-content {
  position: relative;
  padding: 4.5rem 1.5rem;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 650px;
  font-size: 1rem;
  color: var(--text-muted);
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-phones p {
  margin: 0.15rem 0;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--accent);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: #19110b;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:disabled {
  opacity: 0.6;
  cursor: default;
}

/* SECTIONS */
.section {
  padding: 4rem 0;
  background-color: var(--bg-dark);
}

.section-alt {
  padding: 4rem 0;
  background-color: var(--bg-panel);
  border-top: 4px solid #261f18;
  border-bottom: 4px solid #261f18;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 720px;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.section-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--bg-panel-alt);
  border: 1px solid var(--border-strong);
  padding: 1.5rem;
  border-radius: 8px;
}

.card h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.card ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-main);
}

.card ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* SPLIT LAYOUT */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* CHECKLIST */
.checklist {
  list-style: none;
  margin-top: 0.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.checklist li::before {
  content: "▢";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* MEDIA PLACEHOLDER */
.placeholder-media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.placeholder-box {
  border-radius: 10px;
  border: 2px dashed var(--border-strong);
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.placeholder-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CONTACT SECTION */
.contact-section {
  background-color: #100d0a;
  border-top: 4px solid #2a221a;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background-color: var(--bg-panel-alt);
  border: 1px solid var(--border-strong);
  padding: 1.5rem;
  border-radius: 8px;
}

.contact-list {
  list-style: none;
  margin-bottom: 1rem;
}

.contact-list li {
  margin-bottom: 0.3rem;
}

.contact-list a {
  color: var(--accent);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  background-color: #17120e;
  border-radius: 6px;
  border: 1px solid #3b3228;
  padding: 0.5rem 0.6rem;
  color: var(--text-main);
  font-size: 0.9rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FUTURE SOCIAL */
.future-social {
  margin-top: 3rem;
  border-top: 1px solid #2c241d;
  padding-top: 1.5rem;
}

.social-placeholder {
  display: inline-flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #3a3026;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

/* FOOTER */
.site-footer {
  background-color: #070504;
  border-top: 2px solid #221b14;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  text-align: center;
}

.footer-sub {
  margin-top: 0.2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #120e0b;
    border-top: 1px solid #2f2720;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.75rem 1.5rem 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
