:root {
  --ink: #261f20;
  --muted: #735f61;
  --line: #efd8d4;
  --paper: #fff8f5;
  --soft: #ffece7;
  --blush: #ffd5cd;
  --accent: #d8213f;
  --accent-dark: #8f1126;
  --berry: #6f1523;
  --coral: #f47b68;
  --cream: #fff2df;
  --white: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.top-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--berry);
  font-size: 14px;
  font-weight: 700;
}

.top-strip a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(255, 248, 245, 0.9);
  border-bottom: 1px solid rgba(216, 33, 63, 0.16);
  box-shadow: 0 18px 40px rgba(111, 21, 35, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 365px;
}

.brand-mark {
  display: flex;
  width: 360px;
  height: 104px;
  min-height: 104px;
  align-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  color: var(--berry);
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(216, 33, 63, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.main-nav a {
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--white);
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-link,
.nav-action,
.button,
.package-card a,
.contact-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.social-link {
  padding: 0 16px;
  color: var(--accent-dark);
  background: var(--soft);
}

.nav-action {
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--berry));
  box-shadow: 0 12px 26px rgba(216, 33, 63, 0.22);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  align-items: end;
  overflow: hidden;
  padding: clamp(88px, 11vw, 156px) clamp(18px, 5vw, 72px) 62px;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 24%, rgba(244, 123, 104, 0.28), transparent 26%),
    linear-gradient(90deg, rgba(67, 9, 19, 0.84), rgba(111, 21, 35, 0.46) 56%, rgba(111, 21, 35, 0.2)),
    url("assets/hero-salon.png") center/cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  max-width: 870px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd5cd;
}

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

h1 {
  max-width: 870px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 98px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.7vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions,
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-contact {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.hero-contact span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.button {
  padding: 0 22px;
}

.button.primary {
  color: var(--berry);
  background: var(--cream);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.intro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intro div {
  min-height: 138px;
  padding: 28px clamp(18px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.intro div:last-child {
  border-right: 0;
}

.intro strong {
  display: block;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
}

.intro span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.reach-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, var(--accent), var(--berry));
  color: var(--white);
}

.reach-band p {
  margin: 0 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.reach-band a {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.reach-band span {
  max-width: 520px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.split-section,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.check-list,
.package-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.package-card li {
  position: relative;
  margin: 12px 0;
  padding-left: 27px;
  color: var(--muted);
  line-height: 1.45;
}

.check-list li::before,
.package-card li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(111, 21, 35, 0.14);
}

.image-stack img:last-child {
  height: 390px;
}

.services,
.packages,
.testimonials {
  padding: clamp(70px, 9vw, 115px) clamp(18px, 5vw, 72px);
}

.services {
  background:
    linear-gradient(180deg, var(--soft), var(--paper));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.service-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article,
.package-card,
.quote,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid article {
  min-height: 235px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 33, 63, 0.38);
  box-shadow: 0 20px 38px rgba(111, 21, 35, 0.1);
}

.service-grid span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.service-grid p,
.package-card p,
.quote p {
  color: var(--muted);
  line-height: 1.65;
}

.package-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 30px;
}

.package-kicker {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--accent), var(--berry));
  border-color: transparent;
  box-shadow: 0 28px 56px rgba(216, 33, 63, 0.2);
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.package-card.featured .package-kicker {
  color: var(--blush);
}

.package-card a {
  margin-top: auto;
  color: var(--white);
  background: var(--berry);
}

.package-card.featured a {
  color: var(--berry);
  background: var(--cream);
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 0;
}

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

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background: var(--berry);
}

.quote {
  padding: clamp(26px, 5vw, 48px);
}

.quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.quote strong {
  display: block;
  color: var(--accent-dark);
}

.contact-quote strong {
  color: var(--berry);
}

.inline-social {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact {
  background: var(--paper);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 900;
}

.contact-list a {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: 0 20px 44px rgba(111, 21, 35, 0.1);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(216, 33, 63, 0.14);
  border-color: var(--accent);
}

.contact-form button {
  width: 100%;
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--berry));
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(216, 33, 63, 0.28);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

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

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1280px) {
  .header-actions {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 980px) {
  .intro,
  .service-grid,
  .package-grid,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .image-stack img {
    height: 430px;
  }

  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: 290px;
  }

  .brand-mark {
    width: 280px;
    height: 80px;
    min-height: 80px;
  }

  .brand-mark img {
    height: 100%;
  }
}

@media (max-width: 720px) {
  .top-strip {
    gap: 6px 12px;
    padding: 7px 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .top-strip span:last-child {
    display: none;
  }

  .site-header {
    position: sticky;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 6px 12px 10px;
  }

  .brand {
    min-width: 0;
    justify-content: center;
    width: 100%;
  }

  .brand-mark {
    width: min(360px, 94vw);
    height: 138px;
    min-height: 138px;
    margin: 0 auto;
  }

  .brand-mark img {
    height: 100%;
    max-width: 100%;
    filter: saturate(1.12) contrast(1.08) drop-shadow(0 8px 14px rgba(111, 21, 35, 0.16));
  }

  .header-actions {
    justify-content: stretch;
  }

  .header-actions a {
    flex: 1;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    width: 100%;
    overflow: visible;
    justify-content: stretch;
    padding: 4px;
    margin-top: -6px;
    border-radius: 12px;
  }

  .main-nav a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 7px 4px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }

  .hero {
    min-height: 560px;
    align-items: center;
    padding: 54px 16px 38px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(67, 9, 19, 0.8), rgba(111, 21, 35, 0.56)),
      url("assets/hero-salon.png") center/cover;
  }

  h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions,
  .hero-contact {
    gap: 8px;
  }

  .button,
  .hero-contact span {
    width: 100%;
  }

  .hero-contact span {
    padding: 9px 11px;
    font-size: 13px;
  }

  .intro,
  .package-grid,
  .testimonials,
  .gallery {
    grid-template-columns: 1fr;
  }

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

  .intro div {
    min-height: 98px;
    padding: 20px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro strong {
    font-size: 30px;
  }

  .intro span {
    font-size: 13px;
    line-height: 1.35;
  }

  .reach-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 14px;
    text-align: center;
  }

  .reach-band p {
    margin: 0;
    font-size: 20px;
  }

  .reach-band a,
  .reach-band span {
    width: 100%;
    max-width: none;
  }

  .split-section,
  .contact,
  .services,
  .packages,
  .testimonials {
    padding: 56px 16px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

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

  .service-grid article,
  .package-card {
    min-height: 0;
    padding: 22px;
  }

  .service-grid span {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    font-size: 18px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:last-child,
  .gallery img {
    height: 330px;
  }

  .contact-list a {
    overflow-wrap: anywhere;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 84px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .social-link {
    display: none;
  }

  .floating-contact {
    right: 12px;
    left: 12px;
  }

  .brand-mark {
    width: min(330px, 94vw);
    height: 126px;
    min-height: 126px;
  }

  .brand-mark img {
    height: 100%;
  }

  .main-nav a {
    font-size: 11px;
  }

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