: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(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;
}

.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-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);
}

.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;
}

.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-links nav {
  display: grid;
  gap: 0.7rem;
  font-size: 0.92rem;
}

.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(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;
  }

  .hero-title {
    top: 47%;
    font-size: clamp(5.5rem, 25vw, 9rem);
  }

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

  .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(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.7rem, 25vw, 6.9rem);
  }

  .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;
  }
}
