:root {
  --ink: #121512;
  --ink-soft: #27302b;
  --paper: #f7f8f3;
  --white: #ffffff;
  --mist: #e8eee8;
  --sage: #7f9585;
  --sage-dark: #4e6657;
  --coral: #e56f58;
  --line: rgba(18, 21, 18, 0.14);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(18, 21, 18, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand img {
  width: 76px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a,
.nav-cta {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--white);
}

.nav-cta {
  color: var(--ink);
  background: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(8, 11, 8, 0.86) 0%, rgba(8, 11, 8, 0.62) 42%, rgba(8, 11, 8, 0.12) 100%),
    url("photo/Photo 2.jpeg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(18, 21, 18, 0.72), transparent);
}

.hero-content {
  padding: 70px 0 58px;
}

.hero-copy {
  width: min(610px, 100%);
  color: var(--white);
}

.hero-label {
  width: 176px;
  height: 176px;
  object-fit: cover;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow {
  color: var(--mist);
}

h1,
.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  font-size: 4.85rem;
  max-width: 720px;
}

.hero-text {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.button-insta {
  color: var(--white);
  background: #58c3e5;
}

.button-primary:hover {
  background: #d85e48;
}

.button-insta:hover {
  background: #07b9f0;
}

.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.intro-band {
  padding: 58px 0;
  color: var(--white);
  background: var(--ink);
}

.intro-grid,
.schedule-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.section {
  padding: 82px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink-soft);
}

.section-kicker {
  color: var(--sage);
}

.section-dark .section-kicker,
.intro-band .section-kicker {
  color: var(--mist);
}

.section-title {
  font-size: 3.2rem;
}

.section-lead {
  margin: 0;
  color: rgba(18, 21, 18, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.intro-band .section-lead,
.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.price {
  border-radius: 8px;
  padding: 24px;
}

.feature-card {
  min-height: 230px;
  background: var(--white);
  border: 1px solid var(--line);
}

.feature-card span {
  color: var(--sage-dark);
  font-weight: 900;
}

.feature-card h3,
.price h3 {
  margin: 28px 0 12px;
  font-size: 1.18rem;
}

.feature-card p,
.price p {
  margin: 0;
  color: rgba(18, 21, 18, 0.68);
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.price {
  min-height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.price h3 {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.price p {
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.15;
}

.price-featured {
  background: var(--white);
}

.price-featured h3 {
  color: var(--sage-dark);
}

.price-featured p {
  color: var(--ink);
}

.time-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.time-panel span {
  min-height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 1.28rem;
  font-weight: 900;
}

.gallery-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  min-height: 360px;
}

.gallery-section img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.contacts-section {
  background: var(--mist);
}

.contact-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.text-link {
  width: 100%;
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: none;
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
  font-size: 0.9rem;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  text-decoration: none;
}

.policy-page {
  min-height: 100vh;
  background: var(--paper);
}

.policy {
  padding: 64px 0 86px;
}

.policy-card {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-card h1,
.policy-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.policy-card h1 {
  font-size: 3rem;
}

.policy-card h2 {
  margin-top: 34px;
  font-size: 1.85rem;
}

.policy-card p,
.policy-card li {
  color: rgba(18, 21, 18, 0.74);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 3.65rem;
  }

  .section-title {
    font-size: 2.55rem;
  }

  .intro-grid,
  .schedule-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 62px;
    height: 48px;
  }

  /* .brand span {
    display: none;
  } */

  .nav-cta {
    padding: 9px 14px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 590px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-content {
    padding: 44px 0 42px;
  }

  .hero-label {
    width: 132px;
    height: 132px;
    margin-bottom: 22px;
  }

  h1 {
    font-size: 2.85rem;
  }

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

  .section,
  .intro-band {
    padding: 56px 0;
  }

  .section-title {
    font-size: 2.15rem;
  }

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

  .gallery-section img {
    min-height: 260px;
  }

  .policy-card {
    width: min(100% - 24px, 900px);
    padding: 22px;
  }
}
