:root {
  /* Core */
  --black: #0A0A0A;
  --dark-gray: #141414;
  --mid-gray: #141A1A;

  /* Light surfaces */
  --light-gray: #BBBDB9;
  --soft-gray: #CFCFCF;

  /* Text */
  --text-primary: #0A0A0A;
  --text-secondary: #4B4B4B;
  --text-inverted: #A6A7A2;

  /* UI */
  --border: #D1D1D1;
  --shadow: rgba(0,0,0,0.08);
}

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

/* =========================
   BASE
   ========================= */
html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  padding-top: 140px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   LAYOUT
   ========================= */
.container {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

section {
  padding: 4rem 0;
  width: 100%;
  overflow-x: hidden;
}

/* =========================
   HEADER
   ========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
}

.header,
.header .container,
.logo,
.logo-title {
  transition: all 0.3s ease;
}

.header.shrink .container {
  padding: 0.6rem 0;
}

.header.shrink .logo {
  max-height: 70px;
}

.header.shrink .logo-title {
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-inverted);
}

.logo {
  height: auto;
  max-height: 120px;
  width: auto;
  display: block;
}

.logo-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-inverted);
  white-space: nowrap;
}

nav a {
  color: var(--text-inverted);
  margin-left: 1.6rem;
  font-weight: 500;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
}
/* =========================
   ABOUT PAGE
   ========================= */
.about-page {
  background: var(--light-gray);
  min-height: calc(100vh - 200px);
  padding: 5rem 0;
  width: 100%;
  overflow-x: hidden;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  width: 90%;
}

.about-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  text-align: center;
}

.about-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.lead-text {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

.lead-text strong {
  font-weight: 700;
  color: var(--black);
}

.about-content {
  display: grid;
  gap: 2.5rem;
}

.content-section {
  background: rgba(255, 255, 255, 0.5);
  padding: 2rem 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px var(--shadow);
  border-left: 4px solid var(--black);
  transition: all 0.3s ease;
}

.content-section:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

@media (hover: none) {
  .content-section:hover {
    transform: none;
  }
}

.content-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.content-section p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

/* =========================
   GOOGLE REVIEWS
   ========================= */
.reviews-section {
  margin-top: 4rem;
  text-align: center;
}

.reviews-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.reviews-rating {
  margin-bottom: 2.5rem;
}

.stars {
  display: inline-block;
  font-size: 3rem;
  letter-spacing: 4px;
  background: linear-gradient(180deg, #ffd966, #f5b301);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.rating-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 2rem;
  color: var(--text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 1.8rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px var(--shadow);
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.reviews-link {
  margin-top: 2rem;
}

.reviews-link a {
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: var(--black);
  color: var(--soft-gray);
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  width: 100%;
}

.footer a {
  color: var(--soft-gray);
  text-decoration: none;
}

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

.footer p {
  margin-bottom: 0.5rem;
}

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

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  .container {
    width: 95%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .header .container {
    padding: 1.2rem 1rem;
  }

  .logo {
    max-height: 90px;
  }

   .header.shrink .logo {
    max-height: 65px;
  }

  .logo-title {
    font-size: 1.4rem;
  }

  nav a {
    margin-left: 1.2rem;
    font-size: 0.95rem;
  }

  .about-page {
    padding: 4rem 0;
  }

  .about-container {
    width: 92%;
  }

  .about-page h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .lead-text {
    font-size: 1.25rem;
  }

  .about-intro {
    margin-bottom: 2.5rem;
  }

  .about-content {
    gap: 2rem;
  }

  .content-section {
    padding: 1.8rem 2.2rem;
  }

  .content-section h2 {
    font-size: 1.3rem;
  }

  .content-section p {
    font-size: 1.02rem;
    line-height: 1.7;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }

  .header .container {
    padding: 1.5rem 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .header.shrink .container {
    padding: 0.8rem 1rem;
  }

  .logo-text {
    flex-direction: column;
    gap: 0.3rem;
  }

  .logo {
    max-height: 80px;
  }

  .header.shrink .logo {
    max-height: 50px;
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .header.shrink .logo-title {
    opacity: 0;
    visibility: hidden;
  }

  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  nav a {
    margin: 0;
    font-size: 0.9rem;
  }

  .about-page {
    padding: 3rem 0;
  }

  .about-container {
    width: 90%;
  }

  .about-page h1 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }

  .content-section {
    padding: 1.5rem 1.8rem;
  }

  .content-section p {
    font-size: 1rem;
    line-height: 1.65;
  }

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

  .reviews-title {
    font-size: 1.5rem;
  }

  .stars {
    font-size: 2.2rem;
  }

  .rating-text {
    font-size: 1.1rem;
  }

  .reviews-link a {
    font-size: 1rem;
  }

  .footer {
    padding: 2rem 1rem;
    font-size: 0.85rem;
  }
}

/* SMALL MOBILE (600px and below) */
@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }

  .header .container {
    padding: 1.2rem 1rem;
  }

  .header.shrink .container {
    padding: 0.6rem 1rem;
  }

  .logo {
    max-height: 70px;
  }

  .header.shrink .logo {
    max-height: 45px;
  }

  .logo-title {
    font-size: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .about-page {
    padding: 2.5rem 0;
  }

  .about-container {
    width: 92%;
  }

  .about-page h1 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }

  .content-section {
    padding: 1.5rem 1.5rem;
  }

  .content-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .stars {
    font-size: 1.9rem;
    letter-spacing: 3px;
  }

  .footer {
    font-size: 0.8rem;
  }
}

/* EXTRA SMALL (375px and below) */
@media (max-width: 375px) {
  .container {
    padding: 0 0.8rem;
  }

  .logo-title {
    font-size: 0.9rem;
  }

  nav a {
    font-size: 0.8rem;
  }

  .about-page {
    padding: 2rem 0;
  }

  .about-page h1 {
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
  }

  .lead-text {
    font-size: 1rem;
  }

  .content-section {
    padding: 1.2rem 1.2rem;
  }

  .content-section p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}