@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

:root {
  --heading-font: Futura, "Futura PT", "Avenir Next", Avenir, Montserrat, sans-serif;
  --body-font: "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

:root {
  --coffee-bean: #1c0d14;
  --vintage-berry: #7f3959;
  --cotton-candy: #fc9ca7;
  --powder-blush: #fcb1a6;
  --almond-silk: #ffdccc;
  --floral-white: #fff9ec;
  --paper: #fffdf7;
  --line: rgba(28, 13, 20, 0.58);
  --muted: rgba(28, 13, 20, 0.68);
  --shadow: 0 18px 46px rgba(28, 13, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--floral-white);
  color: var(--coffee-bean);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.72;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 300;
}

.site-shell {
  width: min(930px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  padding-top: 28px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 26px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  gap: 2px;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.header-contact {
  text-align: right;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.header-contact strong {
  display: block;
  color: var(--coffee-bean);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-wrap {
  border-top: 2px solid var(--coffee-bean);
  border-bottom: 2px solid var(--coffee-bean);
  position: relative;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border: 0;
  background: transparent;
  color: var(--coffee-bean);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 64px;
}

.main-nav a {
  padding: 18px 12px;
  color: var(--coffee-bean);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 300;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: var(--vintage-berry);
}

.hero {
  margin-top: 14px;
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--coffee-bean);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(rgba(28, 13, 20, 0.22), rgba(28, 13, 20, 0.5)),
    var(--hero-image) center / cover;
  filter: saturate(0.9);
}

.hero-frame {
  position: relative;
  width: min(780px, calc(100% - 72px));
  min-height: 230px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 249, 236, 0.86);
  color: var(--floral-white);
  text-align: center;
  padding: 40px 24px;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: rgba(255, 249, 236, 0.82);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 74px);
  color: var(--floral-white);
}

.scroll-arrow {
  position: absolute;
  bottom: 48px;
  left: 50%;
  width: 58px;
  height: 44px;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  color: var(--floral-white);
  cursor: pointer;
}

.scroll-arrow::before,
.scroll-arrow::after {
  position: absolute;
  top: 18px;
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.scroll-arrow::before {
  left: 6px;
  transform: rotate(32deg);
}

.scroll-arrow::after {
  right: 6px;
  transform: rotate(-32deg);
}

.section {
  padding: 82px 42px;
  border-top: 2px solid var(--line);
}

.contact-section {
  margin-top: 28px;
  padding-top: 96px;
}

.section:first-child {
  border-top: 0;
}

.section-title {
  margin-bottom: 40px;
  font-size: clamp(34px, 4vw, 48px);
  color: rgba(28, 13, 20, 0.78);
}

.page-title {
  padding-top: 44px;
  border-top: 2px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 74px;
  align-items: start;
}

.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
}

.portrait,
.wide-image,
.contact-image,
.category-image {
  width: 100%;
  object-fit: cover;
  background: var(--almond-silk);
}

.portrait {
  aspect-ratio: 0.78;
  min-height: 430px;
}

.wide-image {
  aspect-ratio: 2.4;
  margin-bottom: 42px;
}

.link-more,
.back-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--coffee-bean);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.link-more:hover,
.link-more:focus,
.back-link:hover,
.back-link:focus {
  color: var(--vintage-berry);
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 58px;
}

.specialty-card h3,
.service-detail h2 {
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--coffee-bean);
  color: rgba(28, 13, 20, 0.74);
  font-size: 26px;
  font-style: normal;
}

.specialty-card p {
  font-size: 14px;
}

.alternate-services {
  padding-top: 66px;
}

.alternate-services h2 {
  margin-bottom: 30px;
  color: rgba(28, 13, 20, 0.78);
  font-size: clamp(28px, 3vw, 38px);
}

.service-category {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 24px;
  margin-bottom: 34px;
  --category-accent: var(--powder-blush);
}

.adult-services {
  --category-accent: var(--powder-blush);
}

.youth-services {
  --category-accent: var(--cotton-candy);
}

.category-image {
  min-height: 236px;
  height: 100%;
  filter: brightness(0.72) saturate(0.82);
}

.category-panel {
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--category-accent);
}

.category-panel h3 {
  position: absolute;
  inset: auto 24px 26px 24px;
  color: var(--floral-white);
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 300;
  line-height: 1.16;
}

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

.service-tile {
  min-height: 96px;
  padding: 20px 24px;
  border-top: 6px solid var(--category-accent);
  background: var(--paper);
  color: var(--coffee-bean);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.34;
  box-shadow: 0 10px 28px rgba(28, 13, 20, 0.055);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-tile:hover,
.service-tile:focus {
  border-top-color: var(--vintage-berry);
  color: var(--vintage-berry);
  transform: translateY(-2px);
}

.page-hero {
  margin-top: 58px;
}

.banner {
  margin-top: 14px;
  padding: 62px 46px;
  background: var(--coffee-bean);
  color: var(--floral-white);
}

.banner h1 {
  max-width: 620px;
  font-size: clamp(38px, 5vw, 58px);
}

.page-content {
  padding: 68px 42px 72px;
}

.service-list {
  display: grid;
  gap: 62px;
}

.service-detail {
  border-bottom: 2px solid var(--line);
  padding-bottom: 44px;
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail p {
  max-width: 820px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.tag,
.price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--coffee-bean);
  color: var(--coffee-bean);
  background: transparent;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.price {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.tag:hover,
.tag:focus,
.price:hover,
.price:focus {
  background: var(--coffee-bean);
  border-color: var(--coffee-bean);
  color: var(--floral-white);
}

.contact-block {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 70px;
}

.contact-image {
  aspect-ratio: 0.82;
}

.contact-details {
  color: var(--muted);
}

.contact-details strong {
  display: block;
  margin-bottom: 18px;
  color: var(--coffee-bean);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  width: fit-content;
  border: 1px solid var(--coffee-bean);
  color: var(--coffee-bean);
  font-family: var(--heading-font);
  font-weight: 400;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.contact-action:hover,
.contact-action:focus {
  background: var(--coffee-bean);
  color: var(--floral-white);
  border-color: var(--coffee-bean);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-link {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--coffee-bean);
  color: var(--coffee-bean);
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.social-link:focus {
  background: var(--vintage-berry);
  color: var(--floral-white);
  border-color: var(--vintage-berry);
}

.placeholder-form {
  margin-top: 34px;
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.field {
  min-height: 42px;
  border-bottom: 2px solid rgba(28, 13, 20, 0.7);
  color: rgba(28, 13, 20, 0.46);
  font-size: 13px;
  font-weight: 300;
}

.message-field {
  min-height: 92px;
}

.submit-note {
  justify-self: end;
  color: var(--muted);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 300;
}

.site-footer {
  margin-top: 72px;
  padding: 46px 20px;
  background: var(--vintage-berry);
  color: var(--floral-white);
  text-align: center;
  font-size: 13px;
}

.site-footer a {
  border-bottom: 1px solid currentColor;
}

.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 820px) {
  .brand-row,
  .two-column,
  .text-columns,
  .service-category,
  .contact-block {
    grid-template-columns: 1fr;
  }

  .brand-row {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .header-contact {
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    min-height: 0;
    padding: 8px 0 18px;
  }

  .menu-open .main-nav {
    display: grid;
  }

  .main-nav a {
    text-align: center;
    padding: 10px 12px;
  }

  .hero {
    min-height: 470px;
  }

  .hero-frame {
    width: min(100% - 36px, 680px);
  }

  .section,
  .page-content {
    padding-left: 0;
    padding-right: 0;
  }

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

  .category-image {
    min-height: 260px;
  }

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

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 26px, 930px);
  }

  .site-header {
    padding-top: 18px;
  }

  .brand-logo {
    width: 74px;
    height: 74px;
  }

  .hero {
    min-height: 430px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .service-tile {
    padding: 24px;
  }
}
