:root {
  --primary: #b2ab91;
  --primary-hover: #a09a83;
  --secondary: #cbc1b0;
  --accent: #d7e8d1;
  --background: #ffffff;
  --surface: #ffffff;
  --text: #2a2a2a;
  --text-secondary: #6a6a6a;
  --border: #b7b7b7;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(42, 42, 42, 0.09);
  --shadow-soft: 0 12px 32px rgba(42, 42, 42, 0.07);
  --radius: 8px;
  --content: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--content);
  min-height: 72px;
  margin-inline: auto;
  padding-block: 14px;
  color: var(--white);
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  top: 12px;
  width: min(1120px, calc(100% - 32px));
  min-height: 62px;
  padding: 10px 14px;
  border: 1px solid rgba(183, 183, 183, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
  font-size: clamp(0.84rem, 0.9vw, 0.92rem);
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding-block: 6px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  align-items: end;
  padding: 136px max(20px, calc((100% - 1120px) / 2)) 76px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/hero.jpeg");
  background-position: center 48%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(42, 42, 42, 0.78) 0%, rgba(42, 42, 42, 0.5) 42%, rgba(42, 42, 42, 0.12) 100%),
    linear-gradient(0deg, rgba(42, 42, 42, 0.38) 0%, rgba(42, 42, 42, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  margin: 0 0 16px;
  border: 1px solid rgba(178, 171, 145, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--primary-hover);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 7px 12px;
  text-transform: uppercase;
}

.hero .eyebrow,
.portfolio-band .eyebrow,
.care-panel .eyebrow {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero h1,
.section h2,
.portfolio-band h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn svg,
.nav-toggle svg,
.service-card svg,
.contact-line svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.brand-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon-instagram circle:last-child {
  fill: currentColor;
  stroke: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(42, 42, 42, 0.14);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 18px 38px rgba(42, 42, 42, 0.16);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-light {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.btn-light:hover {
  background: var(--accent);
}

.trust-strip {
  display: grid;
  width: var(--content);
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 26px;
  border-right: 1px solid rgba(183, 183, 183, 0.34);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--primary-hover);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  font-weight: 700;
}

.section,
.portfolio-band {
  padding: clamp(72px, 10vw, 118px) 0;
}

.split-section,
.appointment-section {
  display: grid;
  width: var(--content);
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.84fr);
  gap: clamp(30px, 7vw, 82px);
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.appointment-copy h2,
.professional-copy h2,
.care-panel h2,
.faq-panel h2 {
  color: var(--text);
  max-width: 800px;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1;
}

.care-panel h2,
.faq-panel h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.section-copy {
  max-width: 620px;
  padding-top: 10px;
}

.section-copy p,
.appointment-copy p,
.professional-copy p {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: 1.04rem;
}

.signature {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.signature span {
  width: 56px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--primary);
}

.signature p {
  margin: 0;
  color: var(--primary-hover);
  font-weight: 800;
}

.professional-section {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 74px);
  align-items: center;
  padding-top: clamp(72px, 9vw, 104px);
  padding-bottom: 0;
}

.professional-photo {
  position: relative;
  max-width: 360px;
}

.professional-photo::before {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border-radius: var(--radius);
  background: var(--accent);
  content: "";
}

.professional-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.professional-copy {
  max-width: 680px;
}

.professional-copy .btn {
  margin-top: 28px;
}

.experience-panel {
  display: grid;
  gap: 14px;
}

.panel-stat {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(183, 183, 183, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.panel-stat:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(42, 42, 42, 0.1);
  transform: translateY(-2px);
}

.panel-stat span {
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
}

.panel-stat p {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 700;
}

.services-section {
  background: var(--secondary);
}

.section-heading {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(132px, 220px) minmax(0, 800px);
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
  margin: 0 auto 38px;
}

.section-heading .eyebrow {
  margin-top: 8px;
}

.section-heading h2 {
  margin-right: auto;
}

.services-grid {
  display: grid;
  width: var(--content);
  margin-inline: auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  min-height: 264px;
  flex-direction: column;
  border: 1px solid rgba(183, 183, 183, 0.34);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: rgba(178, 171, 145, 0.72);
  box-shadow: 0 18px 40px rgba(42, 42, 42, 0.1);
  transform: translateY(-3px);
}

.service-card svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.service-card h3 {
  margin: 22px 0 10px;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--text-secondary);
}

.service-card span {
  margin-top: auto;
  padding-top: 24px;
  color: var(--primary-hover);
  font-weight: 800;
}

.portfolio-band {
  background: #2a2a2a;
  color: var(--white);
}

.portfolio-band .section-heading h2 {
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  width: var(--content);
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  grid-auto-rows: minmax(360px, auto);
}

.portfolio-actions {
  display: flex;
  width: var(--content);
  justify-content: center;
  margin: 32px auto 0;
}

.instagram-gallery {
  display: grid;
  width: var(--content);
  margin: 18px auto 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.instagram-gallery img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.instagram-gallery-prev,
.instagram-gallery-next {
  display: none;
}

.look-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--accent);
  min-height: 320px;
  height: 100%;
}

.look-card-large {
  grid-row: span 1;
}

.look-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.look-card:hover img {
  transform: scale(1.04);
}

.look-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.18) 45%,
      rgba(0,0,0,0) 100%
    );
  content: "";
}

.look-card > div:not(.tone-swatch) {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.look-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.look-card h3 {
  margin: 4px 0 0;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.03;
}

.look-card-tone {
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(215, 232, 209, 0.95), rgba(255, 255, 255, 0.95)),
    var(--white);
  color: var(--text);
}

.look-card-tone::after {
  background: linear-gradient(180deg, rgba(42, 42, 42, 0) 10%, rgba(42, 42, 42, 0.12) 100%);
}

.tone-swatch {
  display: grid;
  grid-template-columns: repeat(4, minmax(42px, 1fr));
  gap: 10px;
  width: min(82%, 380px);
  margin: 42px auto;
}

.tone-swatch span {
  min-height: 132px;
  border-radius: 999px 999px 12px 12px;
  box-shadow: inset 0 -14px 24px rgba(42, 42, 42, 0.1);
}

.tone-swatch span:nth-child(1) {
  background: #ffffff;
}

.tone-swatch span:nth-child(2) {
  background: #cbc1b0;
}

.tone-swatch span:nth-child(3) {
  background: #b2ab91;
}

.tone-swatch span:nth-child(4) {
  background: #d7e8d1;
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(215, 232, 209, 0.36)),
    var(--background);
}

.testimonials-grid {
  display: grid;
  width: var(--content);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 16px;
}

.testimonial-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  border: 1px solid rgba(183, 183, 183, 0.34);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  border-color: rgba(178, 171, 145, 0.68);
  box-shadow: 0 18px 40px rgba(42, 42, 42, 0.1);
  transform: translateY(-2px);
}

.testimonial-card-featured {
  justify-content: space-between;
  padding: clamp(26px, 4vw, 38px);
}

.testimonial-stack {
  display: grid;
  gap: 16px;
}

.review-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.stars {
  display: flex;
  gap: 4px;
  color: #FFD700;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke-width: 1.8;
}

.testimonial-card p {
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
}

.testimonial-card-featured p {
  color: var(--text);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.testimonial-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.2;
}

.review-topline span {
  display: block;
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 800;
}

.testimonial-card a,
.testimonial-card strong {
  margin-top: auto;
  padding-top: 20px;
  color: var(--primary-hover);
  font-weight: 900;
}

.testimonial-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.review-actions {
  display: flex;
  width: var(--content);
  justify-content: center;
  margin: 26px auto 0;
}

.care-faq-section {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

.care-panel,
.faq-panel {
  border-radius: var(--radius);
}

.care-panel {
  background: var(--text);
  color: var(--white);
  padding: clamp(28px, 5vw, 44px);
  box-shadow: var(--shadow);
}

.care-panel h2 {
  color: var(--white);
}

.care-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.care-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.care-list svg,
.contact-card svg,
.floating-actions svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.care-list svg {
  color: var(--accent);
}

.care-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.faq-panel {
  display: grid;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-item {
  border: 1px solid rgba(183, 183, 183, 0.34);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(178, 171, 145, 0.72);
  box-shadow: 0 16px 36px rgba(42, 42, 42, 0.09);
}

.faq-item summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--primary);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  border-top: 1px solid rgba(183, 183, 183, 0.34);
  padding: 0 20px 18px;
  color: var(--text-secondary);
}

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

.contact-line {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  color: var(--primary-hover);
  font-weight: 800;
}

.contact-actions {
  display: grid;
  max-width: 430px;
  gap: 12px;
  margin-top: 22px;
}

.contact-card {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(183, 183, 183, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 14px 16px;
  color: var(--text);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(42, 42, 42, 0.1);
  transform: translateY(-2px);
}

.booking-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(183, 183, 183, 0.34);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(22px, 4vw, 32px);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(178, 171, 145, 0.18);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--primary-hover);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  width: var(--content);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-inline: auto;
  border-top: 1px solid rgba(183, 183, 183, 0.36);
  padding: 26px 0 34px;
  color: var(--text-secondary);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer p {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.site-footer span,
.footer-location {
  font-size: 0.95rem;
}

.footer-location {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(183, 183, 183, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  font-weight: 900;
  padding: 10px 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-location:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-location svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(42, 42, 42, 0.16);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-actions a::after,
.floating-actions a::before {
  position: absolute;
  top: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-actions a::after {
  right: calc(100% + 12px);
  min-width: max-content;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  content: attr(data-tooltip);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  padding: 10px 12px;
  transform: translate(8px, -50%);
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(42, 42, 42, 0.18);
}

.floating-actions a::before {
  right: calc(100% + 5px);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid var(--text);
  content: "";
  transform: translate(8px, -50%);
}

.floating-actions a:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.floating-actions a:hover::after,
.floating-actions a:hover::before,
.floating-actions a:focus-visible::after,
.floating-actions a:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.floating-actions a:focus-visible {
  outline: 3px solid rgba(215, 232, 209, 0.82);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1100px) and (min-width: 921px) {
  :root {
    --content: min(100% - 32px, 1120px);
  }

  .site-header.is-scrolled {
    width: min(1120px, calc(100% - 24px));
  }

  .main-nav {
    gap: 10px;
    font-size: 0.82rem;
  }

  .section-heading {
    grid-template-columns: minmax(112px, 176px) minmax(0, 720px);
  }

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

  .service-card {
    min-height: 230px;
  }

  .portfolio-grid {
    min-height: 480px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 22px;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 40px));
    gap: 6px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px;
    border-radius: var(--radius);
  }

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

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

  .split-section,
  .appointment-section,
  .care-faq-section,
  .professional-section,
  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading .eyebrow {
    margin-top: 0;
  }

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

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

  .review-topline {
    align-items: flex-start;
  }

  .portfolio-grid {
    grid-template-rows: auto;
    min-height: 0;
  }

  .professional-section {
    padding-bottom: 0;
  }

  .professional-photo {
    max-width: 300px;
  }

  .look-card,
  .look-card-large {
    min-height: 360px;
    grid-row: auto;
  }
}

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

  .hero {
    min-height: 86svh;
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(42, 42, 42, 0.82) 0%, rgba(42, 42, 42, 0.56) 62%, rgba(42, 42, 42, 0.2) 100%),
      linear-gradient(0deg, rgba(42, 42, 42, 0.44) 0%, rgba(42, 42, 42, 0.04) 45%);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  .trust-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(183, 183, 183, 0.34);
    padding: 18px;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .professional-photo {
    max-width: 240px;
  }

  .service-card {
    min-height: 220px;
  }

  .review-topline {
    display: grid;
    gap: 10px;
  }

  .panel-stat {
    grid-template-columns: 1fr;
  }

  .look-card,
  .look-card-large {
    min-height: 310px;
  }
}

@media (max-width: 920px) {
  .instagram-gallery-wrapper {
    position: relative;
  }

  .instagram-gallery {
    display: flex;
    width: 100%;
    gap: 10px;
    margin: 18px 0 0;
    overflow-x: auto;
    padding: 2px 52px 14px 52px;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .instagram-gallery-prev,
  .instagram-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(42, 42, 42, 0.95);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .instagram-gallery-prev {
    left: 6px;
  }

  .instagram-gallery-next {
    right: 6px;
  }

  .instagram-gallery-prev:hover,
  .instagram-gallery-next:hover {
    transform: translateY(-50%) scale(1.04);
    background: rgba(160, 154, 131, 0.95);
  }

  .instagram-gallery::-webkit-scrollbar {
    display: none;
  }

  .instagram-gallery img {
    flex: 0 0 clamp(176px, 68vw, 248px);
    width: auto;
    height: clamp(220px, 76vw, 300px);
    aspect-ratio: auto;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .site-footer {
    display: grid;
    padding-bottom: 86px;
  }

  .footer-location {
    width: fit-content;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
    grid-auto-flow: column;
  }

  .floating-actions a {
    width: 46px;
    height: 46px;
  }

  .floating-actions a::after,
  .floating-actions a::before {
    display: none;
  }
}
.look-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.look-card img {
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

/* overlay suave */
.look-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: background 0.5s ease;
}

/* texto acima da imagem */
.look-card > div {
  position: absolute;
  z-index: 2;
}

/* hover premium */
.look-card:hover img {
  transform: scale(1.08);
  filter: blur(1.5px) brightness(0.7);
}

.look-card:hover::before {
  background: rgba(0, 0, 0, 0.18);
}

/* animação do texto */
.look-card h3,
.look-card span {
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.look-card:hover h3,
.look-card:hover span {
  transform: translateY(-4px);
}

/* sombras mais elegantes */
.look-card {
  box-shadow:
    0 10px 30px rgba(0,0,0,0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.look-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.22);
}

@media (hover: none) {
  .floating-actions a::after,
  .floating-actions a::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
