:root {
  --bg: #f4efe8;
  --surface: #fff9f2;
  --card: #1d1b1a;
  --text: #181513;
  --muted: #6c6258;
  --accent: #c2873d;
  --accent-deep: #8a5720;
  --line: rgba(24, 21, 19, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(194, 135, 61, 0.18), transparent 30%),
    linear-gradient(180deg, #f3eadf 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

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

.hero {
  min-height: 100vh;
  padding: 1.5rem 5vw 4rem;
  background:
    linear-gradient(135deg, rgba(24, 21, 19, 0.95), rgba(43, 34, 28, 0.82)),
    url("img/cut1.jpeg") center/cover;
  color: var(--white);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.brand img,
.footer-brand img {
  width: 3rem;
  height: 3rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero h1,
.section-heading h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  max-width: 10ch;
}

.hero-text {
  max-width: 38rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: var(--text);
}

.button.accent {
  background: var(--white);
  color: var(--text);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-card {
  justify-self: end;
  width: min(100%, 26rem);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.6rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
}

.hero-card-text {
  padding: 1.2rem 1.4rem 1.5rem;
}

.hero-card-text span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.section {
  padding: 5rem 5vw;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.feature-grid,
.service-grid,
.plan-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card,
.service-card,
.plan-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.6rem;
  box-shadow: 0 12px 28px rgba(76, 54, 31, 0.08);
}

.feature-card h3,
.service-card h3,
.plan-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.about-copy {
  font-size: 1.02rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-points {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
}

.about-points li + li {
  margin-top: 0.65rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(194, 135, 61, 0.08));
}

.service-card strong,
.plan-card strong {
  display: block;
  margin-top: 1.1rem;
  font-size: 1.35rem;
}

.service-card.featured,
.plan-card.premium {
  background: var(--card);
  color: var(--white);
  transform: translateY(-8px);
}

.plan-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(194, 135, 61, 0.16);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact {
  background: linear-gradient(180deg, rgba(194, 135, 61, 0.08), rgba(255, 255, 255, 0.52));
}

.contact-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.contact-card p + p {
  margin-top: 0.35rem;
}

.schedule {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.schedule p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.schedule p + p {
  margin-top: 0.55rem;
}

.schedule span:last-child {
  font-weight: 800;
}

.contact-card .button {
  margin-top: 1.2rem;
}

.plan-card.premium .plan-tag,
.service-card.featured .plan-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #f5c98a;
}

.footer {
  padding: 2rem 5vw 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

@media (max-width: 920px) {
  .hero-content,
  .about-layout,
  .feature-grid,
  .service-grid,
  .plan-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 1rem;
  }

  .nav,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

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

  .gallery img,
  .hero-card img {
    height: auto;
  }
}
