:root {
  --blush: #faf0ee;
  --blush-deep: #f3dfda;
  --paper: #fffaf8;
  --white: #ffffff;
  --accent: #a78069;
  --accent-deep: #795846;
  --ink: #3b2d27;
  --ink-soft: #725f55;
  --line: rgba(79, 57, 47, 0.15);
  --shadow: 0 24px 70px rgba(75, 61, 58, 0.12);
  --radius: 1.5rem;
  --shell: min(1160px, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.25rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(167, 128, 105, 0.12), transparent 22rem),
    linear-gradient(180deg, var(--paper), #fff 48%, var(--paper));
}

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

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

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
}

h1 em {
  color: var(--accent-deep);
  font-weight: 400;
  white-space: nowrap;
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 248, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 6.75rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
  font-size: 0.94rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(59, 45, 39, 0.14);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #543d33;
  box-shadow: 0 16px 34px rgba(59, 45, 39, 0.2);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.7rem;
  padding-inline: 1.1rem;
  font-size: 0.88rem;
}

.header-logo-link {
  width: 5.25rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.header-logo-link img {
  width: auto;
  max-height: 5.35rem;
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  align-content: center;
  gap: 0.3rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  height: 2px;
  display: block;
  background: var(--ink);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.25rem 1.3rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu nav > a:not(.button) {
  padding: 0.7rem 0.2rem;
  font-weight: 700;
}

.hero {
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 0.75rem;
  background: var(--blush);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.75fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-block: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-weight: 750;
}

.text-link span {
  color: var(--accent-deep);
}

.booksy-note {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.logo-stage {
  position: relative;
  min-height: 28.5rem;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: min(100%, 26rem);
  position: relative;
  z-index: 2;
  object-fit: contain;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(121, 88, 70, 0.32);
  border-radius: 50%;
}

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

.orbit-two {
  width: 28rem;
  height: 36rem;
  transform: rotate(28deg);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(0.75rem, 1.5vw, 1.5rem);
  border-top: 1px solid var(--line);
}

.trust-row span {
  padding: 1.25rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.trust-row span + span {
  border-left: 1px solid var(--line);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

#oferta {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

#oferta .section-heading {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

#oferta .service-card {
  min-height: 18rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.65fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
}

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

.service-card {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card-featured {
  background: var(--blush);
}

.service-card h3 {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  text-align: center;
}

.service-card p {
  margin-inline: auto;
  margin-bottom: auto;
  color: var(--ink-soft);
  text-align: center;
}

.service-booksy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-booksy small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tatiana-section {
  background: var(--ink);
}

.tatiana-grid {
  display: block;
}

.tatiana-copy {
  max-width: 54rem;
  margin-inline: auto;
  color: var(--white);
}

.tatiana-copy .eyebrow {
  color: #d6b9a8;
}

.large-copy {
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.achievement-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.achievement-list div {
  display: grid;
  gap: 0.25rem;
  padding: 1.4rem 1rem 1.4rem 0;
}

.achievement-list div + div {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.achievement-list strong {
  color: #d6b9a8;
  font-size: 1.05rem;
}

.achievement-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

.contact-card {
  display: grid;
  grid-template-columns: 1fr minmax(19rem, 0.7fr);
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.contact-card p {
  max-width: 40rem;
  color: var(--ink-soft);
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem;
}

.contact-details > a:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  border-bottom: 1px solid currentColor;
}

.contact-phone {
  color: var(--accent-deep);
  font-size: 1.05rem;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.contact-details > span,
.contact-details small {
  color: var(--ink-soft);
}

.contact-details .button {
  margin-top: 0.8rem;
  border-bottom: 0;
  font-family: inherit;
  font-size: 0.95rem;
}

.site-footer {
  padding: 2.2rem 0;
  color: rgba(255, 255, 255, 0.7);
  background: #2d211c;
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer-row p {
  margin: 0;
  font-size: 0.8rem;
}

.footer-row p:last-child {
  text-align: right;
}

.brand-footer {
  color: var(--white);
  font-size: 1.15rem;
}

.brand-footer .brand-mark {
  width: 2rem;
  height: 2rem;
  font-size: 0.8rem;
}

.gallery-hero {
  padding: clamp(1.5rem, 2.5vw, 2.25rem) 0 clamp(1.5rem, 2vw, 2rem);
  background: var(--blush);
  border-bottom: 1px solid var(--line);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr minmax(19rem, 0.65fr);
  align-items: center;
  gap: 3rem;
}

.gallery-heading h1 {
  margin-bottom: 0;
  font-size: clamp(3.25rem, 5vw, 5.25rem);
}

.gallery-heading > p {
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.gallery-section {
  min-height: 55vh;
  padding-top: clamp(1rem, 2vw, 1.75rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 52%;
}

.gallery-item figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-weight: 750;
}

.gallery-item figcaption small {
  color: var(--ink-soft);
  font-weight: 500;
}

.gallery-count {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 850;
}

.gallery-message h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.gallery-message p {
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

@media (min-width: 901px) {
  .hero-copy {
    transform: translateY(-1rem);
  }

  .logo-stage {
    transform: translateY(1.5rem);
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .section-heading,
  .contact-card,
  .gallery-heading,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .logo-stage {
    min-height: auto;
  }

  .orbit {
    display: none;
  }

  .hero-logo {
    width: min(82%, 25rem);
  }

  .section-heading,
  .gallery-heading {
    gap: 1rem;
  }

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

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

  .footer-row {
    grid-template-columns: 1fr;
  }

  .footer-row p:last-child {
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 1.5rem, 1160px);
  }

  html {
    scroll-padding-top: 5.25rem;
  }

  .nav-wrap {
    min-height: 4.75rem;
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  h1 em {
    white-space: normal;
  }

  .header-logo-link {
    width: 4.5rem;
    height: 5rem;
  }

  .header-logo-link img {
    max-height: 4.5rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  #oferta {
    padding-top: 1.75rem;
  }

  #oferta .service-card {
    min-height: auto;
  }

  .gallery-hero {
    padding: 1.5rem 0;
  }

  .gallery-section {
    padding-top: 1rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .trust-row span {
    padding: 0.9rem 0.5rem;
  }

  .trust-row span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .achievement-list {
    grid-template-columns: 1fr;
  }

  .achievement-list div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-details > a:first-child {
    overflow-wrap: anywhere;
  }

  .gallery-item figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
