:root {
  --ink: #2d2926;
  --ink-soft: #716863;
  --cream: #f7f0e8;
  --cream-deep: #eee1d4;
  --paper: #fffdf9;
  --terracotta: #b9624f;
  --terracotta-dark: #904738;
  --sage: #a9b29a;
  --sage-dark: #68725d;
  --gold: #c99455;
  --line: rgba(45, 41, 38, 0.12);
  --shadow-soft: 0 20px 60px rgba(101, 71, 55, 0.1);
  --shadow-card: 0 10px 30px rgba(101, 71, 55, 0.08);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(201, 148, 85, 0.65);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2.25rem), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 5rem;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(247, 240, 232, 0.93);
  border-bottom: 1px solid rgba(45, 41, 38, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  color: var(--paper);
  background: var(--terracotta);
  border-radius: 50% 50% 50% 0.3rem;
  font-family: Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  transform: rotate(-8deg);
}

.brand-copy {
  display: grid;
  gap: 0.02rem;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-weight: 600;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--terracotta-dark);
}

.site-nav .nav-cta {
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
}

.site-nav .nav-cta:hover {
  color: var(--paper);
  background: var(--terracotta-dark);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-icon {
  display: grid;
  gap: 0.23rem;
  width: 1rem;
  margin: auto;
}

.menu-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-block: 4.25rem 5rem;
}

.hero-section::before {
  position: absolute;
  top: -14rem;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  content: "";
  background: rgba(169, 178, 154, 0.18);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  color: var(--terracotta-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
  border-radius: 50%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

h1 {
  max-width: 37rem;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.1rem);
}

h1 em,
h2 em {
  color: var(--terracotta);
  font-style: italic;
}

.hero-description {
  max-width: 32rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem;
  margin-bottom: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 3.2rem;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--terracotta);
  box-shadow: 0 10px 24px rgba(185, 98, 79, 0.23);
}

.button-primary:hover {
  color: var(--paper);
  background: var(--terracotta-dark);
  box-shadow: 0 13px 27px rgba(144, 71, 56, 0.25);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover {
  color: var(--ink);
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link span {
  color: var(--terracotta);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 23rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.note-icon {
  display: grid;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  color: var(--terracotta);
  background: var(--cream-deep);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 32rem;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(185, 98, 79, 0.2);
  border-radius: 50%;
}

.orbit-one {
  top: 1rem;
  right: 0.5rem;
  width: 28rem;
  height: 28rem;
}

.orbit-two {
  top: 4rem;
  right: 3.5rem;
  width: 21rem;
  height: 21rem;
  border-color: rgba(169, 178, 154, 0.48);
}

.visual-card-main {
  position: absolute;
  top: 3rem;
  right: 2.5rem;
  display: flex;
  width: min(78%, 18rem);
  height: 26rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(155deg, #be745d 0%, #9d4e41 54%, #743e37 100%);
  border-radius: 10rem 10rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transform: rotate(4deg);
}

.visual-card-main::before {
  position: absolute;
  top: -4rem;
  left: -4rem;
  width: 14rem;
  height: 14rem;
  content: "";
  background: rgba(255, 253, 249, 0.12);
  border-radius: 50%;
}

.visual-label,
.visual-caption {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.visual-caption {
  align-self: flex-end;
  font-size: 0.75rem;
  font-style: italic;
}

.visual-sparkle {
  position: absolute;
  z-index: 2;
  color: rgba(255, 253, 249, 0.85);
}

.sparkle-one {
  top: 5rem;
  right: 2rem;
  font-size: 1.7rem;
}

.sparkle-two {
  bottom: 5rem;
  left: 1.4rem;
  font-size: 1.1rem;
}

.portrait-placeholder {
  position: relative;
  display: block;
  width: 13rem;
  height: 17rem;
  margin: auto;
}

.portrait-hair {
  position: absolute;
  top: 0.5rem;
  left: 1.1rem;
  width: 11.3rem;
  height: 13.6rem;
  background: #34231f;
  border-radius: 48% 50% 45% 53%;
  transform: rotate(-7deg);
}

.portrait-face {
  position: absolute;
  top: 2.6rem;
  left: 3.8rem;
  width: 7.2rem;
  height: 9.3rem;
  background: #d68e71;
  border-radius: 47% 47% 48% 52%;
  transform: rotate(-5deg);
}

.portrait-face::after {
  position: absolute;
  top: 4.6rem;
  left: 3rem;
  width: 1rem;
  height: 0.25rem;
  content: "";
  border-bottom: 1px solid rgba(82, 42, 33, 0.65);
  border-radius: 50%;
}

.portrait-neck {
  position: absolute;
  bottom: 1.7rem;
  left: 5.8rem;
  width: 3.2rem;
  height: 3.7rem;
  background: #d68e71;
}

.portrait-top {
  position: absolute;
  bottom: -0.7rem;
  left: 2.3rem;
  width: 9.8rem;
  height: 5rem;
  background: #d6c49a;
  border-radius: 50% 50% 0 0;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.9rem;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(45, 41, 38, 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  font-size: 0.68rem;
  font-weight: 700;
}

.floating-badge span {
  color: var(--terracotta);
  font-size: 1rem;
}

.badge-top {
  top: 5rem;
  left: 0;
  transform: rotate(-7deg);
}

.badge-bottom {
  right: 0;
  bottom: 3.8rem;
  transform: rotate(5deg);
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  max-width: 34rem;
  margin-bottom: 0;
}

.section-intro {
  max-width: 23rem;
  margin-bottom: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.filter-bar {
  display: flex;
  gap: 0.55rem;
  padding-bottom: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 2.55rem;
  padding: 0.55rem 1rem;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  padding: 1rem;
  background: var(--cream);
  border: 1px solid rgba(45, 41, 38, 0.07);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.service-card[hidden] {
  display: none;
}

.service-art {
  position: relative;
  display: grid;
  width: 100%;
  height: 5.3rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.9rem;
}

.service-art::before,
.service-art::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.art-terracotta { background: #ddb0a0; }
.art-sage { background: #c5cdb9; }
.art-sand { background: #e5c995; }
.art-rose { background: #e5b9b6; }

.art-terracotta::before,
.art-rose::before {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 253, 249, 0.26);
}

.art-sage::before,
.art-sand::before {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 253, 249, 0.38);
}

.art-sage::after,
.art-sand::after {
  right: -1.1rem;
  bottom: -2rem;
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid rgba(45, 41, 38, 0.12);
}

.service-art span {
  position: relative;
  z-index: 1;
  color: rgba(45, 41, 38, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.service-category {
  color: var(--terracotta-dark);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-price {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0.55rem 0 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.45;
}

.pricing-note {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.pricing-note span {
  margin-right: 0.25rem;
  color: var(--gold);
}

.empty-state {
  padding: 2rem;
  color: var(--ink-soft);
  text-align: center;
}

.care-banner {
  padding-block: 2rem;
  background: var(--terracotta);
}

.care-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  color: var(--paper);
}

.care-banner .eyebrow {
  margin-bottom: 0.45rem;
  color: rgba(255, 253, 249, 0.72);
}

.care-banner h2 {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.care-icon {
  display: grid;
  flex: 0 0 auto;
  width: 3.8rem;
  height: 3.8rem;
  place-items: center;
  color: var(--terracotta-dark);
  background: var(--paper);
  border-radius: 50%;
  font-size: 1.8rem;
}

.care-banner .button {
  margin-left: auto;
  white-space: nowrap;
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  gap: 4rem;
  align-items: center;
}

.contact-copy {
  max-width: 35rem;
}

.contact-copy h2 {
  margin-bottom: 1rem;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 29rem;
  margin-bottom: 1.6rem;
  color: var(--ink-soft);
}

.contact-card {
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid rgba(45, 41, 38, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transform: rotate(2deg);
}

.contact-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-symbol {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--paper);
  background: var(--sage-dark);
  border-radius: 50%;
  font-size: 1.6rem;
}

.contact-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--sage-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-status i {
  width: 0.42rem;
  height: 0.42rem;
  background: #7eaa6a;
  border-radius: 50%;
}

.contact-card h3 {
  margin: 2rem 0 0.15rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.contact-card p {
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.contact-rule {
  height: 1px;
  margin-bottom: 1rem;
  background: var(--line);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.contact-detail > span:first-child {
  color: var(--terracotta);
  font-size: 1.1rem;
}

.site-footer {
  padding-block: 1.5rem;
  color: var(--ink-soft);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand .brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  font-size: 0.62rem;
}

.footer-brand .brand-copy strong {
  font-size: 0.88rem;
}

.footer-brand .brand-copy small {
  font-size: 0.55rem;
}

.footer-inner p {
  margin-bottom: 0;
  font-size: 0.7rem;
}

.footer-inner p span {
  color: var(--terracotta);
}

.floating-whatsapp {
  position: fixed;
  z-index: 10;
  right: 1.1rem;
  bottom: 1.1rem;
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.9rem;
  padding: 0.55rem 0.9rem;
  color: var(--paper);
  background: var(--sage-dark);
  border: 3px solid rgba(255, 253, 249, 0.84);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(65, 79, 56, 0.25);
  font-size: 0.74rem;
  font-weight: 700;
}

.floating-whatsapp > span:first-child {
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.75fr);
    gap: 1.5rem;
  }

  .hero-visual {
    min-height: 28rem;
  }

  .orbit-one {
    width: 23rem;
    height: 23rem;
  }

  .orbit-two {
    width: 17rem;
    height: 17rem;
  }

  .visual-card-main {
    right: 1.2rem;
    width: 14rem;
    height: 23rem;
  }

  .portrait-placeholder {
    transform: scale(0.83);
  }

  .badge-top {
    left: -1rem;
  }

  .badge-bottom {
    right: -0.5rem;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .section {
    padding-block: 3.8rem;
  }

  .header-inner {
    min-height: 4.5rem;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0.75rem;
    left: 0.75rem;
    display: grid;
    gap: 0;
    padding: 0.5rem;
    visibility: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(-0.5rem);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
  }

  .site-nav a:hover {
    background: var(--cream);
  }

  .site-nav .nav-cta {
    margin-top: 0.25rem;
    color: var(--paper);
    text-align: center;
  }

  .hero-section {
    padding-block: 3.8rem 3.5rem;
  }

  .hero-grid {
    display: block;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-visual {
    min-height: 25rem;
    margin-top: 2.2rem;
  }

  .orbit-one {
    top: 0;
    right: 50%;
    width: 23rem;
    height: 23rem;
    transform: translateX(50%);
  }

  .orbit-two {
    top: 2rem;
    right: 50%;
    width: 17rem;
    height: 17rem;
    transform: translateX(50%);
  }

  .visual-card-main {
    top: 1.3rem;
    right: 50%;
    width: 15.5rem;
    height: 22rem;
    transform: translateX(50%) rotate(4deg);
  }

  .portrait-placeholder {
    transform: scale(0.75);
  }

  .badge-top {
    top: 3rem;
    left: calc(50% - 10rem);
  }

  .badge-bottom {
    right: calc(50% - 10rem);
    bottom: 1.2rem;
  }

  .section-heading {
    display: block;
    margin-bottom: 1.6rem;
  }

  .section-intro {
    margin-top: 1rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .service-card {
    min-height: 14.5rem;
    padding: 0.7rem;
  }

  .service-art {
    height: 4.6rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.7rem;
  }

  .care-banner-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
  }

  .care-banner .button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.4rem;
  }

  .contact-grid {
    display: block;
  }

  .contact-card {
    max-width: 24rem;
    margin: 2rem auto 0;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

  .footer-inner > p:nth-child(2) {
    display: none;
  }

  .floating-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 380px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

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

  .service-card {
    min-height: 13rem;
  }

  .service-art {
    height: 5rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
