@font-face {
  font-family: "Wild Magnolia";
  src:
    local("Wild Magnolia"),
    local("WildMagnolia"),
    url("../fonts/wild-magnolia.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --bg-dark: #111111;
  --bg-light: #f2f2f2;
  --accent: #d9a5a5;
  --accent-soft: #efdddd;
  --warm: #d3b08a;
  --warm-light: #e6d4bd;
  --text-light: #ffffff;
  --text-dark: #111111;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-dark: rgba(17, 17, 17, 0.68);
  --border-soft: rgba(255, 255, 255, 0.14);
  --shadow-card: 0 20px 60px rgba(17, 17, 17, 0.12);
  --radius-shell: 2rem;
  --radius-card: 1.25rem;
  --container: min(calc(100% - 4rem), 1520px);
  --title-font: "Anton", Impact, sans-serif;
  --body-font: "Manrope", sans-serif;
  --transition: 240ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background:
    radial-gradient(circle at top, rgba(217, 165, 165, 0.08), transparent 28%),
    #1a1a1a;
  color: var(--text-light);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform var(--transition);
}

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

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #f1c739;
  outline-offset: 4px;
}

.page-shell {
  width: 100%;
  margin: 0;
  background: var(--bg-dark);
  border: none;
  border-radius: 0;
  overflow: clip;
  position: relative;
}

.section-dark,
.section-light,
.site-footer {
  position: relative;
  isolation: isolate;
}

.section-dark::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.18;
  pointer-events: none;
}

.site-header {
  width: min(100% - 4rem, 1520px);
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  padding: 1.05rem 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border-radius: 1.4rem;
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background-color var(--transition),
    backdrop-filter var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-logo {
  display: block;
  width: clamp(5.6rem, 10vw, 7.4rem);
  height: 2.45rem;
  object-fit: contain;
  object-position: center;
  border-radius: 0.3rem;
}

.footer-brand .brand-logo {
  width: 7.4rem;
  height: 3.1rem;
}

.brand-flower,
.flower {
  display: inline-block;
  background: var(--accent);
}

.brand-flower {
  width: 0.65rem;
  aspect-ratio: 1;
  clip-path: polygon(
    50% 0%,
    64% 18%,
    84% 10%,
    76% 32%,
    100% 50%,
    76% 68%,
    84% 90%,
    64% 82%,
    50% 100%,
    36% 82%,
    16% 90%,
    24% 68%,
    0% 50%,
    24% 32%,
    16% 10%,
    36% 18%
  );
  box-shadow: 0 0 0 0.25rem rgba(217, 165, 165, 0.18);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.9;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.header-cta {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(217, 165, 165, 0.22);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(217, 165, 165, 0.3);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text-light);
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  margin: 0.26rem auto;
  background: currentColor;
}

main section,
.site-footer {
  padding-inline: clamp(1.5rem, 3vw, 3rem);
}

main section {
  scroll-margin-top: 7rem;
}

.hero-grid,
.section-intro,
.about-layout,
.skills-header,
.skills-stats,
.portfolio .section-title,
.carousel,
.quote-orbit,
.section-title.huge,
.testimonial-grid,
.footer-topline,
.footer-main,
.footer-wordmark,
.copyright {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.hero {
  padding-top: 6rem;
  padding-bottom: 2rem;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.hero-grid {
  min-height: calc(100vh - 8rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
}

.hero-copy,
.hero-visual {
  position: relative;
  grid-area: 1 / 1;
}

.hero-copy {
  z-index: 1;
  min-height: calc(100vh - 8rem);
  display: grid;
  align-content: end;
  padding-bottom: 2rem;
}

.hero-copy > :not(.hero-title) {
  position: relative;
  z-index: 3;
  max-width: fit-content;
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label.light {
  color: var(--text-light);
}

.hero-title,
.section-title,
.footer-wordmark,
.footer-topline {
  font-family: var(--title-font);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-title {
  margin: 0;
  display: block;
  line-height: 0.9;
  font-size: clamp(9.25rem, 24vw, 21rem);
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}

.hero-title-kicker {
  position: absolute;
  left: 9.5%;
  top: -1.08em;
  font-family: var(--title-font);
  font-size: clamp(1.9rem, 4.8vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.glitch {
  position: relative;
  display: inline-block;
  color: var(--text-light);
  text-shadow:
    1px 0 rgba(255, 255, 255, 0.6),
    -1px 0 rgba(217, 165, 165, 0.46);
  animation: noiseShift 2.4s infinite steps(1);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0.45;
  mix-blend-mode: screen;
}

.glitch::before {
  color: rgba(255, 255, 255, 0.75);
  transform: translate(-2px, 1px);
  clip-path: inset(12% 0 55% 0);
}

.glitch::after {
  color: rgba(217, 165, 165, 0.9);
  transform: translate(2px, -1px);
  clip-path: inset(55% 0 10% 0);
}

.hero-tagline,
.section-copy {
  max-width: 26rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.hero-note {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
  line-height: 1.05;
}

.crosshair {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: relative;
}

.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(217, 165, 165, 0.85);
}

.crosshair::before {
  width: 1px;
  height: 5rem;
  transform: translate(-50%, -50%);
}

.crosshair::after {
  width: 5rem;
  height: 1px;
  transform: translate(-50%, -50%);
}

.crosshair {
  box-shadow: 0 0 0 0.2rem rgba(217, 165, 165, 0.12) inset;
}

.hero-visual {
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: center;
  z-index: 2;
  width: 100%;
}

.hero-visual img,
.quote-image-wrap img,
.footer-portrait {
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
}

.hero-visual img {
  width: min(100%, 760px);
  height: min(90vh, 980px);
  border-radius: 1.5rem 1.5rem 0 0;
  margin-inline: auto;
  filter: none;
}

.hero-lines {
  position: absolute;
  inset: 8% 0 18% 0;
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.stamp-badge {
  width: 7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(217, 165, 165, 0.45);
  background:
    radial-gradient(circle, #111111 0 24%, transparent 24%),
    radial-gradient(circle, rgba(217, 165, 165, 0.18), rgba(217, 165, 165, 0.06));
  color: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 0 0 0.55rem rgba(217, 165, 165, 0.09) inset;
}

.stamp-badge span {
  grid-area: 1 / 1;
}

.stamp-badge span:nth-child(1) {
  transform: translateY(-1.35rem);
}

.stamp-badge span:nth-child(2) {
  transform: translateY(0);
}

.stamp-badge span:nth-child(3) {
  transform: translateY(1.35rem);
}

.hero .stamp-badge {
  position: absolute;
  right: clamp(0rem, 3vw, 2rem);
  top: 46%;
}

.hero-aside {
  position: absolute;
  left: 0;
  top: 12rem;
  max-width: 11rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--muted);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.section-copy {
  color: var(--muted-dark);
  justify-self: end;
}

.about-layout {
  display: grid;
  gap: 2rem;
  margin-top: 2.2rem;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(3.3rem, 8vw, 6.2rem);
  line-height: 0.93;
}

.section-title.oversized {
  max-width: 12ch;
  justify-self: center;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: end;
}

.portrait-card {
  display: block;
  overflow: hidden;
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.26), transparent 45%),
    linear-gradient(145deg, var(--warm-light), var(--warm));
  height: clamp(15rem, 20vw, 22rem);
  box-shadow: var(--shadow-card);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
}

.portrait-card.tall {
  height: clamp(17rem, 24vw, 27rem);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.portrait-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.18);
}

.skills {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.skills-header {
  display: grid;
  gap: 2rem;
}

.progress-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-ornament::before,
.progress-ornament::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(217, 165, 165, 0.7), rgba(217, 165, 165, 0.1));
}

.flower {
  flex: none;
  clip-path: path(
    "M29 0C37.2843 0 44 6.71573 44 15C44 20.9988 40.4819 26.1758 35.4062 28.5869C41.7404 29.0805 46.7341 34.3951 46.7344 40.8574C46.7344 47.6454 41.2314 53.1484 34.4434 53.1484C28.2638 53.1481 23.1509 48.5801 22.291 42.6377C20.3068 47.4803 15.5506 50.8906 10 50.8906C2.26801 50.8906 -4 44.6226 -4 36.8906C-4 30.7071 0.00974918 25.4581 5.57715 23.6631C2.22827 21.2086 0 17.2545 0 12.7773C0 5.72063 5.72063 0 12.7773 0C19.4194 0.000311699 24.8782 5.06662 25.5078 11.5459C27.8665 4.80887 33.7829 0 40.8867 0H29Z"
  );
}

.flower-large {
  width: 4.2rem;
  height: 4.2rem;
}

.flower-small {
  width: 1.75rem;
  height: 1.75rem;
}

.flower.dim {
  opacity: 0.35;
}

.skills-stats {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.stat-number {
  font-family: var(--title-font);
  font-size: clamp(5rem, 11vw, 9rem);
  line-height: 0.9;
  color: var(--accent);
}

.stat-copy h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 0.95;
}

.stat-copy p {
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span,
.footer-book span {
  transition: transform var(--transition);
}

.text-link:hover span,
.text-link:focus-visible span,
.footer-book:hover span,
.footer-book:focus-visible span {
  transform: translate(0.18rem, -0.18rem);
}

.skills-stats:hover .stat-number {
  transform: translateY(-3px);
}

.portfolio-intro {
  margin-bottom: 1rem;
}

.carousel {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 28%);
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 1rem 0.2rem 1.5rem;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  scroll-snap-align: center;
  border-radius: 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(145deg, var(--warm-light), var(--warm));
  min-height: clamp(23rem, 30vw, 32rem);
  box-shadow: var(--shadow-card);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rotate-left {
  transform: rotate(-6deg);
}

.rotate-right {
  transform: rotate(6deg);
}

.carousel-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 26px 50px rgba(17, 17, 17, 0.16);
}

.carousel-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: white;
  color: var(--text-dark);
  display: grid;
  place-items: center;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.carousel-button.next {
  background: #f1c739;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
}

.quote-section {
  padding-block: clamp(4rem, 8vw, 6rem);
  display: grid;
  place-items: center;
}

.quote-orbit {
  position: relative;
  width: min(100%, 700px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.quote-image-wrap {
  width: min(58%, 290px);
  aspect-ratio: 0.75;
  overflow: hidden;
  border-radius: 999px 999px 1.5rem 1.5rem;
}

.quote-image-wrap img {
  width: 100%;
  height: 100%;
}

.circular-text {
  position: absolute;
  inset: 0;
  animation: spin 16s linear infinite;
}

.circular-text text {
  fill: white;
  font-family: var(--title-font);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
}

.testimonials {
  overflow: hidden;
}

.testimonial-layout {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  justify-items: center;
}

.section-title.huge {
  font-size: clamp(4rem, 13vw, 9.5rem);
  text-align: center;
}

.testimonial-grid {
  width: 100%;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
  justify-items: center;
}

.testimonial-top {
  margin-bottom: -1.2rem;
}

.flower-card {
  --flower-fill: #ffffff;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin-inline: auto;
  position: relative;
  background:
    radial-gradient(circle at 50% 20%, var(--flower-fill) 0 18%, transparent 18.5%),
    radial-gradient(circle at 24% 42%, var(--flower-fill) 0 18%, transparent 18.5%),
    radial-gradient(circle at 76% 42%, var(--flower-fill) 0 18%, transparent 18.5%),
    radial-gradient(circle at 38% 74%, var(--flower-fill) 0 18%, transparent 18.5%),
    radial-gradient(circle at 62% 74%, var(--flower-fill) 0 18%, transparent 18.5%),
    radial-gradient(circle at 50% 50%, var(--flower-fill) 0 26%, transparent 26.5%);
  box-shadow: none;
  padding: 4.2rem 3rem;
  text-align: center;
}

.testimonial-content {
  position: absolute;
  inset: 26% 24% 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
}

.flower-card.pink {
  --flower-fill: var(--accent-soft);
}

.stars {
  letter-spacing: 0.16em;
  font-size: 0.92rem;
}

.testimonial p {
  margin: 0;
  color: rgba(17, 17, 17, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.testimonial h3 {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer {
  padding-top: 2rem;
  padding-bottom: 1.3rem;
}

.footer-topline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--accent-soft);
}

.footer-topline span:first-child {
  justify-self: start;
}

.footer-topline span:last-child {
  justify-self: end;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-top: 1rem;
}

.footer-left {
  position: relative;
  min-height: 21rem;
  display: flex;
  align-items: end;
  justify-content: center;
}

.footer-portrait {
  width: auto;
  max-width: min(100%, 760px);
  height: 32rem;
  margin-inline: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(1.2rem);
}

.footer-stamp {
  position: absolute;
  left: 0;
  top: 3rem;
}

.footer-links {
  display: grid;
  gap: 1.8rem;
  justify-items: start;
  align-content: center;
  text-transform: uppercase;
}

.footer-action {
  max-width: 17rem;
}

.footer-action p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-book {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--accent);
  color: var(--accent-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-links nav {
  display: grid;
  gap: 0.7rem;
  font-size: 0.92rem;
}

.footer-contact-cta {
  display: grid;
  gap: 0.55rem;
  max-width: 18rem;
  margin-top: 0.25rem;
}

.footer-contact-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(247, 242, 233, 0.28);
  border-radius: 999px;
  color: var(--hero-ivory);
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-contact-links a {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

.footer-contact-links svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  stroke: none;
}

.footer-contact-links svg rect,
.footer-contact-links svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-contact-links svg .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-contact-links a:hover,
.footer-contact-links a:focus-visible {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.floating-whatsapp-cta {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 30;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp-cta:hover,
.floating-whatsapp-cta:focus-visible {
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(0,0,0,.34);
}

.floating-whatsapp-cta svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.35rem;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
}

.footer-wordmark {
  margin-top: -0.35em;
  font-size: clamp(5.6rem, 16vw, 12rem);
  line-height: 0.82;
  text-align: center;
}

.copyright {
  margin: 0.3rem 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.reveal-section {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes noiseShift {
  0%,
  100% {
    filter: contrast(1);
  }

  20% {
    filter: contrast(1.15) saturate(0.85);
  }

  40% {
    filter: blur(0.2px) contrast(1.08);
  }

  60% {
    filter: contrast(1.25);
  }

  80% {
    filter: saturate(0.9);
  }
}

@media (max-width: 1080px) {
  .section-intro,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7.5rem;
    min-height: auto;
    display: block;
  }

  .hero-copy {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-copy {
    order: 1;
  }

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

  .hero-title {
    top: 50%;
    font-size: clamp(7.4rem, 21vw, 13.8rem);
  }

  .hero-title-kicker {
    left: 9%;
    top: -1em;
    font-size: clamp(1.5rem, 4.4vw, 3.1rem);
  }

  .hero-visual img {
    width: min(100%, 620px);
    height: 35rem;
    border-radius: 1.6rem;
  }

  .hero-aside {
    left: auto;
    right: 0.5rem;
    top: 3rem;
  }

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

  .carousel-track {
    grid-auto-columns: minmax(240px, 45%);
  }

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

  .footer-links {
    justify-items: center;
  }
}

@media (max-width: 1024px) {
  :root {
    --container: min(calc(100% - 2.5rem), 980px);
  }

  main section,
  .site-footer {
    padding-inline: clamp(1.25rem, 3vw, 2rem);
  }

  .site-header {
    width: calc(100% - 2rem);
    top: 0.9rem;
    padding: 0.95rem 1rem;
  }

  .hero {
    padding-top: 6.8rem;
  }

  .hero-grid {
    gap: 1.5rem;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(6.3rem, 17vw, 11.1rem);
  }

  .hero-title-kicker {
    left: 8.5%;
  }

  .hero-tagline,
  .section-copy {
    max-width: 34rem;
    font-size: 0.92rem;
  }

  .hero-note {
    margin-top: 2.5rem;
  }

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

  .hero-visual img {
    width: min(100%, 500px);
    height: 30rem;
  }

  .section-intro {
    gap: 1rem;
  }

  .about-layout {
    gap: 1.5rem;
  }

  .section-title {
    font-size: clamp(3rem, 7.4vw, 5rem);
  }

  .about-gallery {
    gap: 1rem;
  }

  .carousel-track {
    grid-auto-columns: minmax(240px, 44%);
    gap: 1rem;
  }

  .quote-orbit {
    width: min(100%, 560px);
  }

  .circular-text text {
    font-size: 1.5rem;
  }

  .testimonial-grid {
    gap: 1rem;
  }

  .flower-card {
    width: min(100%, 300px);
    padding: 2.8rem 1.9rem;
  }

  .footer-main {
    gap: 1.5rem;
  }

  .footer-portrait {
    width: min(100%, 360px);
    height: 24rem;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    width: calc(100% - 1rem);
    top: 0.5rem;
    grid-template-columns: auto auto auto;
    padding: 0.9rem 1rem;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100dvh;
    padding: 6.5rem 1.5rem 2rem;
    background:
      radial-gradient(circle at top, rgba(217, 165, 165, 0.08), transparent 30%),
      rgba(17, 17, 17, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    z-index: -1;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--transition),
      opacity var(--transition);
  }

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

  .site-nav a {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }

  .menu-toggle {
    display: block;
    justify-self: center;
    z-index: 2;
  }

  .header-cta {
    justify-self: end;
    padding-inline: 0.85rem;
    font-size: 0.65rem;
    z-index: 2;
  }

  .hero-grid {
    min-height: auto;
    gap: 1rem;
  }

  .hero-copy {
    padding-top: 1rem;
    z-index: 3;
    pointer-events: none;
  }

  .hero-title {
    top: 50%;
    font-size: clamp(4.8rem, 20vw, 7rem);
    z-index: 4;
    text-shadow: 0 3px 28px rgba(17, 17, 17, 0.42);
  }

  .hero-title-kicker {
    left: 8%;
    top: -0.98em;
    font-size: clamp(1.15rem, 6.4vw, 2rem);
  }

  .hero-copy .eyebrow,
  .hero-copy .hero-tagline,
  .hero-note,
  .hero-aside {
    display: none;
  }

  .eyebrow,
  .section-label {
    font-size: 0.74rem;
  }

  .hero-tagline,
  .section-copy {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero-visual img {
    width: 100%;
    height: min(28rem, 82vh);
  }

  .hero .stamp-badge {
    width: 5.8rem;
    right: 0.3rem;
    top: auto;
    bottom: 3rem;
  }

  .hero-aside {
    position: static;
    margin: 1rem 0 0 auto;
    text-align: right;
  }

  .hero-note {
    margin-top: 2rem;
    font-size: 0.92rem;
    align-items: flex-start;
  }

  .section-title,
  .section-title.huge {
    text-align: left;
  }

  .section-title {
    font-size: clamp(2.65rem, 13vw, 4.5rem);
  }

  .section-title.huge {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .section-intro,
  .about-layout,
  .skills-header,
  .skills-stats,
  .footer-main {
    gap: 1.1rem;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .testimonial-top {
    margin-bottom: 0.4rem;
  }

  .portrait-card,
  .portrait-card.tall {
    min-height: 20rem;
  }

  .skills-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .carousel-track {
    order: 0;
    grid-auto-columns: 78%;
    gap: 0.9rem;
    padding-inline: 0.1rem;
  }

  .carousel-button {
    display: none;
  }

  .quote-orbit {
    width: min(100%, 360px);
  }

  .circular-text text {
    font-size: 1.25rem;
  }

  .footer-topline {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.4rem;
  }

  .footer-topline span:first-child,
  .footer-topline span:last-child {
    justify-self: center;
  }

  .footer-left {
    min-height: 16rem;
    justify-content: center;
  }

  .footer-stamp {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .footer-portrait {
    height: 19rem;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-links nav {
    justify-items: center;
  }

  .flower-card {
    width: min(100%, 360px);
    padding: 3.2rem 2.2rem;
  }

  .testimonial-content {
    inset: 25% 22% 22%;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(calc(100% - 1.25rem), 100%);
  }

  main section,
  .site-footer {
    padding-inline: 0.75rem;
  }

  .site-header {
    width: calc(100% - 0.75rem);
    padding: 0.75rem 0.8rem;
  }

  .brand {
    font-size: 0.72rem;
  }

  .header-cta {
    padding: 0.62rem 0.72rem;
    font-size: 0.58rem;
  }

  .menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 1.5rem;
  }

  .hero-copy {
    padding-top: 0.5rem;
  }

  .hero-title {
    font-size: clamp(4.1rem, 18vw, 5.4rem);
  }

  .hero-title-kicker {
    left: 4%;
    top: -1.02em;
    font-size: clamp(1rem, 7vw, 1.5rem);
  }

  .hero-note {
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  .crosshair {
    width: 3.75rem;
    height: 3.75rem;
  }

  .crosshair::before {
    height: 3.75rem;
  }

  .crosshair::after {
    width: 3.75rem;
  }

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

  .hero-visual img {
    height: min(24.5rem, 72vh);
    border-radius: 1.15rem;
  }

  .hero .stamp-badge {
    width: 4.9rem;
    bottom: 1.5rem;
  }

  .testimonial-content {
    inset: 24% 19% 21%;
  }

  .stamp-badge {
    font-size: 0.58rem;
  }

  .stamp-badge span:nth-child(1) {
    transform: translateY(-0.95rem);
  }

  .stamp-badge span:nth-child(3) {
    transform: translateY(0.95rem);
  }

  .section-light,
  .skills,
  .quote-section,
  .site-footer {
    padding-block: 3rem;
  }

  .section-title {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .section-title.huge {
    font-size: clamp(2.9rem, 17vw, 4.7rem);
  }

  .stat-number {
    font-size: clamp(4rem, 23vw, 5.8rem);
  }

  .stat-copy h2 {
    font-size: clamp(1.75rem, 10vw, 2.8rem);
  }

  .carousel-track {
    grid-auto-columns: 86%;
  }

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

  .quote-orbit {
    width: min(100%, 300px);
  }

  .quote-image-wrap {
    width: min(60%, 200px);
  }

  .circular-text text {
    font-size: 1rem;
  }

  .flower-card {
    width: min(100%, 300px);
    padding: 2.8rem 1.7rem;
  }

  .testimonial-content {
    width: 46%;
    transform: translateY(-0.1rem);
  }

  .testimonial p {
    font-size: 0.85rem;
  }

  .footer-portrait {
    width: min(100%, 270px);
    height: 16rem;
  }

  .footer-wordmark {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .copyright {
    text-align: center;
  }
}

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

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

  .reveal-section {
    opacity: 1;
    transform: none;
  }
}

.site-nav .menu,
.footer-links .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .menu {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.site-nav .menu li a {
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
  position: relative;
}

.site-nav .menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.footer-links .menu {
  display: grid;
  gap: 0.7rem;
}

.footer-links .menu li a {
  color: inherit;
  text-decoration: none;
}

.custom-logo-link,
.brand-text {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.custom-logo-link img {
  max-height: 2rem;
  width: auto;
}

.content-shell {
  min-height: 100vh;
  padding-block: 8rem 4rem;
}

.wp-content-wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.wp-entry {
  max-width: 900px;
  margin-inline: auto;
}

.archive-list {
  display: grid;
  gap: 2rem;
}

.entry-content,
.entry-content p,
.entry-content li {
  color: rgba(17, 17, 17, 0.76);
  line-height: 1.8;
  font-size: 1rem;
}

.entry-content a {
  color: inherit;
}

.entry-thumbnail {
  margin: 2rem 0;
}

.entry-thumbnail img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.sidebar-area {
  width: 100%;
  max-width: 320px;
  margin: 3rem auto 0;
}

.widget {
  margin-bottom: 2rem;
}

.widget-title {
  margin: 0 0 1rem;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-size: 1.8rem;
}

@media (max-width: 760px) {
  .site-nav .menu {
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
  }

  .site-nav .menu li a {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }
}

/* Photo-led hero: the source image remains untouched in public/images. */
:root {
  --hero-display: "Italiana", "Times New Roman", serif;
  --hero-ivory: #f7f2e9;
  --hero-ink: #142126;
}

.site-header:not(.scrolled) {
  top: 2rem;
  width: min(calc(100% - 7rem), 1420px);
  padding: 0.8rem 0.9rem 0.8rem 1rem;
  background: rgba(20, 33, 38, 0.28);
  border-color: rgba(247, 242, 233, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.site-header:not(.scrolled) .site-nav {
  justify-self: end;
  justify-content: flex-end;
  gap: 0.2rem;
  margin-right: 0.7rem;
  padding: 0.3rem;
  border: 1px solid rgba(247, 242, 233, 0.3);
  border-radius: 999px;
  background: rgba(20, 33, 38, 0.12);
  letter-spacing: 0;
  text-transform: none;
}

.site-header:not(.scrolled) .site-nav a {
  min-height: 2.15rem;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--hero-ivory);
  font-size: 0.7rem;
  font-weight: 600;
}

.site-header:not(.scrolled) .site-nav a::after {
  display: none;
}

.site-header:not(.scrolled) .header-cta {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  background: var(--hero-ivory);
  color: var(--hero-ink);
  box-shadow: none;
}

.hero {
  min-height: 100svh;
  padding: 1rem clamp(1rem, 2.2vw, 2rem) 2rem;
  display: block;
  background: var(--bg-dark);
}

.hero::before {
  display: none;
}

.hero-grid {
  position: relative;
  isolation: isolate;
  min-height: max(700px, calc(100svh - 3rem));
  max-height: 920px;
  display: block;
  overflow: hidden;
  border-radius: clamp(1.4rem, 2.4vw, 2.3rem);
  background: #889090;
}

.hero-image,
.hero-image-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: 0;
  object-fit: cover;
  object-position: 58% 55%;
  filter: none !important;
}

.hero-image-overlay {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(14, 36, 45, 0.68) 0%,
    rgba(14, 36, 45, 0.43) 35%,
    rgba(14, 36, 45, 0.12) 56%,
    rgba(14, 36, 45, 0) 72%
  );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(44%, 580px);
  min-height: max(700px, calc(100svh - 3rem));
  padding: clamp(8.5rem, 16vh, 10rem) 0 12rem clamp(4rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-copy > :not(.hero-title) {
  max-width: none;
}

.hero-copy .eyebrow {
  margin-bottom: 1.1rem;
  color: rgba(247, 242, 233, 0.86);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.hero-title {
  position: static;
  width: auto;
  margin: 0;
  transform: none;
  pointer-events: auto;
  font-family: "Wild Magnolia", "Allura", cursive;
  font-size: clamp(4.4rem, 6vw, 6.4rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-align: left;
  text-transform: none;
  color: var(--hero-ivory);
}

.hero-title span {
  display: block;
}

.hero-tagline {
  max-width: 30rem;
  margin: 1.45rem 0 0;
  color: rgba(247, 242, 233, 0.9);
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.55;
}

.hero-primary-cta {
  min-height: 3rem;
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--hero-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-primary-cta > span:first-child,
.hero-primary-arrow {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-ivory);
}

.hero-primary-cta > span:first-child {
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
}

.hero-primary-arrow {
  width: 3rem;
  border-radius: 50%;
  font-size: 1rem;
  transition: transform var(--transition);
}

.hero-primary-cta:hover .hero-primary-arrow,
.hero-primary-cta:focus-visible .hero-primary-arrow {
  transform: translate(0.12rem, -0.12rem);
}

.hero-proof {
  position: absolute;
  z-index: 3;
  left: clamp(4rem, 7vw, 7rem);
  bottom: 3rem;
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(247, 242, 233, 0.48);
  color: var(--hero-ivory);
}

.hero-proof-avatars {
  display: flex;
}

.hero-proof-avatars img {
  width: 2.35rem;
  height: 2.35rem;
  margin-left: -0.48rem;
  border: 1px solid var(--hero-ivory);
  border-radius: 50%;
  object-fit: cover;
}

.hero-proof-avatars img:first-child {
  margin-left: 0;
}

.hero-proof > div:last-child {
  display: grid;
  gap: 0.05rem;
}

.hero-proof strong {
  font-family: var(--hero-display);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 0.9;
}

.hero-proof span {
  color: rgba(247, 242, 233, 0.78);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .site-header:not(.scrolled) {
    width: calc(100% - 4rem);
  }

  .hero-image {
    object-position: 56% 55%;
  }

  .hero-copy {
    width: 55%;
    padding-left: 4.25rem;
  }

  .hero-title {
    font-size: clamp(4rem, 7.5vw, 5.7rem);
  }

  .hero-proof {
    left: 4.25rem;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header:not(.scrolled) {
    top: 0.5rem;
    width: calc(100% - 1rem);
    grid-template-columns: auto auto auto;
    padding: 0.9rem 1rem;
  }

  .site-header:not(.scrolled) {
    background: rgba(17, 25, 28, 0.7);
  }

  .site-header:not(.scrolled) .site-nav {
    position: fixed;
    inset: 0;
    min-height: 100dvh;
    margin: 0;
    padding: 6.5rem 1.5rem 2rem;
    border: 0;
    border-radius: 0;
    background: rgba(17, 25, 28, 0.98);
  }

  .site-header:not(.scrolled) .site-nav a {
    min-height: 3rem;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 0.45rem 0.45rem 1rem;
  }

  .hero-grid {
    min-height: 820px;
    max-height: none;
    border-radius: 1.4rem;
  }

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

  .hero-image-overlay {
    background: linear-gradient(
      90deg,
      rgba(14, 31, 38, 0.78) 0%,
      rgba(14, 31, 38, 0.6) 48%,
      rgba(14, 31, 38, 0.2) 100%
    );
  }

  .hero-copy {
    z-index: 3;
    width: 100%;
    min-height: 820px;
    padding: 8rem 1.7rem 15rem;
    justify-content: flex-start;
    pointer-events: auto;
  }

  .hero-copy .eyebrow,
  .hero-copy .hero-tagline {
    display: block;
  }

  .hero-copy .eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.66rem;
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  .hero-title {
    position: static;
    z-index: auto;
    max-width: 19rem;
    font-size: clamp(3.55rem, 14.5vw, 4.75rem);
    line-height: 0.94;
    letter-spacing: 0.01em;
    text-shadow: 0 3px 24px rgba(10, 20, 24, 0.18);
  }

  .hero-tagline {
    max-width: 19rem;
    margin-top: 0.9rem;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .hero-primary-cta {
    margin-top: 1.35rem;
  }

  .hero-proof {
    left: 1.7rem;
    bottom: 2rem;
  }
}

@media (max-width: 420px) {
  .hero-title {
    max-width: 17rem;
    font-size: clamp(3.2rem, 14vw, 4rem);
  }

  .hero-copy {
    padding-inline: 1.45rem;
  }

  .hero-proof {
    left: 1.45rem;
  }
}

/* Global editorial theme: extends the visual language of the header and hero. */
:root {
  --bg-dark: #142126;
  --bg-light: #f1eee7;
  --accent: #d9a5a5;
  --accent-soft: #f3e7e0;
  --text-dark: #142126;
  --muted: rgba(247, 242, 233, 0.68);
  --muted-dark: rgba(20, 33, 38, 0.68);
  --border-soft: rgba(247, 242, 233, 0.16);
  --shadow-card: 0 24px 70px rgba(20, 33, 38, 0.12);
  --title-font: var(--hero-display);
}

body {
  background: #10191d;
}

.page-shell {
  background: var(--bg-dark);
}

.section-dark,
.site-footer {
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 165, 165, 0.08), transparent 28%),
    var(--bg-dark);
  color: var(--hero-ivory);
}

.section-dark::before,
.site-footer::before {
  background-image: linear-gradient(90deg, rgba(247, 242, 233, 0.055) 1px, transparent 1px);
  background-size: min(12vw, 160px) 100%;
  opacity: 0.28;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 22%),
    var(--bg-light);
  color: var(--text-dark);
  padding-block: clamp(5rem, 8vw, 8rem);
}

.section-label,
.eyebrow {
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.section-copy {
  max-width: 31rem;
  color: var(--muted-dark);
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  line-height: 1.7;
}

.section-title,
.stat-number,
.stat-copy h2,
.footer-topline,
.footer-wordmark,
.circular-text text {
  font-family: var(--hero-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-transform: none;
}

.about-layout {
  gap: clamp(2.5rem, 5vw, 5rem);
  margin-top: clamp(3.5rem, 6vw, 6rem);
}

.about-intro {
  display: block;
  max-width: 65rem;
}

.about-intro .section-title {
  margin-top: clamp(1.5rem, 3vw, 2.75rem);
}

.about-intro .section-copy {
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 36rem;
  justify-self: start;
}

.section-title {
  font-size: clamp(3rem, 6.4vw, 6.5rem);
  line-height: 0.94;
}

.section-title.oversized {
  max-width: none;
  justify-self: start;
  text-align: left;
}

.section-title.oversized span {
  display: block;
  white-space: nowrap;
}

.about-gallery {
  gap: clamp(0.75rem, 1.5vw, 1.4rem);
}

.portrait-card,
.carousel-card {
  border: 1px solid rgba(20, 33, 38, 0.1);
  border-radius: 1.15rem;
  background: #d8d7d0;
  box-shadow: var(--shadow-card);
}

.portrait-card:hover,
.carousel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 74px rgba(20, 33, 38, 0.17);
}

.skills {
  padding-block: clamp(5rem, 8vw, 8rem);
}

.progress-ornament {
  gap: 0.75rem;
}

.progress-ornament::before,
.progress-ornament::after {
  height: 1px;
  background: linear-gradient(90deg, rgba(247, 242, 233, 0.12), rgba(217, 165, 165, 0.62));
}

.flower {
  background: var(--accent-soft);
}

.flower-large {
  width: 3.25rem;
  height: 3.25rem;
}

.flower-small {
  width: 1.15rem;
  height: 1.15rem;
}

.skills-stats {
  margin-top: 3.5rem;
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top-color: rgba(247, 242, 233, 0.14);
  gap: clamp(2rem, 5vw, 5rem);
}

.stat-number {
  font-size: clamp(4.5rem, 10vw, 8rem);
  color: var(--accent-soft);
}

.stat-copy h2 {
  max-width: 18ch;
  color: var(--hero-ivory);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
}

.stat-copy p {
  color: rgba(247, 242, 233, 0.68);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.text-link,
.footer-book {
  min-height: 2.8rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(247, 242, 233, 0.38);
  border-radius: 999px;
  color: var(--hero-ivory);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.portfolio-intro {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.portfolio .section-title {
  text-align: left;
}

.carousel {
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.carousel-track {
  gap: clamp(0.8rem, 1.5vw, 1.35rem);
  padding-block: 0.5rem 2rem;
}

.carousel-card,
.rotate-left,
.rotate-right {
  transform: none;
}

.carousel-button {
  width: 2.8rem;
  height: 2.8rem;
  border-color: rgba(20, 33, 38, 0.2);
  background: transparent;
  color: var(--text-dark);
}

.carousel-button.next {
  background: var(--text-dark);
  color: var(--hero-ivory);
}

.quote-section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.quote-image-wrap {
  border: 1px solid rgba(247, 242, 233, 0.2);
  border-radius: 999px 999px 1.25rem 1.25rem;
  box-shadow: 0 30px 90px rgba(3, 12, 15, 0.28);
}

.circular-text text {
  fill: var(--hero-ivory);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.testimonials {
  padding-bottom: clamp(5rem, 9vw, 9rem);
}

.section-title.huge {
  margin-block: clamp(2rem, 5vw, 4.5rem);
  color: var(--text-dark);
  font-size: clamp(4rem, 10vw, 9rem);
}

.testimonial-grid {
  gap: clamp(1rem, 2vw, 2rem);
}

.testimonial-top {
  margin-bottom: 0;
}

.flower-card,
.flower-card.pink {
  --flower-fill: transparent;
  width: min(100%, 640px);
  min-height: 16rem;
  aspect-ratio: auto;
  padding: clamp(2rem, 5vw, 4.25rem);
  border: 1px solid rgba(20, 33, 38, 0.14);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.flower-card.pink {
  background: rgba(217, 165, 165, 0.18);
}

.testimonial-content {
  position: static;
  width: 100%;
  min-height: 100%;
  gap: 1.25rem;
}

.stars {
  color: #956f6f;
  font-size: 0.75rem;
}

.testimonial p {
  width: 100%;
  max-width: 28rem;
  color: rgba(20, 33, 38, 0.82);
  font-family: var(--hero-display);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.16;
}

.testimonial h3 {
  color: rgba(20, 33, 38, 0.58);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.site-footer {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-topline {
  color: var(--hero-ivory);
  font-size: clamp(2rem, 4vw, 4rem);
}

.footer-portrait {
  border-radius: 1.25rem 1.25rem 0 0;
}

.footer-links {
  text-transform: none;
}

.footer-links nav {
  color: rgba(247, 242, 233, 0.76);
  font-size: 0.82rem;
}

.footer-action p {
  color: rgba(247, 242, 233, 0.58);
}

.footer-wordmark {
  color: var(--hero-ivory);
  font-size: clamp(5rem, 14vw, 11rem);
  letter-spacing: -0.055em;
}

@media (max-width: 760px) {
  .section-light,
  .skills,
  .quote-section {
    padding-block: 4.5rem;
  }

  .section-intro {
    gap: 1rem;
  }

  .section-title,
  .section-title.oversized,
  .portfolio .section-title {
    max-width: 12ch;
    font-size: clamp(2.8rem, 13vw, 4.4rem);
    line-height: 0.95;
    text-align: left;
  }

  .section-title.oversized span {
    display: inline;
    white-space: normal;
  }

  .about-layout {
    margin-top: 3rem;
  }

  .about-intro .section-copy {
    max-width: 22rem;
  }

  .about-gallery {
    gap: 0.65rem;
  }

  .portrait-card,
  .portrait-card.tall {
    border-radius: 0.85rem;
  }

  .skills-stats {
    gap: 1.25rem;
  }

  .stat-number {
    font-size: clamp(3.8rem, 19vw, 5.2rem);
  }

  .stat-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .stat-copy p {
    line-height: 1.6;
  }

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

  .carousel-button {
    display: none;
  }

  .carousel-track {
    grid-auto-columns: minmax(230px, 78%);
  }

  .section-title.huge {
    max-width: none;
    font-size: clamp(3.5rem, 17vw, 5.6rem);
    text-align: center;
  }

  .flower-card,
  .flower-card.pink {
    min-height: 13.5rem;
    padding: 2rem 1.35rem;
    border-radius: 1rem;
  }

  .testimonial p {
    font-size: clamp(1.3rem, 5.8vw, 1.7rem);
  }

  .footer-topline {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
  }
}

/* About showcase: centered editorial carousel inspired by the Vibesroom home interaction. */
.about-showcase {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
  overflow: clip;
}

.about-carousel-viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.about-carousel-track {
  --about-slide-width: min(56vw, 760px);
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 1.5rem);
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  padding: 1.5rem max(1rem, calc((100% - var(--about-slide-width)) / 2)) 2rem;
}

.about-carousel-track:active {
  cursor: grabbing;
}

.about-carousel-track::-webkit-scrollbar {
  display: none;
}

.about-carousel-slide {
  position: relative;
  flex: 0 0 var(--about-slide-width);
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid rgba(20, 33, 38, 0.12);
  border-radius: 1.2rem;
  background: #d8d7d0;
  box-shadow: 0 18px 52px rgba(20, 33, 38, 0.1);
  opacity: 0.4;
  transform: scale(0.86);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    box-shadow 420ms ease;
}

.about-carousel-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 32px 86px rgba(20, 33, 38, 0.18);
}

.about-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.about-carousel-slide.is-active:hover img {
  transform: scale(1.025);
}

.about-carousel-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(10, 20, 24, 0.78));
  pointer-events: none;
}

.about-carousel-slide figcaption {
  position: absolute;
  left: clamp(1rem, 2.5vw, 2rem);
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  color: var(--hero-ivory);
  opacity: 0;
  transform: translateY(0.7rem);
  transition:
    opacity 320ms ease 80ms,
    transform 320ms ease 80ms;
}

.about-carousel-slide.is-active figcaption {
  opacity: 1;
  transform: translateY(0);
}

.about-carousel-slide figcaption span {
  font-family: var(--body-font);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-carousel-slide figcaption strong {
  font-family: var(--hero-display);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.about-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 242, 233, 0.55);
  border-radius: 999px;
  background: rgba(20, 33, 38, 0.9);
  color: var(--hero-ivory);
  box-shadow: 0 12px 32px rgba(20, 33, 38, 0.2);
  transform: translateY(-85%);
  transition:
    transform var(--transition),
    background-color var(--transition);
}

.about-carousel-button:hover,
.about-carousel-button:focus-visible {
  background: #20353d;
  transform: translateY(-85%) scale(1.05);
}

.about-carousel-button.prev {
  left: clamp(0.75rem, 4vw, 4rem);
}

.about-carousel-button.next {
  right: clamp(0.75rem, 4vw, 4rem);
}

.about-carousel-status {
  width: min(56vw, 760px);
  margin: 0.2rem auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: rgba(20, 33, 38, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-carousel-count strong {
  color: var(--text-dark);
  font-family: var(--hero-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0;
}

.about-carousel-rule {
  height: 1px;
  background: rgba(20, 33, 38, 0.2);
}

.about-carousel-current {
  color: var(--text-dark);
}

@media (max-width: 760px) {
  .about-showcase {
    width: calc(100% + 1.5rem);
    max-width: none;
    margin-left: -0.75rem;
  }

  .about-carousel-track {
    --about-slide-width: min(78vw, 330px);
    gap: 0.55rem;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .about-carousel-slide {
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    transform: scale(0.9);
  }

  .about-carousel-slide figcaption {
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
  }

  .about-carousel-slide figcaption strong {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .about-carousel-button {
    top: auto;
    bottom: -0.25rem;
    width: 2.75rem;
    height: 2.75rem;
    transform: none;
  }

  .about-carousel-button:hover,
  .about-carousel-button:focus-visible {
    transform: scale(1.04);
  }

  .about-carousel-button.prev {
    left: 0.75rem;
  }

  .about-carousel-button.next {
    right: 0.75rem;
  }

  .about-carousel-status {
    width: calc(100% - 7.5rem);
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    min-height: 2.75rem;
  }

  .about-carousel-current {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-carousel-slide,
  .about-carousel-slide img,
  .about-carousel-slide figcaption {
    transition: none;
  }
}

/* Package captions stay below the active photo so each graduation offer reads like a card. */
.about-carousel-slide {
  aspect-ratio: auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--bg-light);
}

.about-carousel-slide::after {
  display: none;
}

.about-carousel-slide img {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
}

.about-carousel-slide figcaption {
  position: static;
  min-height: 8.5rem;
  padding: 1.15rem clamp(1rem, 2.5vw, 2rem) 1.35rem;
  display: grid;
  align-content: start;
  gap: 0.28rem;
  color: var(--text-dark);
  background: var(--bg-light);
  opacity: 0;
  transform: none;
  transition: opacity 320ms ease;
}

.about-carousel-slide.is-active figcaption {
  opacity: 1;
}

.about-carousel-slide figcaption span {
  color: rgba(20, 33, 38, 0.56);
  font-size: 0.6rem;
}

.about-carousel-slide figcaption strong {
  color: var(--text-dark);
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
}

.about-carousel-slide figcaption p {
  max-width: 34rem;
  margin: 0.25rem 0 0;
  color: rgba(20, 33, 38, 0.68);
  font-family: var(--body-font);
  font-size: clamp(0.7rem, 0.85vw, 0.82rem);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .about-carousel-slide {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .about-carousel-slide img {
    aspect-ratio: 4 / 5;
  }

  .about-carousel-slide figcaption {
    min-height: 8.5rem;
    padding: 0.95rem 1.1rem 1.15rem;
  }

  .about-carousel-slide figcaption strong {
    font-size: clamp(1.35rem, 7.5vw, 2rem);
  }

  .about-carousel-slide figcaption p {
    font-size: 0.7rem;
    line-height: 1.45;
  }
}

/* Package copy belongs under the main heading, not on top of the photography. */
.package-description {
  max-width: 30rem;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  margin-inline: auto;
  text-align: center;
  color: var(--muted-dark);
}

.about-intro {
  text-align: center;
}

.about-intro .section-title.oversized {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.package-description strong {
  display: block;
  color: var(--text-dark);
  font-family: var(--hero-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
}

.package-strips {
  display: grid;
  margin-top: 0.85rem;
  border-top: 1px solid rgba(20, 33, 38, 0.22);
}

.package-strips span {
  padding: 0.58rem 0.8rem;
  border-bottom: 1px solid rgba(20, 33, 38, 0.16);
  font-family: var(--body-font);
  font-size: clamp(0.72rem, 0.95vw, 0.86rem);
  line-height: 1.4;
}

.package-reservation-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 2.8rem;
  margin-top: 1.25rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(247, 242, 233, 0.52);
  border-radius: 999px;
  background: var(--bg-dark);
  color: var(--hero-ivory);
  font-family: var(--body-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background-color var(--transition);
}

.package-reservation-cta span {
  transition: transform var(--transition);
}

.package-reservation-cta:hover,
.package-reservation-cta:focus-visible {
  background: #20353d;
  transform: translateY(-2px);
}

.package-reservation-cta:hover span,
.package-reservation-cta:focus-visible span {
  transform: translate(0.16rem, -0.16rem);
}

.about-carousel-slide figcaption {
  display: none;
}

.about-carousel-current {
  display: none;
}

.about-carousel-status {
  grid-template-columns: auto 1fr;
}

@media (max-width: 760px) {
  .package-description {
    max-width: 22rem;
  }

  .about-intro .section-title.oversized {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }
}

/* Framed package panel over a softened editorial photo background. */
.about {
  position: relative;
  overflow: hidden;
  background: #21383e;
  color: var(--text-dark);
}

.about::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  z-index: 0;
  background:
    linear-gradient(rgba(20, 33, 38, 0.48), rgba(20, 33, 38, 0.48)),
    url("/images/hero-wellness.jpg") center 46% / cover no-repeat;
  filter: blur(13px);
  transform: scale(1.06);
  opacity: 0.82;
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(20, 33, 38, 0.2);
  pointer-events: none;
}

.about-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 233, 0.72);
  border-radius: 1.6rem;
  background: rgba(241, 238, 231, 0.97);
  box-shadow: 0 30px 100px rgba(5, 17, 20, 0.3);
}

.about-floating-title {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  max-width: none;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  color: var(--hero-ivory);
  font-size: clamp(4rem, 8vw, 8.2rem);
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 8px 28px rgba(5, 17, 20, 0.42);
}

.about-floating-title span {
  display: block;
  white-space: nowrap;
}

.about-frame .about-intro {
  max-width: none;
  padding: clamp(2.25rem, 5vw, 5rem) clamp(1.25rem, 5vw, 5rem) 1rem;
}

.about-frame .about-layout {
  margin-top: 0;
  padding: 0 clamp(0.5rem, 2vw, 2rem) clamp(1.5rem, 3vw, 3rem);
}

/* Each carousel item is one complete package card: copy, CTA, and photograph move together. */
.about-frame .about-intro {
  padding-bottom: 0;
}

.about-carousel-track {
  align-items: stretch;
}

.about-carousel-slide {
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
  background: rgba(247, 245, 239, 0.99);
}

.package-card-copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.5rem) clamp(1.15rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.package-card-copy h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--hero-display);
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  font-weight: 400;
  line-height: 1.08;
}

.package-card-copy .package-strips {
  width: 100%;
  max-width: 34rem;
  margin: 1rem auto 1.25rem;
}

.package-card-copy .package-reservation-cta {
  align-self: center;
  margin-top: auto;
}

.about-carousel-slide > img {
  flex: 0 0 auto;
  width: calc(100% - clamp(1.25rem, 3vw, 2.5rem));
  aspect-ratio: 4 / 3;
  height: auto;
  margin: 0 auto clamp(0.65rem, 1.5vw, 1.25rem);
  border-radius: 1rem;
  object-fit: cover;
  object-position: center;
}

.about-carousel-slide.is-active:hover > img {
  transform: none;
}

/* The portfolio now carries the dark editorial atmosphere of the archived experience section. */
.archived-section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 6rem;
}

.portfolio {
  padding-block: clamp(5rem, 8vw, 8rem);
  color: var(--hero-ivory);
}

.portfolio .section-label,
.portfolio .section-title {
  color: var(--hero-ivory);
}

.portfolio .section-copy {
  color: rgba(247, 242, 233, 0.68);
}

.portfolio-chip-list {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.portfolio-chip {
  min-width: 2.8rem;
  min-height: 2.35rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(247, 242, 233, 0.3);
  border-radius: 999px;
  background: transparent;
  color: rgba(247, 242, 233, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.portfolio-chip:hover,
.portfolio-chip:focus-visible {
  color: var(--hero-ivory);
  transform: translateY(-2px);
}

.portfolio-chip.is-active {
  border-color: var(--hero-ivory);
  background: var(--hero-ivory);
  color: var(--bg-dark);
}

.portfolio-gallery {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  columns: 3;
  column-gap: clamp(0.75rem, 1.4vw, 1.35rem);
}

.portfolio-gallery-card {
  width: 100%;
  margin: 0 0 clamp(0.75rem, 1.4vw, 1.35rem);
  display: inline-block;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(247, 242, 233, 0.18);
  border-radius: 1rem;
  background: #24363b;
  box-shadow: 0 24px 70px rgba(3, 12, 15, 0.34);
  vertical-align: top;
}

.portfolio-gallery-card:nth-child(1) {
  aspect-ratio: 4 / 3;
}

.portfolio-gallery-card:nth-child(2) {
  aspect-ratio: 2 / 3;
}

.portfolio-gallery-card:nth-child(3) {
  aspect-ratio: 5 / 4;
}

.portfolio-gallery-card:nth-child(4) {
  aspect-ratio: 3 / 5;
}

.portfolio-gallery-card:nth-child(5) {
  aspect-ratio: 4 / 3;
}

.portfolio-gallery-card:nth-child(6) {
  aspect-ratio: 3 / 4;
}

.portfolio-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.portfolio-gallery-card:hover img {
  transform: scale(1.025);
}

.portfolio-gallery-empty {
  min-height: clamp(18rem, 42vw, 34rem);
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(247, 242, 233, 0.24);
  border-radius: 1rem;
  color: rgba(247, 242, 233, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 5.8rem;
    height: 2.2rem;
  }

  .footer-brand .brand-logo {
    width: 6.5rem;
    height: 2.7rem;
  }

  .about-frame {
    width: calc(100% - 1rem);
    border-radius: 1.2rem;
  }

  .about-floating-title {
    width: calc(100% - 1rem);
    margin-bottom: 1.35rem;
    font-size: clamp(1.65rem, 7vw, 2.4rem);
    letter-spacing: -0.06em;
  }

  .section-title.oversized.about-floating-title {
    font-size: clamp(1.65rem, 7vw, 2.4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
  }

  .about-floating-title span {
    white-space: nowrap;
  }

  .section-title.oversized.about-floating-title span {
    white-space: nowrap;
  }

  .about-frame .about-intro {
    padding: 2.25rem 1.1rem 0.8rem;
  }

  .about-frame .about-layout {
    padding-inline: 0.25rem;
    padding-bottom: 1.5rem;
  }

  .package-card-copy {
    padding: 1.25rem 1rem 1.35rem;
  }

  .package-card-copy h3 {
    font-size: clamp(1.3rem, 6.5vw, 1.9rem);
  }

  .package-card-copy .package-strips {
    margin-top: 0.85rem;
  }

  .about-carousel-slide > img {
    width: calc(100% - 1rem);
    aspect-ratio: 4 / 5;
    margin-bottom: 0.5rem;
    border-radius: 0.8rem;
  }

  .portfolio-gallery {
    columns: 2;
    column-gap: 0.55rem;
  }

  .portfolio-gallery-card {
    margin-bottom: 0.55rem;
    border-radius: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-gallery-card img {
    transition: none;
  }
}

/* Four reusable portrait-review cards with an overlapping customer avatar. */
.testimonials .testimonial-layout {
  display: block;
}

.testimonials .section-title.huge {
  margin-top: 0;
  text-align: center;
}

.testimonial-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3.5rem, 6vw, 5rem) clamp(1rem, 2vw, 2rem);
  margin-top: clamp(4rem, 7vw, 6rem);
}

.testimonial-review-card {
  position: relative;
  min-height: 21rem;
  padding: clamp(3.75rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.25rem) clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 33, 38, 0.14);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.46);
  color: var(--text-dark);
  text-align: center;
  box-shadow: 0 18px 50px rgba(20, 33, 38, 0.07);
}

.testimonial-review-card:nth-child(even) {
  background: rgba(217, 165, 165, 0.14);
}

.testimonial-review-avatar {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(4.5rem, 7vw, 5.75rem);
  height: clamp(4.5rem, 7vw, 5.75rem);
  border: 0.35rem solid var(--bg-light);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 10px 24px rgba(20, 33, 38, 0.16);
  transform: translate(-50%, -50%);
}

.testimonial-review-stars {
  color: #956f6f;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
}

.testimonial-review-card blockquote {
  max-width: 29rem;
  margin: 1.25rem auto 1.75rem;
  color: rgba(20, 33, 38, 0.84);
  font-family: var(--hero-display);
  font-size: clamp(1.45rem, 2.35vw, 2.05rem);
  line-height: 1.2;
}

.testimonial-review-card footer {
  display: grid;
  gap: 0.35rem;
}

.testimonial-review-card footer strong,
.testimonial-review-card footer span {
  font-family: var(--body-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.testimonial-review-card footer span {
  color: rgba(20, 33, 38, 0.52);
  font-size: 0.62rem;
}

@media (max-width: 760px) {
  .testimonials {
    padding-block: 3.25rem 3.5rem;
  }

  .testimonials .section-title.huge {
    margin-bottom: 0;
    font-size: clamp(2.8rem, 13vw, 3.7rem);
    line-height: 0.95;
  }

  .testimonial-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.35rem 0.55rem;
    margin-top: 2.8rem;
  }

  .testimonial-review-card {
    min-height: 12rem;
    padding: 2rem 0.7rem 0.85rem;
    border-radius: 0.85rem;
  }

  .testimonial-review-avatar {
    width: 3rem;
    height: 3rem;
    border-width: 0.22rem;
  }

  .testimonial-review-stars {
    font-size: 0.52rem;
    letter-spacing: 0.13em;
  }

  .testimonial-review-card blockquote {
    margin: 0.65rem auto 0.8rem;
    font-size: clamp(0.82rem, 3.7vw, 1rem);
    line-height: 1.25;
  }

  .testimonial-review-card footer {
    gap: 0.15rem;
  }

  .testimonial-review-card footer strong,
  .testimonial-review-card footer span {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
    line-height: 1.35;
  }

  .testimonial-review-card footer span {
    font-size: 0.44rem;
  }
}

/* Refined footer composition: clear headline, balanced content, and an unobstructed wordmark. */
.site-footer .footer-topline {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid rgba(247, 242, 233, 0.14);
}

.site-footer .footer-main {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.site-footer .footer-portrait {
  transform: none;
}

.site-footer .footer-wordmark {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.site-footer .copyright {
  margin-top: 0.85rem;
  text-align: center;
}

/* Home hero is a full-bleed moving cover, without the framed oval edge. */
.hero {
  padding: 0;
}

.hero-grid {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  max-height: none;
  border-radius: 0;
}

.hero-copy {
  min-height: 100svh;
}

/* Editorial masonry: vary the frame rhythm instead of presenting a uniform grid. */
.portfolio-gallery-card:nth-child(1) { aspect-ratio: 3 / 2; }
.portfolio-gallery-card:nth-child(2) { aspect-ratio: 2 / 3; }
.portfolio-gallery-card:nth-child(3) { aspect-ratio: 4 / 5; }
.portfolio-gallery-card:nth-child(4) { aspect-ratio: 3 / 5; }
.portfolio-gallery-card:nth-child(5) { aspect-ratio: 4 / 3; }
.portfolio-gallery-card:nth-child(6) { aspect-ratio: 3 / 4; }

/* Tight square contact-sheet treatment. */
.portfolio-gallery {
  column-gap: 0;
}

.portfolio-gallery-card,
.portfolio-gallery-card:nth-child(n) {
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Keep the package carousel minimal: no outer white card/container. */
.about-frame {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-frame .about-intro {
  padding-inline: 0;
}

.about-frame .about-layout {
  padding-inline: 0;
}

/* Warm paper background for the package section, matching the reference card. */
.about {
  background: #f5f3ed;
  color: var(--text-dark);
}

.about::before,
.about::after {
  display: none;
}

.about-floating-title {
  color: var(--text-dark);
  text-shadow: none;
}

/* Show one clean package at a time; keep carousel controls fully visible. */
.about-carousel-track {
  --about-slide-width: min(100%, 760px);
  gap: 0;
  padding-inline: 0;
}

.about-carousel-button {
  transform: translateY(-50%);
}

.about-carousel-button:hover,
.about-carousel-button:focus-visible {
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 760px) {
  .about-carousel-track {
    --about-slide-width: 100%;
    gap: 0;
    padding: 1rem 0 3.5rem;
  }

  .about-carousel-slide {
    transform: none;
  }

  .about-carousel-button {
    bottom: 0.55rem;
    transform: none;
  }

  .about-carousel-button:hover,
  .about-carousel-button:focus-visible {
    transform: scale(1.04);
  }

  .hero {
    padding: 0;
  }

  .hero-grid {
    min-height: 100svh;
    border-radius: 0;
  }

  .hero-copy {
    min-height: 100svh;
  }

  .portfolio-gallery-card:nth-child(1) { aspect-ratio: 4 / 3; }
  .portfolio-gallery-card:nth-child(2) { aspect-ratio: 2 / 3; }
  .portfolio-gallery-card:nth-child(3) { aspect-ratio: 4 / 5; }
  .portfolio-gallery-card:nth-child(4) { aspect-ratio: 3 / 5; }
  .portfolio-gallery-card:nth-child(5) { aspect-ratio: 4 / 3; }
  .portfolio-gallery-card:nth-child(6) { aspect-ratio: 3 / 4; }

  .portfolio-gallery {
    column-gap: 0;
  }

  .portfolio-gallery-card,
  .portfolio-gallery-card:nth-child(n) {
    aspect-ratio: 1 / 1;
    margin-bottom: 0;
    border-radius: 0;
  }

  .site-footer {
    min-height: 100vh;
    min-height: 100svh;
    padding: 2rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
  }

  .site-footer .footer-topline {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
    padding-bottom: 1rem;
    font-size: clamp(1rem, 5vw, 1.35rem);
    line-height: 1;
    text-align: center;
  }

  .site-footer .footer-topline span:first-child {
    justify-self: start;
  }

  .site-footer .footer-topline span:last-child {
    justify-self: end;
  }

  .site-footer .footer-brand .brand-logo {
    width: 4.2rem;
    height: 1.7rem;
  }

  .site-footer .footer-main {
    flex: 1 1 auto;
    grid-template-columns: minmax(0, 1.1fr) minmax(8.5rem, 0.9fr);
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
  }

  .site-footer .footer-left {
    min-height: 0;
    align-items: center;
  }

  .site-footer .footer-stamp {
    display: none;
  }

  .site-footer .footer-portrait {
    width: min(100%, 14rem);
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0;
    border-radius: 6rem 6rem 0.85rem 0.85rem;
    object-fit: cover;
    object-position: center 28%;
  }

  .site-footer .footer-links {
    gap: 1.25rem;
    justify-items: start;
    text-align: left;
  }

  .site-footer .footer-links nav {
    gap: 0.15rem;
    justify-items: start;
    font-size: 0.72rem;
  }

  .site-footer .footer-links nav a {
    min-height: 2rem;
    display: flex;
    align-items: center;
  }

  .site-footer .footer-action {
    max-width: 10rem;
  }

  .site-footer .footer-action p {
    margin-bottom: 0.55rem;
    font-size: 0.58rem;
    line-height: 1.45;
  }

  .site-footer .footer-book {
    min-height: 2.5rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(247, 242, 233, 0.38);
    border-radius: 999px;
    font-size: 0.58rem;
    line-height: 1.25;
    text-align: center;
  }

  .site-footer .footer-wordmark {
    flex: 0 0 auto;
    margin-top: 1rem;
    font-size: clamp(4.25rem, 21vw, 6rem);
    line-height: 0.78;
  }

  .site-footer .copyright {
    flex: 0 0 auto;
    margin-top: 0.9rem;
    font-size: 0.55rem;
    line-height: 1.5;
  }
}

/* Final pricelist heading scale and alignment. */
.about-floating-title {
  width: 100%;
  margin-inline: auto;
  font-size: clamp(3.25rem, 8vw, 7rem);
  line-height: 0.95;
  text-align: center;
}

@media (max-width: 760px) {
  .about-floating-title {
    font-size: clamp(3rem, 15vw, 5rem);
    text-align: center;
  }
}

/* Pricelist label: centered and clearly readable above the package carousel. */
.about-floating-title {
  width: 100%;
  margin-inline: auto;
  font-size: clamp(3.25rem, 8vw, 7rem);
  line-height: 0.95;
  text-align: center;
}

@media (max-width: 760px) {
  .about-floating-title {
    font-size: clamp(3rem, 15vw, 5rem);
    text-align: center;
  }
}

/* Final pricelist card treatment: image first, offer essentials only. */
.about-carousel-slide {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  border-radius: 1.35rem;
  background: #9aa3a1;
}

.about-carousel-slide::after {
  display: block;
  inset: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(11, 24, 27, 0.58) 0%, rgba(11, 24, 27, 0.04) 40%, rgba(11, 24, 27, 0.78) 100%);
}

.about-carousel-slide > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.package-card-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--hero-ivory);
  text-align: center;
}

.package-card-copy h3 {
  max-width: 12ch;
  margin: 0;
  color: var(--hero-ivory);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(5, 17, 20, 0.46);
}

.package-card-price {
  margin: auto 0 1rem;
  color: var(--hero-ivory);
  font-family: var(--body-font);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 14px rgba(5, 17, 20, 0.5);
}

.package-card-copy .package-reservation-cta {
  align-self: center;
  margin: 0;
  border-color: rgba(247, 242, 233, 0.78);
  background: var(--hero-ivory);
  color: var(--bg-dark);
  box-shadow: 0 10px 26px rgba(5, 17, 20, 0.2);
}

.package-card-copy .package-reservation-cta:hover,
.package-card-copy .package-reservation-cta:focus-visible {
  background: #ffffff;
  color: var(--bg-dark);
}

@media (max-width: 760px) {
  .about-carousel-slide {
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
  }

  .package-card-copy {
    padding: 1.15rem 1rem 1.2rem;
  }

  .package-card-copy h3 {
    font-size: clamp(1.35rem, 6.7vw, 1.9rem);
  }

  .package-card-price {
    margin-bottom: 0.85rem;
    font-size: 0.84rem;
  }
}

/* Final carousel cleanup: no peek-a-boo neighboring cards and visible controls. */
.about-carousel-track {
  --about-slide-width: min(100%, 760px);
  gap: 0;
  padding-inline: 0;
}

.about-carousel-button {
  transform: translateY(-50%);
}

@media (max-width: 760px) {
  .about-carousel-track {
    --about-slide-width: 100%;
    gap: 0;
    padding: 1rem 0 3.5rem;
  }

  .about-carousel-slide {
    transform: none;
  }

  .about-carousel-button {
    bottom: 0.55rem;
    transform: none;
  }

  .about-carousel-button:hover,
  .about-carousel-button:focus-visible {
    transform: scale(1.04);
  }
}

/* Final pricelist heading scale and alignment. */
.about h2.about-floating-title {
  width: 100% !important;
  max-width: none !important;
  margin-inline: auto !important;
  font-size: clamp(3.25rem, 8vw, 7rem) !important;
  line-height: 0.95;
  text-align: center !important;
}

@media (max-width: 760px) {
  .about h2.about-floating-title {
    font-size: clamp(3rem, 15vw, 5rem) !important;
    text-align: center !important;
  }
}

/* Three continuous editorial filmstrips merge every managed collection. */
.portfolio-marquee {
  width: 100vw;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-block: 1px solid rgba(247, 242, 233, 0.14);
  background: #102126;
}

.portfolio-marquee-row {
  --marquee-duration: 90s;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.portfolio-marquee-row + .portfolio-marquee-row {
  border-top: 1px solid rgba(247, 242, 233, 0.08);
}

.portfolio-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.portfolio-marquee-row.is-left .portfolio-marquee-track {
  animation: hymne-gallery-left var(--marquee-duration) linear infinite;
}

.portfolio-marquee-row.is-right .portfolio-marquee-track {
  animation: hymne-gallery-right var(--marquee-duration) linear infinite;
}

.portfolio-marquee-row:nth-child(2) {
  --marquee-duration: 102s;
}

.portfolio-marquee-row:nth-child(3) {
  --marquee-duration: 96s;
}

.portfolio-marquee-set {
  display: flex;
  flex: 0 0 auto;
}

.portfolio-marquee-card {
  flex: 0 0 clamp(11rem, 19vw, 20rem);
  width: clamp(11rem, 19vw, 20rem);
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #1c3035;
}

.portfolio-marquee-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.005);
  transition: filter 400ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-marquee-card:hover img {
  filter: brightness(1.06);
  transform: scale(1.035);
}

@keyframes hymne-gallery-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes hymne-gallery-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 760px) {
  .portfolio-marquee-card {
    flex-basis: clamp(9.5rem, 46vw, 12.5rem);
    width: clamp(9.5rem, 46vw, 12.5rem);
  }

  .portfolio-marquee-row {
    --marquee-duration: 82s;
  }

  .portfolio-marquee-row:nth-child(2) {
    --marquee-duration: 94s;
  }

  .portfolio-marquee-row:nth-child(3) {
    --marquee-duration: 88s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-marquee-row {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .portfolio-marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .portfolio-marquee-set[aria-hidden="true"] {
    display: none;
  }
}
