:root {
  --cream: #fff7ed;
  --cream-deep: #ead6c0;
  --blush: #efd0cf;
  --pink: #bd7479;
  --blue: #dcebf0;
  --ink: #4a352b;
  --muted: #7b675d;
  --white: #fffaf5;
  --line: rgba(71, 52, 58, 0.14);
  --shadow: 0 24px 70px rgba(117, 78, 86, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --script: "Allura", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(239, 208, 207, 0.28), transparent 34rem),
    var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 18px clamp(24px, 5vw, 82px);
  border-bottom: 1px solid rgba(71, 52, 58, 0.09);
  background: rgba(255, 248, 240, 0.92);
  box-shadow: 0 8px 30px rgba(116, 82, 91, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.8);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  grid-area: 1 / 1;
}

.brand-mark span {
  grid-area: 1 / 1;
}

.brand-mark img + span {
  visibility: hidden;
}

.brand strong,
footer p {
  display: block;
  font-family: var(--script);
  font-size: clamp(2.25rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 0.78;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 9px;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  padding-left: 6px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.2vw, 30px);
  margin-left: auto;
}

.nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible {
  color: #a66373;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  text-decoration: none;
}

.header-actions a:hover,
.header-actions a:focus-visible {
  background: var(--blush);
}

.header-actions svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--blush);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 91vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px 24px 42px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-collage {
  background:
    repeating-linear-gradient(90deg, rgba(74, 53, 43, 0.018) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 76% 42%, rgba(239, 208, 207, 0.42), transparent 27rem),
    radial-gradient(circle at 92% 72%, rgba(220, 235, 240, 0.52), transparent 24rem),
    linear-gradient(135deg, #fff8f0, #f7eadc 58%, #f5e0de);
}

.hero-image img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: 58% center;
}

.hero-collage::before,
.hero-collage::after {
  position: absolute;
  border: 1px solid rgba(166, 99, 115, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-collage::before {
  right: 2.5%;
  top: 10%;
  width: 42vw;
  height: 42vw;
}

.hero-collage::after {
  right: 20%;
  bottom: 7%;
  width: 16vw;
  height: 16vw;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 248, 240, 1) 0%, rgba(255, 248, 240, 0.98) 38%, rgba(255, 248, 240, 0.68) 52%, rgba(255, 248, 240, 0.08) 72%, rgba(255, 248, 240, 0) 100%),
    linear-gradient(0deg, rgba(255, 248, 240, 0.78), transparent 38%);
}

.hero-content {
  width: min(560px, 100%);
  margin: 0 auto 5vh 2.5vw;
}

.eyebrow {
  margin: 0 0 12px;
  color: #b36d73;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1;
}

h1 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(3.55rem, 6.5vw, 6.1rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.05;
}

.hero-content > p:not(.eyebrow),
.intro > p,
.contact-copy > p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 620px;
  margin-top: 54px;
}

.hero-notes div {
  display: grid;
  gap: 6px;
}

.note-icon {
  color: #bd7479;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.hero-notes strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.button,
.social-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(117, 78, 86, 0.16);
}

.button.primary {
  border-color: #bd7479;
  background: #bd7479;
  color: #fffaf5;
}

.button.soft,
.social-links a {
  background: rgba(255, 250, 245, 0.72);
  color: var(--ink);
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 42px;
  align-items: end;
}

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

.contact-form,
.gallery figure,
.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.66);
  box-shadow: var(--shadow);
}

.process span,
footer span {
  color: var(--muted);
}

.process {
  background: linear-gradient(135deg, var(--blue), var(--blush) 48%, var(--cream-deep));
}

.process-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.process ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(71, 52, 58, 0.16);
  padding: 0 0 18px;
}

.process strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.05;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-photo {
  position: relative;
  aspect-ratio: 1;
}

.gallery-photo img,
.missing-photo {
  width: 100%;
  height: 100%;
}

.gallery-photo img {
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-photo:not(.is-missing):hover img {
  filter: saturate(1.04) brightness(1.02);
  transform: scale(1.025);
}

.character-bag img {
  object-position: 50% 64%;
  transform: scale(1.08);
}

.character-bag:not(.is-missing):hover img {
  transform: scale(1.11);
}

.testimonials {
  padding-top: 24px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-grid article {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 270px;
  padding: 24px;
}

.testimonial-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.stars {
  color: #079886;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.missing-photo {
  display: none;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(247, 223, 228, 0.72), rgba(201, 221, 233, 0.62)),
    var(--white);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.gallery-photo.is-missing .missing-photo {
  display: grid;
}

.gallery-photo.is-missing img {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 22px 28px;
  background: rgba(43, 30, 35, 0.76);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(29, 18, 21, 0.4);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 44px;
  border: 1px solid rgba(255, 250, 245, 0.42);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 250, 245, 0.9);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 250, 245, 0.42);
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.9);
  color: var(--ink);
  cursor: pointer;
  font: 400 2.4rem/1 var(--serif);
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--white);
  outline: 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 42px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #d790a2;
  box-shadow: 0 0 0 4px rgba(215, 144, 162, 0.18);
  outline: 0;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #7d5761;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #d790a2;
  color: #fffaf5;
  box-shadow: 0 16px 38px rgba(117, 78, 86, 0.26);
  font-weight: 900;
  text-decoration: none;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 30px 24px 36px;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    inset: 12px 12px auto;
    border-radius: 28px;
    align-items: flex-start;
    padding: 12px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 250, 245, 0.68);
    border-radius: 22px;
    padding: 10px;
    background: rgba(255, 250, 245, 0.94);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 80vh;
    align-items: end;
    padding: 110px 20px 30px;
  }

  .hero-collage {
    height: 44%;
    inset: 0 0 auto;
  }

  .hero-collage::before,
  .hero-collage::after {
    display: none;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(255, 248, 240, 0.98) 0%, rgba(255, 248, 240, 0.7) 62%, rgba(255, 248, 240, 0.1) 100%),
      linear-gradient(90deg, rgba(255, 248, 240, 0.78), rgba(255, 248, 240, 0.18));
  }

  .hero-content {
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 5.3rem);
  }

  .hero-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .hero-notes p {
    display: none;
  }

  .intro,
  .process-inner,
  .contact {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 32px, 720px);
    padding: 72px 0;
  }

  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 1.78rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .header-actions {
    gap: 2px;
    margin-left: auto;
  }

  .header-actions a {
    width: 34px;
    height: 34px;
  }

  .lightbox {
    padding-inline: 14px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .hero-actions,
  .social-links {
    flex-direction: column;
  }

  .hero {
    min-height: 74vh;
    padding-top: 92px;
    padding-bottom: 24px;
  }

  .hero-collage {
    height: 34%;
  }

  .hero-image img {
    inset: 0;
    width: 100%;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-notes {
    display: none;
  }

  .hero-image img {
    object-position: 58% center;
  }

  .button,
  .social-links a {
    width: 100%;
  }

  .testimonial-grid {
    display: flex;
    gap: 12px;
    margin-inline: -16px;
    overflow-x: auto;
    padding: 0 16px 10px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-grid article {
    flex: 0 0 min(82vw, 320px);
    min-height: 220px;
    padding: 20px;
    scroll-snap-align: start;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  footer {
    flex-direction: column;
  }
}
