:root {
  --bg: #090909;
  --panel: #1f1f1f;
  --text: #f8f8f8;
  --muted: #a2a2a2;
  --white: #ffffff;
  --accent: #ffef00;
  --max: 1400px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Vazirmatn", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

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

h1,
h2,
h3,
h4,
.brand,
.site-menu,
.eyebrow,
.label {
  font-family: "Kanit", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 24px;
  font-size: clamp(47px, 6vw, 73px);
  line-height: 0.96;
  font-weight: 600;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.05;
  font-weight: 600;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 0 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--muted);
}

.brand {
  font-size: 31px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.header-cta {
  justify-self: end;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  background: var(--accent);
  color: #000;
  border: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.button:hover,
.header-cta:hover {
  background: #fff56a;
  color: #000;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 85px 0;
}

.eyebrow,
.label {
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}

.package-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
  padding-top: 70px;
}

.package-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.package-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  font-size: 21px;
}

.package-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: transparent;
  align-self: center;
}

.package-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.package-section,
.package-fit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.package-fit {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 32px;
}

.package-fit .contact-form {
  justify-self: start;
  width: 100%;
}

.package-contact-details {
  margin-top: 32px;
}

.package-contact-details h3 {
  margin-bottom: 18px;
}

.package-contact-details a {
  display: block;
  margin: 8px 0;
  color: var(--text);
  font-size: 18px;
}

.instagram-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.instagram-link::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: url("../icons/Instagram_Glyph_Gradient-ko.svg") center / contain no-repeat;
}

.instagram-link.has-icon::before {
  display: none;
}

.instagram-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.package-text p {
  font-size: 20px;
}

.package-benefits,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-benefits.inline-benefits {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
}

.package-benefits article,
.steps-grid article {
  padding: 28px;
  background: var(--panel);
}

.steps-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: "Kanit", Arial, sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.reviews-widget {
  margin-top: 32px;
}

.contact-form {
  padding: 32px;
  background: var(--panel);
}

.contact-form h2 {
  color: var(--white);
}

.contact-form label,
.contact-form .wpcf7-form label {
  display: block;
  margin-bottom: 20px;
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  margin-top: 6px;
  padding: 14px 0;
  background: transparent;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid var(--muted);
  border-radius: 0;
  font: inherit;
}

.contact-form textarea,
.contact-form .wpcf7-textarea {
  height: 120px !important;
  min-height: 120px;
  resize: vertical;
}

.contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 28px;
  background: var(--accent);
  color: #000;
  border: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-form .wpcf7-submit:hover,
.contact-form .wpcf7-submit:focus {
  background: #fff56a;
  color: #000;
}

.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
  border-top: 1px solid var(--muted);
}

.site-footer h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.site-footer h4 {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--text);
}

.menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .package-hero,
  .package-section,
  .package-fit {
    grid-template-columns: 1fr;
  }

  .package-benefits,
  .package-benefits.inline-benefits,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 70px;
    padding: 0 20px;
  }

  .brand {
    font-size: 25px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
  }

  .site-menu {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--accent);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 14px 20px;
    color: #090909;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 50px 0;
  }

  .package-hero {
    padding-top: 30px;
  }

  .package-hero .button {
    width: 100%;
  }

  .package-hero-copy p:not(.eyebrow),
  .package-text p {
    font-size: 16px;
  }

  .package-photo {
    min-height: 360px;
  }

  .package-benefits article,
  .steps-grid article {
    padding: 22px;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    width: min(100% - 32px, var(--max));
  }
}
