:root {
  --bg: #0b0b0d;
  --bg-soft: #141417;
  --bg-panel: #1b1a1d;
  --text: #ffffff;
  --muted: #d8d0c3;
  --gold: #d6aa4d;
  --gold-light: #f1d48b;
  --gold-deep: #9f7028;
  --line: rgba(214, 170, 77, 0.25);
  --glass: rgba(255, 255, 255, 0.055);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 170, 77, 0.1), transparent 34rem),
    linear-gradient(180deg, #0b0b0d 0%, #111113 48%, #09090a 100%);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
.logo,
.footer-logo {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5.4rem);
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2.7rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

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

.section-padding {
  padding: clamp(64px, 9vw, 104px) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 10, 12, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.logo,
.footer-logo {
  color: var(--gold-light);
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background: rgba(214, 170, 77, 0.12);
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-light);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.promo-banner {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
  color: #17120a;
  padding: 5px 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.25);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  place-items: center;
  padding: clamp(96px, 16vw, 154px) 20px;
  text-align: center;
  background:
    linear-gradient(rgba(7, 7, 8, 0.34), rgba(7, 7, 8, 0.88)),
    url("images/hero.jpg") center / cover;
}

.hero-content {
  max-width: 940px;
  padding-top: 24px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tagline {
  margin-top: 18px;
  color: #f5efe4;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #120f0a;
}

.btn-secondary {
  background: var(--text);
  color: #111111;
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.035);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.align-start {
  align-items: start;
}

.intro p:not(.eyebrow),
.page-hero p,
.info-panel p,
.contact-card p,
.service-card p,
.section-heading p,
.mini-service p,
.cta-panel p,
.location-preview p,
.appointment-copy p,
.pricing-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.intro img,
.info-panel img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-choose {
  background:
    linear-gradient(180deg, rgba(214, 170, 77, 0.06), rgba(255, 255, 255, 0.025)),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.feature-grid article,
.service-card,
.mini-service,
.pricing-card,
.location-card,
.cta-panel,
.visit-notes article,
.booking-form,
.info-panel,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.feature-grid article {
  padding: clamp(22px, 3vw, 32px);
}

.feature-grid p {
  color: var(--muted);
}

.featured-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mini-service {
  overflow: hidden;
}

.mini-service img {
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.mini-service div {
  padding: 24px;
}

.mini-service h3 {
  margin-bottom: 8px;
}

.page-hero {
  padding: clamp(90px, 13vw, 140px) 0 clamp(70px, 9vw, 104px);
  background:
    linear-gradient(rgba(8, 8, 10, 0.48), rgba(8, 8, 10, 0.9)),
    url("images/hero.jpg") center / cover;
}

.services-hero {
  background-image:
    linear-gradient(rgba(13, 13, 15, 0.52), rgba(13, 13, 15, 0.86)),
    url("images/threading.jpg");
}

.appointments-hero {
  background-image:
    linear-gradient(rgba(13, 13, 15, 0.52), rgba(13, 13, 15, 0.86)),
    url("images/appointments.jpg");
}

.contact-hero {
  background-image:
    linear-gradient(rgba(13, 13, 15, 0.52), rgba(13, 13, 15, 0.86)),
    url("images/hero.jpg");
}

.page-hero .container {
  max-width: 760px;
}

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

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

.pricing-card {
  overflow: hidden;
}

.pricing-card.spotlight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: stretch;
}

.pricing-card img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.pricing-content {
  padding: clamp(24px, 4vw, 38px);
}

.pricing-content h2 {
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(214, 170, 77, 0.22);
}

.price-row:first-of-type {
  margin-top: 18px;
}

.price-row span {
  color: var(--muted);
  font-weight: 300;
}

.price-row strong {
  color: var(--gold-light);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

.service-card {
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card h2 {
  font-size: 2rem;
}

.service-card span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-light);
  font-weight: 400;
}

.cta-band {
  padding: 64px 0;
  background: linear-gradient(90deg, #111112, #231b0f, #111112);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.appointment-cta {
  background:
    linear-gradient(rgba(11, 11, 13, 0.18), rgba(11, 11, 13, 0.92)),
    url("images/appointments.jpg") center / cover;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  backdrop-filter: blur(12px);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.location-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(rgba(12, 12, 14, 0.6), rgba(12, 12, 14, 0.84)),
    repeating-linear-gradient(45deg, rgba(214, 170, 77, 0.16) 0 1px, transparent 1px 18px),
    #181719;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  max-width: 680px;
  color: var(--muted);
}

.booking-form,
.contact-form,
.contact-card,
.info-panel,
.map-card {
  padding: clamp(24px, 4vw, 34px);
}

.appointment-copy {
  position: sticky;
  top: 104px;
}

.visit-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.visit-notes article {
  padding: 22px;
}

.visit-notes h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-status {
  min-height: 1.5em;
  margin-top: 14px;
  color: var(--gold-light);
  font-weight: 400;
}

.info-panel img {
  margin-bottom: 24px;
}

.info-panel .btn,
.contact-card .btn {
  margin-top: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-card address,
.contact-card p {
  margin-top: 18px;
}

.contact-card a,
.site-footer a {
  color: var(--gold-light);
}

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

.social-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: #120f0a;
  background: var(--gold-light);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-card iframe {
  flex: 1;
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: var(--radius);
}

.location-map {
  min-height: 340px;
  border-color: rgba(214, 170, 77, 0.42);
}

.location-map iframe {
  min-height: 300px;
}

.map-directions {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: 56px 0 26px;
  background: #09090a;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 32px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer address {
  color: var(--muted);
}

.site-footer li + li {
  margin-top: 8px;
}

.copyright {
  width: min(1120px, calc(100% - 40px));
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(214, 170, 77, 0.16);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(13, 13, 15, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    border-radius: var(--radius);
  }

  .two-column,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-grid,
  .featured-services,
  .service-menu {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.spotlight,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .appointment-copy {
    position: static;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .navbar {
    width: min(100% - 24px, 1180px);
  }

  .logo {
    max-width: 235px;
    white-space: normal;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero {
    min-height: calc(100vh - 130px);
    padding: 76px 14px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
    letter-spacing: 0.09em;
  }

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

  .feature-grid,
  .service-grid,
  .featured-services,
  .service-menu,
  .visit-notes {
    grid-template-columns: 1fr;
  }

  .pricing-card.spotlight {
    display: block;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .price-row strong {
    text-align: left;
    white-space: normal;
  }

  .page-hero {
    padding: 86px 0 72px;
  }

  .booking-form,
  .contact-form,
  .contact-card,
  .info-panel,
  .feature-grid article,
  .cta-panel,
  .location-card,
  .map-card {
    padding: 22px;
  }

  .map-card iframe {
    min-height: 320px;
  }
}

.services-page {
  background:
    radial-gradient(circle at top left, rgba(214, 170, 77, 0.1), transparent 34rem),
    linear-gradient(180deg, #0b0b0d 0%, #111113 48%, #09090a 100%);
  color: var(--text);
}

.services-page .promo-banner {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
  color: #17120a;
  padding: 5px 18px;
  font-size: 12px;
  line-height: 1.4;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.25);
}

.original-menu {
  background: transparent;
  padding: clamp(64px, 9vw, 104px) 0;
}

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

.original-menu h1 {
  margin-bottom: clamp(34px, 6vw, 58px);
  color: var(--gold-light);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-align: center;
}

.menu-category {
  margin-bottom: 28px;
  border: 1px solid rgba(214, 170, 77, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), #1e1e1e;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.menu-category:hover {
  border-color: rgba(241, 212, 139, 0.58);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(214, 170, 77, 0.12);
  transform: translateY(-4px);
}

.menu-category-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(214, 170, 77, 0.24);
}

.menu-category-intro > div {
  flex: 1;
  min-width: 0;
}

.menu-category h2 {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-category-intro p {
  max-width: 940px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  border: 1px solid rgba(214, 170, 77, 0.14);
  border-radius: var(--radius);
  background: rgba(11, 11, 13, 0.5);
  padding: 18px 20px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.menu-item:hover {
  border-color: rgba(241, 212, 139, 0.5);
  background: rgba(214, 170, 77, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), 0 0 18px rgba(214, 170, 77, 0.1);
  transform: translateY(-3px);
}

.menu-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: none;
}

.menu-item p {
  color: var(--gold-light);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.menu-booking {
  flex: 0 0 auto;
  width: 190px;
  margin-top: 2px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.menu-booking:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34), 0 0 22px rgba(214, 170, 77, 0.18);
}

.menu-footnote {
  max-width: 820px;
  margin: 34px auto 0;
  border-top: 1px solid rgba(214, 170, 77, 0.24);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  padding-top: 24px;
  text-align: center;
}

@media (max-width: 640px) {
  .services-page .promo-banner {
    font-size: 11px;
    line-height: 1.35;
  }

  .original-menu {
    padding: 54px 0 66px;
  }

  .menu-container {
    width: min(100% - 28px, 1120px);
  }

  .original-menu h1 {
    margin-bottom: 32px;
  }

  .menu-category {
    margin-bottom: 20px;
    padding: 22px;
  }

  .menu-category-intro {
    flex-direction: column;
    gap: 18px;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: auto;
    padding: 16px;
  }

  .menu-booking {
    width: 100%;
  }
}
