/* =====================
   DESIGN SYSTEM
===================== */

:root {
  --sage: #94946E;
  --sage-light: #A8AD8C;
  --beige: #FFE1B6;
  --off: #F7F5F3;
  --dark: #090909;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Urbanist', sans-serif;
  background: var(--off);
  color: var(--dark);
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =====================
   HEADER
===================== */

.header {
  background: var(--off);
  padding: 25px 0;
}

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

.logo {
  letter-spacing: 6px;
  font-size: 13px;
}

.nav a {
  margin-left: 40px;
  font-size: 13px;
  text-decoration: none;
  color: #6f6f6f;
}

.btn-nav {
  background: var(--beige);
  padding: 10px 18px;
  border-radius: 6px;
  color: #000 !important;
}

/* =====================
   HERO
===================== */

.hero-full {
  height: 85vh;
  background: url('../img/hero.jpg') center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  color: white;
}

.hero-top {
  font-size: 14px;
  opacity: 0.8;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 300;
  margin: 20px 0;
  line-height: 1.2;
}

.hero-content p {
  font-size: 16px;
  max-width: 500px;
  opacity: 0.9;
}

.hero-content small {
  display: block;
  margin-top: 20px;
  opacity: 0.7;
}

/* =====================
   WHY
===================== */

.why {
  background: var(--off);
  padding: 100px 0;
  text-align: center;
}

.why-sub {
  font-size: 14px;
  opacity: 0.6;
}

.why h2 {
  max-width: 800px;
  margin: 20px auto 60px;
  font-size: 32px;
  font-weight: 300;
}

.why h2 span {
  color: var(--sage);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--sage-light);
  padding: 40px;
  border-radius: 12px;
  color: #000;
}

.why-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  opacity: 0.8;
}

.btn-center {
  display: inline-block;
  margin-top: 40px;
  background: var(--sage);
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
}

/* =====================
   METHODS
===================== */

.methods {
  background: var(--sage);
  padding: 120px 0;
  text-align: center;
  color: white;
}

.methods-sub {
  font-size: 14px;
  opacity: 0.7;
}

.methods h2 {
  font-size: 34px;
  font-weight: 300;
  margin: 20px 0 60px;
}

.methods h2 span {
  color: var(--beige);
}

.methods-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.methods-card {
  width: 420px;
}

.methods-card img {
  width: 100%;
}

.methods-card p {
  margin-top: 15px;
  font-size: 14px;
}

.arrow {
  font-size: 40px;
  cursor: pointer;
}

.btn-beige {
  margin-top: 40px;
  display: inline-block;
  background: var(--beige);
  padding: 14px 28px;
  border-radius: 8px;
  color: #000;
  text-decoration: none;
}

/* =====================
   CABINET
===================== */

.cabinet {
  height: 600px;
  background: url('../img/cabinet.jpg') center/cover no-repeat;
}

.cabinet-overlay {
  height: 100%;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
}

.cabinet-content {
  max-width: 550px;
  color: white;
}

.cabinet-intro {
  font-size: 14px;
  margin-bottom: 20px;
}

.cabinet-text {
  font-size: 15px;
  margin-bottom: 30px;
}

.btn-cabinet {
  background: var(--sage);
  padding: 14px 28px;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

/* =====================
   APPOINTMENT
===================== */

.appointment {
  padding: 100px 0 80px;
  text-align: center;
}

.appointment h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.appointment-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}

.appointment-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background: var(--sage);
  color: white;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-secondary {
  background: var(--beige);
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
}

.divider {
  height: 1px;
  background: #ccc;
  width: 90%;
  margin: 60px auto;
}

/* =====================
   FOOTER
===================== */

.footer {
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-logo img {
  width: 80px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #666;
}

.footer-social .icons span {
  background: var(--sage);
  color: white;
  padding: 8px;
  margin-right: 10px;
  border-radius: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width: 768px) {

  .why-grid,
  .methods-slider,
  .appointment-buttons,
  .footer-top {
    flex-direction: column;
    display: flex;
    align-items: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

}