:root {
  --ink: #211a18;
  --ink-soft: #554942;
  --paper: #fbf7f0;
  --paper-deep: #f1e6d7;
  --sand: #dfcbb3;
  --clay: #bd7b43;
  --clay-dark: #98572e;
  --rose: #c77a72;
  --rose-pale: #edd1ca;
  --olive: #5d695d;
  --line: rgba(33, 26, 24, 0.16);
  --white: #fffdf9;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 20px 50px rgba(52, 33, 22, 0.12);
  --radius: 0.35rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.5; }
body.menu-open { overflow: hidden; }
main { overflow: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--paper); background: var(--clay-dark); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid #b45f2b;
  outline-offset: 4px;
}

.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 0.75rem 1rem; background: var(--white); color: var(--ink); transform: translateY(-180%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.utility-bar { min-height: 28px; display: flex; align-items: center; justify-content: center; gap: .55rem; padding: 6px 20px; background: var(--ink); color: rgba(255,255,255,.86); font-size: 10px; font-weight: 700; letter-spacing: .13em; line-height: 1.3; text-align: center; text-transform: uppercase; }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(251,247,240,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-shell { width: min(1280px, calc(100% - 80px)); min-height: 82px; margin: 0 auto; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.brand-mark { display: grid; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; place-items: center; font-family: var(--serif); font-size: 22px; line-height: 1; }
.brand-words { display: grid; gap: 0; line-height: 1; }
.brand-words strong { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: -.04em; }
.brand-words small { margin-top: 4px; font-size: 8px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); margin-left: auto; }
.primary-nav a, .header-phone { position: relative; color: var(--ink-soft); font-size: 12px; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--clay); transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--ink); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-phone { margin-left: 18px; color: var(--ink); }
.header-phone::before { content: ""; display: inline-block; width: 6px; height: 6px; margin: 0 7px 2px 0; border-radius: 50%; background: var(--clay); }
.menu-toggle { display: none; border: 0; padding: 6px 0 6px 12px; background: transparent; color: var(--ink); }
.menu-toggle-label { margin-right: 10px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-toggle-lines { display: inline-block; width: 20px; height: 12px; border-top: 1.5px solid; border-bottom: 1.5px solid; vertical-align: -2px; }

.mobile-menu { position: fixed; z-index: 70; inset: 0; display: grid; grid-template-rows: auto 1fr auto; padding: 28px max(24px, calc((100vw - 600px) / 2)); background: var(--ink); color: var(--paper); opacity: 0; pointer-events: none; transform: translateX(100%); transition: opacity .28s ease, transform .28s cubic-bezier(.2,.8,.2,1); }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateX(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.menu-overline { color: var(--sand); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.menu-close { border: 0; padding: 4px; background: transparent; color: var(--paper); font-family: var(--serif); font-size: 19px; }
.menu-close span { margin-left: 4px; color: var(--clay); font-size: 27px; vertical-align: -2px; }
.mobile-menu nav { align-self: center; }
.mobile-menu nav a { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-family: var(--serif); font-size: clamp(29px, 8vw, 48px); line-height: 1; }
.mobile-menu nav a:first-child { border-top: 1px solid rgba(255,255,255,.16); }
.mobile-menu nav span { color: var(--clay); font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.mobile-menu nav b { color: var(--clay); font-family: var(--sans); font-size: 20px; font-weight: 400; }
.mobile-menu-contact { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); }
.mobile-menu-contact p { margin: 0 0 16px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.65; }

.section { width: min(1200px, calc(100% - 96px)); margin-inline: auto; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 19px; color: var(--clay-dark); font-size: 10px; font-weight: 800; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.055em; }
h1 { margin-bottom: 27px; font-size: clamp(49px, 6.1vw, 95px); line-height: .94; }
h2 { margin-bottom: 0; font-size: clamp(42px, 4.25vw, 68px); line-height: .98; }
h3 { font-size: clamp(28px, 2.45vw, 42px); line-height: 1; }
h1 em, h2 em { color: var(--clay); font-weight: 400; }
.hero-lede { max-width: 485px; margin-bottom: 31px; color: var(--ink-soft); font-size: 17px; line-height: 1.62; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 14px; padding: 13px 21px; border: 1px solid transparent; border-radius: 999px; font-size: 12px; font-weight: 750; line-height: 1; text-align: center; transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover { background: var(--clay-dark); }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--sand); }
.button-outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--paper); }
.desktop-call-link { display: inline-flex; align-items: center; gap: 10px; padding: 6px 0; color: var(--ink); font-size: 12px; font-weight: 800; line-height: 1; text-decoration: underline; text-decoration-color: rgba(177,91,64,.58); text-decoration-thickness: 1px; text-underline-offset: .34em; }
.desktop-call-link span { color: var(--clay); font-size: 18px; line-height: .5; transition: transform .2s ease; }
.desktop-call-link:hover { transform: translateY(-1px); text-decoration-color: currentColor; }
.desktop-call-link:hover span { transform: translateX(4px); }
.desktop-call-link--light { color: var(--paper); text-decoration-color: rgba(255,255,255,.62); }
.desktop-call-link--light span { color: var(--sand); }
.text-link, .panel-link, .row-link { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; }
.text-link span, .panel-link span, .row-link span { color: var(--clay); font-size: 18px; line-height: .5; transition: transform .2s ease; }
.text-link:hover span, .panel-link:hover span, .row-link:hover span { transform: translateX(4px); }

/* Home */
.hero { width: min(1280px, calc(100% - 80px)); margin: 0 auto; }
.hero-home { display: grid; grid-template-columns: minmax(360px, .92fr) minmax(450px, 1.08fr); align-items: center; gap: clamp(40px, 8vw, 140px); min-height: 630px; padding: clamp(64px, 8vw, 104px) 0 84px; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 { max-width: 660px; }
.hero-media { position: relative; min-height: 480px; }
.image-frame { overflow: hidden; }
.stock-disclosure { display: none; }
.hero-image { position: absolute; z-index: 1; top: 0; right: 0; width: min(100%, 625px); height: min(540px, 42vw); border-radius: 3px 3px 63px 3px; box-shadow: var(--shadow); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
.hero-crescent { position: absolute; z-index: 0; right: min(15vw, 200px); bottom: 1px; width: clamp(180px, 20vw, 280px); height: clamp(180px, 20vw, 280px); border-radius: 50%; background: var(--clay); }
.hero-note { position: absolute; z-index: 2; right: -20px; bottom: 22px; width: 218px; padding: 17px 20px; border-radius: 3px; background: var(--paper); box-shadow: 0 16px 35px rgba(52,33,22,.15); }
.hero-note span { display: block; margin-bottom: 4px; color: var(--clay-dark); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-note strong { font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.05; }
.hero-proof { display: flex; align-items: center; gap: 19px; margin-top: clamp(60px, 5vw, 76px); color: var(--ink-soft); font-size: 11px; }
.rating-link { display: flex; align-items: center; gap: 10px; transition: opacity .2s ease; }
.rating-link:hover { opacity: .68; }
.rating-link strong { color: var(--ink); }
.stars { color: var(--clay); font-size: 12px; letter-spacing: .07em; }
.proof-rule { width: 1px; height: 31px; background: var(--line); }
.hero-proof p { margin: 0; line-height: 1.45; }

.service-marquee { overflow: hidden; padding: 21px 0; background: var(--paper-deep); border-block: 1px solid rgba(108,70,38,.08); }
.service-marquee-track { display: flex; width: max-content; align-items: center; gap: 25px; padding-left: 25px; color: var(--ink); animation: ticker 28s linear infinite; }
.service-marquee span { font-family: var(--serif); font-size: 23px; letter-spacing: -.025em; white-space: nowrap; }
.service-marquee i { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }
@keyframes ticker { to { transform: translateX(-50%); } }

.intro-grid { display: grid; grid-template-columns: 1.1fr .7fr; gap: clamp(50px, 13vw, 200px); padding: clamp(90px, 11vw, 160px) 0; }
.intro-copy { align-self: end; max-width: 420px; padding-bottom: 7px; }
.intro-copy > p { margin-bottom: 28px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }

.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 450px 450px; overflow: hidden; border-radius: 3px; }
.feature-panel { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(32px, 4.3vw, 65px); }
.feature-panel-clay { background: var(--clay); color: var(--paper); }
.feature-panel-ink { background: var(--ink); color: var(--paper); }
.feature-panel .panel-number { color: rgba(255,255,255,.66); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.feature-panel h3 { margin: 0 0 17px; }
.feature-panel p { max-width: 360px; margin-bottom: 27px; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.65; }
.panel-link { color: var(--paper); }
.panel-link span { color: var(--paper); }
.image-panel { position: relative; min-height: 0; margin: 0; overflow: hidden; }
.image-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.image-panel:hover img { transform: scale(1.035); }
.image-panel figcaption { position: absolute; right: 18px; bottom: 17px; left: 18px; color: var(--white); font-size: 11px; font-weight: 700; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.image-panel figcaption::before { content: ""; display: inline-block; width: 17px; height: 1px; margin: 0 8px 4px 0; background: currentColor; }

.experience-section { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(50px, 10vw, 150px); padding: clamp(100px, 12vw, 170px) 0; }
.experience-copy { max-width: 410px; }
.experience-copy > p:not(.eyebrow) { margin: 28px 0 30px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.experience-image { position: relative; min-height: 466px; margin: 0; }
.experience-image img { width: 100%; height: 466px; object-fit: cover; }
.experience-image figcaption { position: absolute; right: 0; bottom: -28px; width: min(83%, 390px); padding: 19px 21px; background: var(--paper); box-shadow: var(--shadow); color: var(--ink-soft); font-size: 13px; }
.experience-image figcaption span { display: block; margin-bottom: 4px; color: var(--clay-dark); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.visit-band { display: grid; grid-template-columns: 1fr .75fr; gap: 60px; margin-bottom: clamp(90px, 10vw, 130px); padding: clamp(50px, 6vw, 78px); background: var(--paper-deep); }
.visit-band-copy { align-self: end; }
.visit-band-copy > p { max-width: 430px; margin-bottom: 27px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

/* Footer */
.site-footer { background: var(--ink); color: var(--paper); }
.footer-main { display: grid; grid-template-columns: 1fr .8fr 1fr; align-items: center; gap: 40px; width: min(1200px, calc(100% - 96px)); margin: 0 auto; padding: 52px 0; }
.brand-footer { color: var(--paper); }
.footer-message { margin: 0; color: rgba(255,255,255,.68); font-family: var(--serif); font-size: 22px; line-height: 1.15; }
.footer-contact { display: grid; justify-items: end; gap: 10px; font-size: 12px; font-weight: 700; text-align: right; }
.footer-contact a:hover { color: var(--sand); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; width: min(1200px, calc(100% - 96px)); margin: 0 auto; padding: 16px 0 22px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .04em; }
.mobile-quick-actions { display: none; }

/* Page heroes */
.page-hero { display: grid; grid-template-columns: 1fr .42fr; align-items: end; gap: clamp(65px, 12vw, 170px); width: min(1200px, calc(100% - 96px)); min-height: 530px; margin: 0 auto; padding: clamp(85px, 11vw, 150px) 0 clamp(65px, 8vw, 102px); }
.page-hero h1 { max-width: 840px; }
.page-hero-services { background: linear-gradient(108deg, transparent 0 72%, rgba(189,123,67,.12) 72%); }
.hero-aside-card { align-self: center; padding: 37px 35px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.aside-kicker { display: block; margin-bottom: 20px; color: var(--clay-dark); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-aside-card strong { display: block; margin-bottom: 20px; font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.04; letter-spacing: -.04em; }
.hero-aside-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

/* Services */
.service-directory { padding: 0 0 clamp(100px, 12vw, 170px); }
.directory-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 70px; margin-bottom: 47px; }
.directory-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.directory-heading h2 { max-width: 420px; }
.directory-heading > p { max-width: 435px; margin: 12px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 55px minmax(205px, .9fr) minmax(260px, 1fr) auto; align-items: center; gap: 28px; padding: 33px 0; border-bottom: 1px solid var(--line); }
.service-number { color: var(--clay-dark); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.service-row h3 { margin: 0 0 8px; font-size: 33px; }
.service-row p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.service-row ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 12px; }
.service-row li::before { content: "✦"; margin-right: 7px; color: var(--clay); font-size: 9px; }
.row-link { white-space: nowrap; }
.image-copy-split { display: grid; grid-template-columns: .82fr 1fr; align-items: center; gap: clamp(50px, 10vw, 150px); padding-bottom: clamp(110px, 14vw, 185px); }
.split-image { position: relative; height: 550px; margin: 0; border-radius: 130px 3px 3px 3px; box-shadow: var(--shadow); }
.split-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.split-copy { max-width: 440px; }
.split-copy > p:not(.eyebrow) { margin: 27px 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.appointment-path { display: grid; grid-template-columns: .65fr 1fr; gap: clamp(42px, 6vw, 70px); padding: clamp(58px, 7vw, 92px); background: var(--paper-deep); }
.appointment-path h2 { max-width: 440px; line-height: 1.04; }
.appointment-path .eyebrow { margin-bottom: 24px; }
.appointment-path ol { display: grid; min-width: 0; gap: 0; margin: 0; padding: 0; list-style: none; }
.appointment-path li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 21px 0; border-top: 1px solid var(--line); }
.appointment-path li:last-child { border-bottom: 1px solid var(--line); }
.appointment-path li > span { color: var(--clay-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.appointment-path h3 { margin: 0 0 5px; font-size: 25px; }
.appointment-path p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.faq-section { display: grid; grid-template-columns: .7fr 1fr; gap: 85px; padding: clamp(105px, 13vw, 175px) 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; font-family: var(--serif); font-size: 24px; letter-spacing: -.035em; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; color: var(--clay); font-family: var(--sans); font-size: 21px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 620px; margin: -3px 42px 24px 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.closing-banner { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: clamp(60px, 8vw, 105px) max(48px, calc((100% - 1200px) / 2)); background: var(--ink); color: var(--paper); }
.closing-banner .eyebrow { color: var(--sand); }
.closing-banner h2 { max-width: 580px; }

/* Our salon */
.page-hero-salon { background: linear-gradient(90deg, transparent 0 68%, rgba(199,122,114,.17) 68%); }
.story-stamp { align-self: center; padding: 30px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.story-stamp > span, .story-stamp small { color: var(--clay-dark); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.story-stamp p { margin: 18px 0; font-family: var(--serif); font-size: 25px; line-height: 1.08; letter-spacing: -.035em; }
.story-stamp i { display: block; width: 30px; height: 1px; margin-bottom: 16px; background: var(--clay); }
.salon-image-section { position: relative; width: min(1296px, calc(100% - 64px)); margin: 0 auto; }
.salon-wide-image { height: clamp(390px, 47vw, 620px); margin: 0; overflow: hidden; }
.salon-wide-image img { width: 100%; height: 100%; object-fit: cover; }
.salon-image-caption { position: absolute; right: 42px; bottom: -34px; display: grid; grid-template-columns: 28px 1fr; gap: 7px 9px; width: 285px; padding: 20px; background: var(--paper); box-shadow: var(--shadow); }
.salon-image-caption span { grid-row: span 2; color: var(--clay-dark); font-size: 10px; font-weight: 800; }
.salon-image-caption p { margin: 0; font-family: var(--serif); font-size: 19px; line-height: 1.08; }
.salon-image-caption small { color: var(--ink-soft); font-size: 9px; }
.values-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; padding: clamp(125px, 15vw, 200px) 0 clamp(90px, 11vw, 155px); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.values-grid article { padding-top: 17px; border-top: 1px solid var(--line); }
.values-grid span { color: var(--clay-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.values-grid h3 { margin: 22px 0 12px; font-size: 28px; }
.values-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.salon-details { display: grid; grid-template-columns: 1fr .74fr; align-items: center; gap: 100px; padding: clamp(58px, 7vw, 90px); background: var(--paper-deep); }
.salon-details-lede { max-width: 465px; }
.salon-details-lede > p:not(.eyebrow) { margin: 25px 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.hours-card { padding: 29px; background: var(--paper); box-shadow: 0 14px 35px rgba(71,40,22,.08); }
.hours-card-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding-bottom: 15px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 22px; }
.hours-card-head small { max-width: 145px; color: var(--ink-soft); font-family: var(--sans); font-size: 9px; line-height: 1.35; text-align: right; }
.hours-card dl { margin: 11px 0 19px; }
.hours-card dl div { display: flex; justify-content: space-between; gap: 15px; padding: 9px 0; border-bottom: 1px solid rgba(33,26,24,.09); font-size: 12px; }
.hours-card dt { color: var(--ink-soft); }
.hours-card dd { margin: 0; font-weight: 700; }
.hours-card .button { width: 100%; }
.salon-note { display: grid; grid-template-columns: 128px 1fr .8fr; align-items: end; gap: 50px; padding: clamp(105px, 12vw, 165px) 0; }
.salon-note-number { display: grid; width: 104px; height: 104px; place-items: center; border: 1px solid var(--clay); border-radius: 50%; color: var(--clay-dark); font-family: var(--serif); font-size: 66px; }
.salon-note > p { margin: 0; padding-bottom: 8px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* Reviews */
.reviews-hero { display: grid; grid-template-columns: 1fr .55fr; align-items: center; gap: clamp(65px, 12vw, 160px); min-height: 535px; padding: clamp(75px, 9vw, 115px) max(48px, calc((100% - 1200px) / 2)); background: var(--ink); color: var(--paper); }
.reviews-hero .eyebrow { color: var(--sand); }
.reviews-hero h1 em { color: var(--rose); }
.reviews-hero .hero-lede { color: rgba(255,255,255,.7); }
.rating-orb { display: grid; aspect-ratio: 1; max-width: 285px; justify-self: end; align-content: center; justify-items: center; padding: 38px; border: 1px solid rgba(255,255,255,.57); border-radius: 50%; text-align: center; }
.rating-orb span { color: var(--sand); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.rating-orb strong { margin: 8px 0 2px; font-family: var(--serif); font-size: 85px; font-weight: 400; line-height: .9; letter-spacing: -.075em; }
.rating-orb b { color: var(--clay); font-size: 14px; letter-spacing: .13em; }
.rating-orb small { margin-top: 9px; color: rgba(255,255,255,.58); font-size: 9px; line-height: 1.4; }
.reviews-intro { display: grid; grid-template-columns: .9fr .7fr; gap: clamp(60px, 14vw, 200px); padding: clamp(100px, 12vw, 160px) 0 75px; }
.reviews-intro > div:last-child { align-self: end; }
.reviews-intro > div:last-child > p:first-child { margin: 0 0 23px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.review-disclaimer { max-width: 440px; margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.6; }
.filter-section { padding-bottom: clamp(105px, 12vw, 170px); }
.filter-controls { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 27px; }
.filter-button { min-height: 38px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink-soft); font-size: 11px; font-weight: 750; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.filter-button:hover, .filter-button.is-active { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { display: flex; min-height: 273px; flex-direction: column; justify-content: space-between; padding: 28px; }
.review-card[hidden] { display: none; }
.review-card-warm { background: var(--clay); color: var(--paper); }
.review-card-light { background: var(--paper-deep); }
.review-card-dark { background: var(--ink); color: var(--paper); }
.review-card-blush { background: var(--rose-pale); }
.review-card-stone { background: #d7d1c7; }
.review-card-sand { background: #e7c88d; }
.quote-mark { font-family: var(--serif); font-size: 62px; line-height: .5; }
.review-card > p { max-width: 310px; margin: 18px 0; font-family: var(--serif); font-size: 25px; line-height: 1.04; letter-spacing: -.04em; }
.review-card footer { display: grid; gap: 3px; color: inherit; font-size: 10px; line-height: 1.3; }
.review-card footer strong { font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.review-card-warm footer, .review-card-dark footer { color: rgba(255,255,255,.65); }
.filter-empty { margin: 30px 0 0; color: var(--ink-soft); }
.review-image-split { display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: clamp(55px, 10vw, 145px); padding-bottom: clamp(100px, 12vw, 160px); }
.review-photo { position: relative; height: 455px; margin: 0; overflow: hidden; border-radius: 0 110px 0 0; }
.review-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 63% center; }
.review-image-copy { max-width: 425px; }
.review-image-copy > p:not(.eyebrow) { margin: 25px 0 27px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.reviews-note { display: flex; justify-content: space-between; gap: 30px; padding: 20px max(48px, calc((100% - 1200px) / 2)); background: var(--paper-deep); color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.reviews-note p { margin: 0; }
.reviews-note p span { margin: 0 7px; color: var(--clay); }
.reviews-note a { color: var(--ink); }

/* Visit */
.visit-hero { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: center; width: min(1200px, calc(100% - 96px)); margin: 0 auto; padding: clamp(78px, 9vw, 120px) 0; }
.visit-hero-copy { max-width: 570px; }
.visit-hero-image { position: relative; height: 500px; margin: 0; }
.visit-hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 85px 0 0 0; }
.visit-hero-image figcaption { position: absolute; bottom: 0; left: 0; padding: 13px 17px; background: var(--ink); color: var(--paper); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-bottom: clamp(98px, 12vw, 165px); }
.contact-card { display: grid; grid-template-columns: 50px 1fr; gap: 23px; padding: clamp(31px, 4vw, 52px); background: var(--paper-deep); }
.contact-card h2 { margin-bottom: 18px; font-size: clamp(28px, 2.7vw, 41px); line-height: 1.06; }
.contact-card > div > p:not(.eyebrow) { max-width: 390px; margin: -6px 0 17px; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.contact-icon { position: relative; display: block; width: 38px; height: 38px; border: 1px solid var(--ink); border-radius: 50%; }
.contact-icon-pin::before { content: ""; position: absolute; top: 9px; left: 13px; width: 10px; height: 13px; border: 1px solid var(--clay-dark); border-radius: 8px 8px 9px 9px; }
.contact-icon-pin::after { content: ""; position: absolute; top: 12px; left: 16px; width: 4px; height: 4px; border-radius: 50%; background: var(--clay-dark); }
.contact-icon-phone::before { content: ""; position: absolute; top: 10px; left: 12px; width: 13px; height: 13px; border: 2px solid var(--clay-dark); border-top-color: transparent; border-right-color: transparent; border-radius: 3px 3px 8px 5px; transform: rotate(-36deg); }
.map-layout { display: grid; grid-template-columns: 1.08fr .65fr; gap: clamp(45px, 8vw, 120px); align-items: center; padding-bottom: clamp(100px, 12vw, 165px); }
.map-art { position: relative; height: 440px; overflow: hidden; background: #d8d9d1; }
.map-art::before, .map-art::after { content: ""; position: absolute; border-radius: 50%; background: rgba(114,141,111,.24); }
.map-art::before { top: -24%; right: -9%; width: 60%; height: 70%; }
.map-art::after { bottom: -14%; left: -20%; width: 46%; height: 55%; }
.map-road { position: absolute; z-index: 1; display: block; background: #f5f0e7; box-shadow: 0 0 0 1px rgba(50,45,36,.05); }
.map-road-one { top: 42%; left: -10%; width: 120%; height: 27px; transform: rotate(-5deg); }
.map-road-two { top: -7%; right: 27%; width: 22px; height: 120%; transform: rotate(9deg); }
.map-road-three { bottom: 20%; left: -15%; width: 71%; height: 12px; transform: rotate(31deg); }
.map-road-four { top: 3%; left: 21%; width: 12px; height: 110%; transform: rotate(-19deg); }
.map-label { position: absolute; z-index: 2; color: #7d756a; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.label-lawrence { top: 35%; left: 7%; }
.label-victoria { top: 16%; right: 31%; transform: rotate(79deg); }
.label-dvp { bottom: 18%; left: 35%; transform: rotate(-18deg); }
.map-pin { position: absolute; z-index: 5; top: 46%; left: 55%; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50% 50% 50% 0; background: var(--clay-dark); box-shadow: 0 8px 22px rgba(91,50,28,.28); transform: rotate(-45deg); }
.map-pin i { width: 13px; height: 13px; border-radius: 50%; background: var(--paper); transform: rotate(45deg); }
.map-bubble { position: absolute; z-index: 6; top: calc(46% - 30px); left: calc(55% + 48px); display: grid; gap: 2px; padding: 10px 12px; background: var(--white); box-shadow: 0 8px 20px rgba(48,45,36,.15); font-size: 11px; line-height: 1.25; }
.map-bubble span { color: var(--ink-soft); font-size: 10px; }
.map-link { position: absolute; z-index: 6; right: 18px; bottom: 17px; padding: 11px 13px; background: var(--ink); color: var(--paper); font-size: 11px; font-weight: 700; }
.map-copy > p:not(.eyebrow) { margin: 22px 0; color: var(--ink-soft); }
.visit-hours { margin: 27px 0 20px; border-top: 1px solid var(--line); }
.visit-hours div { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.visit-hours dt { color: var(--ink-soft); }
.visit-hours dd { margin: 0; font-weight: 750; }
.small-note { max-width: 400px; font-size: 11px; line-height: 1.6; }
.inquiry-section { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(55px, 10vw, 130px); margin-bottom: clamp(95px, 12vw, 160px); padding: clamp(45px, 6vw, 82px); background: var(--paper-deep); }
.inquiry-copy > p:not(.eyebrow) { margin: 26px 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.inquiry-note { display: grid; grid-template-columns: 22px 1fr; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); }
.inquiry-note span { display: grid; width: 19px; height: 19px; place-items: center; border: 1px solid var(--clay-dark); border-radius: 50%; color: var(--clay-dark); font-size: 11px; font-weight: 800; }
.inquiry-note p { margin: 1px 0 0; color: var(--ink-soft); font-size: 11px; line-height: 1.6; }
.inquiry-form { display: grid; gap: 19px; align-self: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry-form label { display: grid; gap: 8px; color: var(--ink-soft); font-size: 11px; font-weight: 750; }
.optional { color: #8a827c; font-weight: 500; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; border: 1px solid rgba(33,26,24,.24); border-radius: 0; background: rgba(255,255,255,.48); color: var(--ink); font-size: 14px; font-weight: 450; transition: border-color .2s ease, background .2s ease; }
.inquiry-form input, .inquiry-form select { min-height: 46px; padding: 10px 12px; }
.inquiry-form textarea { min-height: 96px; resize: vertical; padding: 12px; }
.inquiry-form input:hover, .inquiry-form select:hover, .inquiry-form textarea:hover { border-color: var(--ink); }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--clay-dark); background: var(--white); outline: 0; }
.form-footer { display: flex; align-items: center; gap: 17px; }
.form-footer p { margin: 0; color: var(--ink-soft); font-size: 10px; }
.form-confirmation { display: grid; gap: 4px; padding: 16px; border-left: 3px solid var(--olive); background: #e1ebe1; color: #25342a; font-size: 12px; line-height: 1.55; }
.form-confirmation strong { font-size: 13px; }

@media (max-width: 1040px) {
  .header-shell { width: min(100% - 48px, 1000px); gap: 20px; }
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: 11px; }
  .header-phone { display: none; }
  .hero, .page-hero, .visit-hero { width: min(100% - 64px, 960px); }
  .section, .footer-main, .footer-bottom { width: min(100% - 64px, 960px); }
  .hero-home { gap: 60px; }
  .hero-image { height: 430px; }
  .editorial-grid { grid-template-rows: 390px 390px; }
  .service-row { grid-template-columns: 38px minmax(190px,.8fr) minmax(250px,1fr); }
  .service-row .row-link { grid-column: 2 / -1; justify-self: start; }
  .values-section { gap: 50px; }
  .values-grid { gap: 18px; }
  .salon-details { gap: 50px; }
  .salon-note { grid-template-columns: 95px 1fr; }
  .salon-note > p { grid-column: 2; }
}

@media (max-width: 760px) {
  body { font-size: 15px; padding-bottom: 62px; }
  .utility-bar { min-height: 28px; padding-inline: 14px; font-size: 8px; letter-spacing: .1em; }
  .header-shell { width: calc(100% - 40px); min-height: 66px; }
  .brand-mark { width: 30px; height: 30px; font-size: 19px; }
  .brand-words strong { font-size: 20px; }
  .brand-words small { font-size: 7px; }
  .primary-nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; margin-left: auto; }
  .section, .footer-main, .footer-bottom { width: calc(100% - 40px); }
  .hero, .page-hero, .visit-hero { width: calc(100% - 40px); }
  h1 { font-size: clamp(46px, 14vw, 66px); }
  h2 { font-size: clamp(38px, 11vw, 53px); }
  .eyebrow { margin-bottom: 15px; font-size: 9px; }
  .hero-lede { font-size: 15px; line-height: 1.6; }
  .button { min-height: 46px; padding: 12px 17px; font-size: 11px; }
  .hero-home { display: block; min-height: 0; padding: 64px 0 68px; }
  .hero-copy h1 { margin-bottom: 22px; }
  .hero-proof { gap: 13px; margin-top: 42px; font-size: 10px; }
  .stars { font-size: 10px; }
  .hero-media { min-height: 0; height: min(97vw, 440px); margin-top: 56px; }
  .hero-image { width: calc(100% - 7px); height: calc(100% - 19px); border-radius: 2px 2px 50px 2px; }
  .hero-crescent { right: 27%; bottom: -2px; width: 150px; height: 150px; }
  .hero-note { right: -5px; bottom: 0; width: 186px; padding: 13px 15px; }
  .hero-note strong { font-size: 19px; }
  .service-marquee { padding: 17px 0; }
  .service-marquee span { font-size: 19px; }
  .intro-grid { display: block; padding: 83px 0; }
  .intro-copy { margin-top: 35px; }
  .intro-copy > p { font-size: 15px; }
  .editorial-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 290px 290px; }
  .feature-panel { padding: 22px; }
  .feature-panel h3 { font-size: 26px; }
  .feature-panel p { display: none; }
  .panel-link { margin-top: 15px; font-size: 10px; }
  .image-panel figcaption { font-size: 9px; }
  .image-panel figcaption::before { width: 10px; margin-right: 4px; }
  .experience-section { display: flex; flex-direction: column; align-items: stretch; gap: 48px; padding: 92px 0 111px; }
  .experience-copy > p:not(.eyebrow) { font-size: 15px; }
  .experience-image { min-height: 0; }
  .experience-image img { height: min(90vw, 400px); }
  .experience-image figcaption { right: 0; bottom: -22px; width: 87%; font-size: 11px; }
  .visit-band { display: block; margin-bottom: 83px; padding: 37px 27px; }
  .visit-band-copy { margin-top: 31px; }
  .visit-band-copy > p { font-size: 14px; }
  .footer-main { display: grid; grid-template-columns: 1fr; gap: 29px; padding: 43px 0 31px; }
  .footer-message { max-width: 255px; font-size: 21px; }
  .footer-contact { justify-items: start; text-align: left; }
  .footer-bottom { display: block; padding: 15px 0 21px; font-size: 8px; line-height: 1.6; }
  .footer-bottom span { display: block; }
  .mobile-quick-actions { position: fixed; z-index: 45; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: .8fr 1.2fr; height: 62px; box-shadow: 0 -5px 23px rgba(38,25,18,.14); }
  .mobile-quick-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--paper); color: var(--ink); font-size: 12px; font-weight: 800; }
  .mobile-quick-actions a + a { background: var(--ink); color: var(--paper); }
  .mobile-quick-actions span { color: var(--sand); font-size: 17px; }

  .page-hero { display: block; min-height: 0; padding: 66px 0 73px; }
  .page-hero-services, .page-hero-salon { background: none; }
  .page-hero .hero-aside-card, .story-stamp { margin-top: 47px; }
  .hero-aside-card { padding: 27px 0; }
  .hero-aside-card strong { font-size: 27px; }
  .directory-heading { display: block; margin-bottom: 28px; }
  .directory-heading h2 { margin-bottom: 19px; }
  .directory-heading > p { margin-top: 0; font-size: 14px; }
  .service-directory { padding-bottom: 92px; }
  .service-row { display: grid; grid-template-columns: 33px 1fr; gap: 15px; padding: 24px 0; }
  .service-row h3 { font-size: 28px; }
  .service-row p { font-size: 12px; }
  .service-row ul { grid-column: 2; grid-template-columns: 1fr; gap: 5px; margin-top: 2px; font-size: 11px; }
  .service-row .row-link { grid-column: 2; margin-top: 4px; font-size: 11px; }
  .image-copy-split { display: flex; flex-direction: column; gap: 42px; padding-bottom: 92px; }
  .split-image { width: 100%; height: min(120vw, 520px); border-radius: 85px 3px 3px; }
  .split-copy > p:not(.eyebrow) { font-size: 15px; }
  .appointment-path { display: block; padding: clamp(43px, 9vw, 62px) 25px; }
  .appointment-path h2 { max-width: 280px; font-size: clamp(32px, 9vw, 44px); line-height: 1.08; }
  .appointment-path .eyebrow { margin-bottom: 20px; }
  .appointment-path ol { margin-top: 38px; }
  .appointment-path li { gap: 14px; padding: 24px 0; }
  .appointment-path h3 { margin-bottom: 7px; font-size: 23px; line-height: 1.08; }
  .appointment-path p { font-size: 12px; line-height: 1.55; }
  .faq-section { display: block; padding: 91px 0; }
  .faq-heading { margin-bottom: 33px; }
  .faq-list summary { font-size: 21px; }
  .faq-list details p { margin-right: 10px; font-size: 13px; }
  .closing-banner { display: block; padding: 55px 20px 62px; }
  .closing-banner h2 { margin-bottom: 31px; }

  .story-stamp { padding: 23px 0; }
  .story-stamp p { font-size: 23px; }
  .salon-image-section { width: calc(100% - 20px); }
  .salon-wide-image { height: min(82vw, 420px); }
  .salon-wide-image img { object-position: 58% center; }
  .salon-image-caption { right: 10px; bottom: -23px; width: 242px; padding: 15px; }
  .salon-image-caption p { font-size: 17px; }
  .values-section { display: block; padding: 94px 0 79px; }
  .values-grid { display: block; margin-top: 41px; }
  .values-grid article + article { margin-top: 23px; }
  .values-grid h3 { margin: 14px 0 7px; font-size: 26px; }
  .salon-details { display: block; padding: 42px 25px; }
  .hours-card { margin-top: 39px; padding: 22px; }
  .salon-note { display: grid; grid-template-columns: 58px 1fr; gap: 25px; padding: 88px 0; }
  .salon-note-number { width: 51px; height: 51px; font-size: 32px; }
  .salon-note > p { grid-column: 1 / -1; padding: 0; font-size: 14px; }

  .reviews-hero { display: block; min-height: 0; padding: 72px 20px 64px; }
  .rating-orb { width: 204px; margin-top: 45px; padding: 28px; justify-self: start; }
  .rating-orb strong { font-size: 67px; }
  .reviews-intro { display: block; padding: 90px 0 52px; }
  .reviews-intro > div:last-child { margin-top: 30px; }
  .reviews-intro > div:last-child > p:first-child { font-size: 15px; }
  .filter-controls { gap: 7px; }
  .filter-button { min-height: 36px; padding-inline: 11px; font-size: 10px; }
  .review-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { min-height: 218px; padding: 24px; }
  .review-card > p { margin: 15px 0; font-size: 25px; }
  .review-image-split { display: flex; flex-direction: column; gap: 43px; padding-top: 92px; padding-bottom: 83px; }
  .review-photo { width: 100%; height: min(94vw, 400px); border-radius: 0 78px 0 0; }
  .reviews-note { display: block; padding: 19px 20px; font-size: 10px; line-height: 1.6; }
  .reviews-note a { display: block; margin-top: 8px; }

  .visit-hero { display: flex; flex-direction: column; gap: 42px; align-items: stretch; padding: 65px 0 85px; }
  .visit-hero-image { height: min(100vw, 440px); }
  .visit-hero-image img { border-radius: 70px 0 0 0; }
  .contact-cards { grid-template-columns: 1fr; gap: 12px; padding-bottom: 90px; }
  .contact-card { gap: 18px; padding: 28px 22px; }
  .contact-card h2 { font-size: 30px; }
  .map-layout { display: flex; flex-direction: column; align-items: stretch; gap: 45px; padding-bottom: 92px; }
  .map-art { height: 390px; }
  .map-bubble { top: calc(46% - 51px); left: calc(55% - 44px); }
  .map-copy > p:not(.eyebrow) { font-size: 15px; }
  .inquiry-section { display: block; margin-bottom: 82px; padding: 38px 23px; }
  .inquiry-copy { margin-bottom: 35px; }
  .inquiry-copy > p:not(.eyebrow) { font-size: 14px; }
  .form-grid { grid-template-columns: 1fr; gap: 15px; }
  .form-footer { display: block; }
  .form-footer p { margin-top: 11px; }
}

@media (max-width: 380px) {
  .header-shell, .section, .footer-main, .footer-bottom, .hero, .page-hero, .visit-hero { width: calc(100% - 32px); }
  .menu-toggle-label { display: none; }
  .hero-proof { align-items: flex-start; }
  .proof-rule { height: 38px; }
  .editorial-grid { grid-template-rows: 250px 250px; }
  .feature-panel { padding: 17px; }
  .feature-panel h3 { font-size: 23px; }
  .panel-link { font-size: 9px; }
  .visit-band { padding-inline: 20px; }
  .contact-card { grid-template-columns: 34px 1fr; padding: 23px 18px; }
  .contact-icon { width: 30px; height: 30px; transform: scale(.8); transform-origin: top left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .service-marquee-track { animation: none; }
}
/* Desktop phone numbers remain readable text; mobile restores tap-to-call. */
@media (min-width: 761px) {
  a[data-phone-desktop="true"] {
    display: inline !important;
    color: inherit !important;
    background: transparent !important;
    border: 0 !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    text-decoration: none !important;
    text-transform: none !important;
    padding: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    pointer-events: none !important;
    cursor: default !important;
  }
  a[data-phone-desktop="true"]::before,
  a[data-phone-desktop="true"]::after,
  a[data-phone-desktop="true"] [aria-hidden="true"] {
    content: none !important;
    display: none !important;
  }
}

/* Small-screen polish: define the pale header and keep menu typography inside its columns. */
body { overflow-x: clip; }
.site-header { box-shadow: 0 4px 18px rgba(52, 33, 22, .07); }
@media (max-width: 760px) {
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid rgba(33, 26, 24, .24);
    border-radius: 999px;
    background: var(--paper-deep);
  }
  .mobile-menu nav a,
  .mobile-menu-contact,
  .footer-main > * { min-width: 0; }
  .mobile-menu nav a,
  .footer-contact a,
  .footer-message { overflow-wrap: anywhere; }
}
