:root {
  --cream: #f8f3ea;
  --ivory: #fffaf1;
  --beige: #e7d8c6;
  --warm-beige: #c8ad8d;
  --gold: #c8aa6a;
  --soft-gold: #d8c38b;
  --black: #111111;
  --charcoal: #28231f;
  --muted: #5f574f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 20, 18, 0.12);
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  font-family: "Lora", Georgia, serif;
  line-height: 1.7;
  background:
    radial-gradient(ellipse at 12% 16%, rgba(255, 255, 255, 0.82) 0 15%, transparent 35%),
    radial-gradient(ellipse at 82% 10%, rgba(200, 170, 106, 0.13) 0 9%, transparent 32%),
    radial-gradient(ellipse at 58% 72%, rgba(231, 216, 198, 0.34) 0 14%, transparent 36%),
    linear-gradient(135deg, #fffaf4 0%, var(--cream) 44%, #fcf7ef 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(108deg, transparent 0 29%, rgba(231, 216, 198, 0.22) 31%, rgba(255, 255, 255, 0.34) 36%, transparent 42%),
    linear-gradient(132deg, transparent 0 47%, rgba(200, 170, 106, 0.09) 49%, rgba(255, 255, 255, 0.22) 52%, transparent 57%),
    linear-gradient(26deg, transparent 0 62%, rgba(180, 180, 172, 0.12) 64%, transparent 72%);
  opacity: 0.86;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(255, 250, 241, 0.92);
  border-bottom: 1px solid rgba(185, 148, 87, 0.32);
  backdrop-filter: blur(18px);
}

.logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-mark,
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--black);
  text-align: center;
}

.hair-by,
.section-kicker,
.site-nav,
.button,
.price-column h3,
.booking-title {
  font-family: "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hair-by {
  display: block;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.35em;
}

.annie-script {
  display: block;
  color: var(--black);
  font-family: "Alex Brush", cursive;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.14;
  text-transform: none;
  transform: skewX(-5deg) rotate(-1.5deg);
  transform-origin: center;
}

.script-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.script-wrap::before,
.script-wrap::after {
  content: "";
  position: absolute;
  top: 52%;
  z-index: -1;
  width: clamp(38px, 8vw, 132px);
  height: clamp(11px, 1.6vw, 22px);
  border-top: 1.4px solid var(--black);
  opacity: 0.9;
}

.script-wrap::before {
  right: calc(100% - 18px);
  border-radius: 100% 0 0 0;
  transform: rotate(-8deg);
}

.script-wrap::after {
  left: calc(100% - 18px);
  border-radius: 0 100% 0 0;
  transform: rotate(5deg);
}

.logo-mark {
  min-width: 132px;
  gap: 6px;
}

.logo-mark .hair-by {
  font-size: clamp(0.62rem, 0.86vw, 0.76rem);
}

.logo-mark .annie-script {
  font-size: clamp(2.25rem, 3.25vw, 3.45rem);
}

.logo-mark .script-wrap::before,
.logo-mark .script-wrap::after {
  width: clamp(18px, 2.2vw, 34px);
  height: 8px;
  border-top-width: 1px;
}

.logo-mark .script-wrap::before {
  right: calc(100% - 8px);
}

.logo-mark .script-wrap::after {
  left: calc(100% - 8px);
}

.hero-brand {
  width: min(100%, 700px);
  gap: clamp(14px, 2vw, 24px);
}

.hero-brand .hair-by {
  font-size: clamp(0.98rem, 1.7vw, 1.35rem);
}

.hero-brand .annie-script {
  font-size: clamp(5.8rem, 13vw, 11rem);
}

.site-nav {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(185, 148, 87, 0.42);
  border-radius: 4px;
  background: var(--ivory);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(82px, 10vw, 136px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(ellipse at 14% 18%, rgba(255, 255, 255, 0.9) 0 15%, transparent 46%),
    radial-gradient(ellipse at 86% 18%, rgba(200, 170, 106, 0.13) 0 8%, transparent 32%),
    radial-gradient(ellipse at 78% 84%, rgba(200, 170, 106, 0.12) 0 9%, transparent 34%),
    radial-gradient(ellipse at 34% 78%, rgba(180, 180, 172, 0.1) 0 10%, transparent 38%),
    linear-gradient(135deg, #fffbf5 0%, var(--cream) 46%, #fbf6ee 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(104deg, transparent 0 17%, rgba(255, 255, 255, 0.56) 20%, rgba(231, 216, 198, 0.3) 27%, transparent 35%),
    linear-gradient(118deg, transparent 0 38%, rgba(178, 176, 166, 0.11) 42%, rgba(255, 255, 255, 0.26) 47%, transparent 55%),
    linear-gradient(132deg, transparent 0 67%, rgba(200, 170, 106, 0.16) 69%, rgba(255, 255, 255, 0.28) 74%, transparent 82%);
  filter: blur(0.35px);
  opacity: 0.88;
}

.hero::after {
  background:
    radial-gradient(ellipse at 4% 38%, rgba(200, 170, 106, 0.16) 0 6%, transparent 23%),
    radial-gradient(ellipse at 98% 72%, rgba(200, 170, 106, 0.15) 0 7%, transparent 28%),
    linear-gradient(25deg, transparent 0 49%, rgba(200, 170, 106, 0.12) 50%, rgba(255, 255, 255, 0.18) 53%, transparent 59%);
  opacity: 0.84;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  color: var(--black);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  line-height: 1.08;
}

h1 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  margin: 0;
}

h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.65rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-tagline {
  max-width: 600px;
  margin: clamp(10px, 1.8vw, 18px) 0 0;
  color: var(--charcoal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero p:not(.hero-tagline) {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.gold-rule {
  display: block;
  width: 142px;
  height: 1px;
  margin: 18px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-rule.center {
  margin-right: auto;
  margin-left: auto;
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.button.secondary {
  border-color: rgba(185, 148, 87, 0.56);
  color: var(--black);
  background: rgba(255, 250, 241, 0.58);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(215, 189, 128, 0.18);
}

.whatsapp-button {
  width: 100%;
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 48px);
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 800px;
}

.intro {
  text-align: center;
}

.intro p:last-child,
.contact p,
.booking-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  max-width: none;
  text-align: center;
}

.services {
  background: rgba(255, 250, 241, 0.68);
  border-top: 1px solid rgba(185, 148, 87, 0.24);
  border-bottom: 1px solid rgba(185, 148, 87, 0.24);
}

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

.service-card,
.booking-card {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(185, 148, 87, 0.34);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--shadow);
}

.service-card::before,
.booking-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-bottom: 20px;
  background: var(--gold);
}

.service-card p {
  color: var(--muted);
}

.price-list {
  background: rgba(23, 20, 18, 0.03);
}

.price-panel {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(185, 148, 87, 0.46);
  background:
    linear-gradient(rgba(255, 250, 241, 0.88), rgba(255, 250, 241, 0.88)),
    radial-gradient(circle at 12% 20%, rgba(215, 189, 128, 0.28), transparent 30%),
    linear-gradient(135deg, #fffaf1, #eadcc8);
  box-shadow: var(--shadow);
}

.price-panel::before,
.price-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(185, 148, 87, 0.42);
}

.price-panel::before {
  inset: 12px;
}

.price-panel::after {
  inset: 18px;
  border-color: rgba(185, 148, 87, 0.18);
}

.price-panel > * {
  position: relative;
  z-index: 1;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 42px);
  margin-top: 42px;
}

.price-column h3 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  line-height: 1.6;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(185, 148, 87, 0.24);
}

.price-row span,
.price-row strong {
  background: transparent;
}

.price-row strong {
  color: var(--black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
  white-space: nowrap;
}

.price-row.quote {
  grid-template-columns: 1fr;
  gap: 4px;
}

.price-row.quote strong {
  text-align: left;
}

.follow-work {
  background:
    radial-gradient(ellipse at 12% 18%, rgba(255, 255, 255, 0.78) 0 16%, transparent 44%),
    radial-gradient(ellipse at 88% 76%, rgba(200, 170, 106, 0.12) 0 8%, transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 241, 0.76), rgba(231, 216, 198, 0.42));
}

.follow-panel {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(200, 170, 106, 0.42);
  background:
    linear-gradient(rgba(255, 250, 241, 0.86), rgba(255, 250, 241, 0.9)),
    linear-gradient(126deg, transparent 0 30%, rgba(231, 216, 198, 0.3) 33%, transparent 45%),
    linear-gradient(28deg, transparent 0 62%, rgba(200, 170, 106, 0.1) 64%, transparent 74%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.follow-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 170, 106, 0.22);
  pointer-events: none;
}

.follow-panel > * {
  position: relative;
  z-index: 1;
}

.follow-panel .section-heading p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.follow-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.follow-card {
  display: grid;
  min-height: 152px;
  align-content: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(200, 170, 106, 0.38);
  background: rgba(255, 250, 241, 0.72);
  color: var(--black);
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.follow-card span {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.follow-card strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.follow-card:hover,
.follow-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.52);
  background: rgba(255, 255, 255, 0.82);
}

.primary-follow {
  background: var(--black);
  color: var(--cream);
}

.primary-follow:hover,
.primary-follow:focus-visible {
  background: var(--gold);
  color: var(--black);
}

.contact {
  background: rgba(255, 250, 241, 0.72);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details address {
  color: var(--muted);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.02em;
}

.booking-card {
  min-height: 0;
}

.booking-title {
  margin-top: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 48px);
  background: var(--black);
  color: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-toggle {
    justify-self: end;
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(185, 148, 87, 0.38);
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }

  .service-grid,
  .price-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .follow-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .logo-mark {
    min-width: 112px;
    gap: 2px;
  }

  .logo-mark .script-wrap::before,
  .logo-mark .script-wrap::after {
    width: 18px;
  }

  .logo-mark .hair-by {
    font-size: 0.58rem;
  }

  .logo-mark .annie-script {
    font-size: 2.35rem;
  }

  .hero-brand .hair-by {
    font-size: 0.86rem;
  }

  .hero-brand .annie-script {
    font-size: clamp(4.2rem, 20vw, 6.2rem);
  }

  .hero-brand .script-wrap::before,
  .hero-brand .script-wrap::after {
    width: clamp(22px, 8vw, 42px);
    height: 10px;
  }

  .hero-brand .script-wrap::before {
    right: calc(100% - 10px);
  }

  .hero-brand .script-wrap::after {
    left: calc(100% - 10px);
  }

  .hero {
    min-height: 74vh;
    padding: 72px 18px;
  }

  h2 {
    font-size: 1.45rem;
    letter-spacing: 0.1em;
  }

  .hero-tagline {
    margin-top: -2px;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .price-panel {
    padding: 26px 20px;
  }

  .price-panel::before {
    inset: 9px;
  }

  .price-panel::after {
    display: none;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .follow-panel {
    padding: 26px 20px;
  }

  .follow-panel::before {
    inset: 9px;
  }

  .service-card {
    min-height: 0;
    padding: 24px;
  }
}

@media (max-width: 390px) {
  .logo-mark .script-wrap::before,
  .logo-mark .script-wrap::after {
    display: none;
  }

  .hero-brand .script-wrap::before,
  .hero-brand .script-wrap::after {
    width: 18px;
  }
}
