:root {
  --red: #d90000;
  --red-dark: #a90000;
  --ink: #171717;
  --muted: #666;
  --light: #f5f5f5;
  --white: #fff;
  --border: #dedede;
  --shadow: 0 14px 35px rgba(0, 0, 0, .12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  backdrop-filter: blur(10px);
}

.header-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--red),
    var(--red-dark)
  );
  border-radius: 11px;
}

nav {
  margin-left: auto;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
}

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

.hero {
  position: relative;
  min-height: 720px;
  padding: 150px 24px 80px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, .55),
    rgba(0, 0, 0, .68)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
}

.hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
}

.hero-content > p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff7676;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================
   BUTTONS
========================= */

.btn {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform .2s ease,
    background-color .2s ease,
    color .2s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .75);
  background: rgba(0, 0, 0, .28);
}

.btn-secondary:hover {
  color: var(--ink);
  background: var(--white);
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 90px max(24px, calc((100% - 1180px) / 2));
  scroll-margin-top: 70px;
}

.section-light {
  background: var(--light);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.section-heading p:last-child {
  color: var(--muted);
}

/* =========================
   ABOUT
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: start;
}

.about-grid p {
  margin-top: 0;
  font-size: 1.08rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0 0 14px;
  padding: 14px 16px 14px 48px;
  background: var(--light);
  border-radius: 10px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 17px;
  color: var(--red);
  font-weight: 900;
}

/* =========================
   GALLERY
========================= */

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

.gallery-grid figure {
  margin: 0;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #111;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-video {
  grid-column: 1 / -1;
  min-height: 380px !important;
}

/* =========================
   SERVICES
========================= */

.services-section {
  color: var(--white);
  background: linear-gradient(
    145deg,
    #171717,
    #050505
  );
}

.light-heading .eyebrow {
  color: #ff7777;
}

.light-heading p:last-child {
  color: #d2d2d2;
}

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

.service-card {
  position: relative;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin-top: 0;
  color: var(--red);
  font-size: 1.35rem;
}

.service-card p {
  margin-bottom: 0;
}

.service-card .price {
  margin-top: 18px;
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 900;
}

.featured-card {
  grid-column: 1 / -1;
  border: 3px solid var(--red);
}

.card-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.contact-section {
  background: var(--light);
}

.appointment-form {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.appointment-form label,
.appointment-form legend {
  color: var(--ink);
  font-weight: 800;
}

.appointment-form label {
  display: block;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

select {
  min-height: 50px;
  cursor: pointer;
}

select:disabled {
  color: #777;
  background: #efefef;
  cursor: not-allowed;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(217, 0, 0, .14);
  border-color: var(--red);
}

.field-help {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 500;
  line-height: 1.45;
}

fieldset {
  margin: 26px 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

legend {
  padding: 0 8px;
}

.service-option {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
  padding: 10px 12px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 9px;
  font-weight: 500 !important;
  cursor: pointer;
}

.service-option:hover {
  border-color: #d7d7d7;
  background: #f7f7f7;
}

.service-option input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  flex: 0 0 auto;
}

.service-option span {
  flex: 1;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.submit-btn {
  width: 100%;
  margin-top: 18px;
  border: 0;
}

.error-hint {
  color: var(--red);
}

.hidden {
  display: none;
}

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

footer {
  padding: 38px 24px 24px;
  color: var(--white);
  background: #151515;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

footer a {
  color: var(--white);
  text-decoration: none;
}

footer a:hover {
  color: #ff7676;
}

.insta {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
}

.copyright {
  margin: 28px 0 0;
  color: #aaa;
  text-align: center;
  font-size: .9rem;
}

/* =========================
   TABLET AND MOBILE MENU
========================= */

@media (max-width: 850px) {
  .header-inner {
    padding-right: 56px;
  }

  .brand {
    max-width: calc(100% - 58px);
  }
   #menuToggle{
      position: absolute;
      right: 0;
  }
  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 100;

    width: 44px;
    height: 44px;

    display: grid;
    place-content: center;
    gap: 5px;

    padding: 0;
    margin: 0;

    border: 0;
    background: transparent;
    cursor: pointer;

    transform: translateY(-50%);
  }

  .menu-toggle span {
      /*position: absolute;*/
      /*right: 0%;*/
    width: 26px;
    height: 3px;
    background: var(--red);
    border-radius: 3px;
  }

  nav {
    margin-left: 0;
  }

  nav ul {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 1000;

    display: none;
    padding: 16px;

    flex-direction: column;
    align-items: stretch;
    gap: 0;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  nav ul.is-open {
    display: flex;
  }

  nav li {
    width: 100%;
  }

  nav a {
    width: 100%;
    display: block;
    padding: 11px 8px;
  }

  .hero {
    min-height: 650px;
  }

  .about-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .featured-card {
    grid-column: auto;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 66px;
    padding-right: 54px;
  }
  #menuToggle{
      position: absolute;
      right: 0;
  }
  .brand {
    min-width: 0;
    max-width: calc(100% - 56px);
    overflow: hidden;
    font-size: 1rem;
  }

  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .menu-toggle {
    right: 0;
  }

  nav ul {
    top: 66px;
  }

  .hero {
    min-height: 620px;
    padding: 120px 18px 55px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 70px 18px;
  }

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

  .gallery-video {
    grid-column: auto;
    min-height: 260px !important;
  }

  .gallery-grid figure {
    min-height: 240px;
  }

  .appointment-form {
    padding: 22px 16px;
  }

  fieldset {
    padding: 16px;
  }

  .service-option {
    padding: 10px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width: 390px) {
  .header-inner {
    width: calc(100% - 20px);
    padding-right: 50px;
  }

  .brand {
    max-width: calc(100% - 50px);
    font-size: .92rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .menu-toggle {
      /*position: absolute;*/
    right: 0;
    width: 42px;
    height: 42px;
  }

  .menu-toggle span {
    width: 24px;
  }
}