:root {
  --brand-green: #4c572d;
  --brand-pink: #e8b6b7;
  --brand-yellow: #d3dd00;
  --brand-cream: #efe7d2;
  --brand-purple: #e7d7fa;
  --brand-light-yellow: #e7ed74;
  --brand-warm-cream: #fff7ee;
  --brand-orange: #f8c495;

  --olive: #4c572d;
  --olive-dark: #30371e;
  --cream: #efe7d2;
  --warm-cream: #fff7ee;
  --lavender: #f4edfd;
  --sage: #dfe1d9;
  --pink: #f5dedf;
  --pink-strong: #e8b6b7;
  --yellow: #d3dd00;
  --yellow-soft: #f2f5b3;
  --orange-soft: #fdeddf;
  --ink: #161616;
  --muted: #5d5d55;
  --white: #fff7ee;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(29, 31, 20, 0.18);
}

@font-face {
  font-family: "General Sans";
  src: url("../_assets/fonts/general-sans/GeneralSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../_assets/fonts/general-sans/GeneralSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../_assets/fonts/general-sans/GeneralSans-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "General Sans", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--warm-cream);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 247, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(76, 87, 45, 0.16);
}

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

.brand-logo {
  display: block;
  width: clamp(11rem, 26vw, 17rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
}

.site-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--olive-dark);
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--olive);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(76, 87, 45, 0.28);
  background: var(--cream);
  border-radius: 999px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--olive);
}

.olive {
  background: var(--olive);
  color: var(--cream);
}

.cream {
  background: var(--warm-cream);
}

.lavender {
  background: var(--lavender);
  --section-shift-bg: #f8f2ff;
}

.sage {
  background: var(--sage);
  --section-shift-bg: #e8e9e2;
}

.pink-band {
  background: var(--pink);
  --section-shift-bg: #f8e5e6;
}

.lavender,
.sage,
.pink-band {
  animation: soft-section-shift 18s ease-in-out infinite alternate;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: stretch;
  min-height: clamp(590px, 72vh, 680px);
}

.split-panel.olive {
  background: var(--warm-cream);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(590px, 72vh, 680px);
  padding: clamp(2.5rem, 6vh, 3.75rem) clamp(1.4rem, 5vw, 4rem);
  background: var(--olive);
  color: var(--cream);
}

.hero-copy h1,
.hero-copy .hero-name,
.hero-copy .hero-text,
.hero-copy .button-row {
  animation: rise-in 720ms ease both;
}

.hero-copy .hero-name {
  animation-delay: 110ms;
}

.hero-copy .hero-text {
  animation-delay: 210ms;
}

.hero-copy .button-row {
  animation-delay: 320ms;
}

.eyebrow {
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.78rem, 1.8vw, 1rem);
}

.eyebrow.dark {
  color: var(--olive);
}

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

h1,
h2 {
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 14vw, 8.4rem);
}

h2 {
  font-size: clamp(2.25rem, 6vw, 4.3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.hero-copy h1 {
  max-width: 21ch;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  line-height: 1.05;
}

.hero-headline-visible {
  display: block;
}

.hero-ending-line {
  display: inline-flex;
  align-items: baseline;
  column-gap: 0.18em;
  white-space: nowrap;
}

.rotating-phrase {
  display: inline-grid;
  width: 11.5ch;
  height: 1.18em;
  overflow: hidden;
  color: var(--yellow);
  line-height: 1.05;
}

.rotating-phrase span {
  grid-area: 1 / 1;
  display: block;
  height: 1.18em;
  line-height: 1.05;
  opacity: 0;
  white-space: nowrap;
  transform: translateY(105%);
  animation: rotate-phrase-up 14s cubic-bezier(0.7, 0, 0.2, 1) infinite;
  animation-delay: calc(var(--phrase-index) * 3.5s);
}

.hero-name {
  margin-bottom: 0.95rem;
  color: var(--pink-strong);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 600;
  line-height: 1.1;
}

.hero-text {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
}

.hero-media {
  margin: 0;
  align-self: stretch;
  min-height: 100%;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 42%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.25rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.button.primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--olive-dark);
}

.button.secondary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--olive-dark);
}

.dark-button {
  border-color: var(--yellow) !important;
  background: var(--yellow) !important;
  color: var(--olive-dark) !important;
}

.button:hover {
  border-color: var(--brand-light-yellow);
  background: var(--brand-light-yellow);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(48, 55, 30, 0.16);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.intro {
  overflow-x: hidden;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.portrait-card {
  position: relative;
  margin: 0;
}

.portrait-card > img:first-child {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-card .burst {
  position: absolute;
  top: 10%;
  right: -44px;
  width: clamp(4rem, 9vw, 7rem);
  height: auto;
  animation: soft-spin 22s linear infinite;
}

.section-copy {
  max-width: 46rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.section-heading,
.portfolio-heading {
  max-width: 1180px;
  margin: 0 auto 2rem;
}

.section-heading.light {
  color: var(--cream);
}

.card-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

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

.section-action {
  display: flex;
  justify-content: center;
  max-width: 1180px;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
}

.service-card {
  min-height: 230px;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--pink);
  border: 1px solid rgba(76, 87, 45, 0.14);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.service-card span {
  display: inline-block;
  margin-bottom: 2.6rem;
  color: var(--olive);
  font-weight: 600;
}

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

.service-card.yellow {
  background: var(--yellow-soft);
}

.service-card.green {
  background: var(--sage);
}

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

.service-card.orange {
  background: var(--orange-soft);
}

.service-card:hover {
  border-color: rgba(76, 87, 45, 0.28);
  box-shadow: 0 18px 42px rgba(76, 87, 45, 0.12);
  transform: translateY(-4px);
}

.featured-strip {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.featured-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.6rem, 4vw, 2.5rem);
}

.phone-card {
  position: relative;
  display: block;
  padding: 0.7rem;
  border: 0;
  border-radius: 34px;
  background: #050505;
  color: var(--cream);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.phone-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 34%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #050505;
  z-index: 2;
}

.phone-card img,
.phone-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 25px;
  opacity: 0.94;
}

.phone-card video {
  background: #050505;
}

.featured-strip .phone-card span {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.2rem;
  z-index: 3;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.88);
}

.instagram-feed {
  border-top: 1px solid rgba(76, 87, 45, 0.14);
}

.instagram-feed-heading {
  max-width: 1180px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.instagram-feed-heading h2 {
  margin-bottom: 0;
}

.instagram-widget {
  width: 80%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(0.65rem, 2vw, 1rem);
  border: 1px solid rgba(76, 87, 45, 0.16);
  border-radius: var(--radius);
  background: var(--lavender);
  box-shadow: 0 18px 50px rgba(76, 87, 45, 0.1);
  transition:
    box-shadow 280ms ease,
    transform 280ms ease;
}

.instagram-widget:hover {
  box-shadow: 0 24px 58px rgba(76, 87, 45, 0.16);
  transform: translateY(-3px);
}

.lightwidget-widget {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  overflow: hidden;
}

.email-signup {
  border-top: 1px solid rgba(76, 87, 45, 0.14);
}

.email-signup-panel {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid rgba(76, 87, 45, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 247, 238, 0.62);
  box-shadow: 0 18px 50px rgba(76, 87, 45, 0.1);
}

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

.email-signup-copy p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.email-signup-form {
  display: grid;
  gap: 0.85rem;
}

.email-signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: stretch;
}

.email-signup-row input {
  min-height: 48px;
  background: var(--warm-cream);
}

.email-signup-row .button {
  width: 100%;
}

.email-signup-consent {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.email-signup-consent {
  font-size: 0.82rem;
}

.email-signup-message {
  margin: 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(76, 87, 45, 0.18);
  border-radius: var(--radius);
  background: var(--yellow-soft);
  color: var(--olive-dark);
  font-weight: 600;
}

.cta-band {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  text-align: center;
}

.cta-band p {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  font-size: 1.16rem;
}

.page-hero {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 8vw, 6rem);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 9vw, 7rem);
}

.page-hero p:last-child {
  max-width: 48rem;
  font-size: 1.18rem;
}

.services-hero .button-row {
  margin-top: 1.4rem;
}

.services-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.services-hero > p {
  max-width: 44rem;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.service-detail-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(76, 87, 45, 0.14);
  border-radius: var(--radius);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.service-detail:hover {
  border-color: rgba(76, 87, 45, 0.28);
  box-shadow: 0 18px 42px rgba(76, 87, 45, 0.12);
  transform: translateY(-4px);
}

.service-detail.pink {
  background: var(--pink);
}

.service-detail.lavender-card {
  background: var(--lavender);
}

.service-detail.yellow {
  background: var(--yellow-soft);
}

.service-detail.green {
  background: var(--orange-soft);
}

.service-detail h3 {
  margin-bottom: 0;
  max-width: 100%;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 400;
}

.service-detail-number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--olive);
  font-weight: 600;
}

.service-detail p {
  max-width: 52rem;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.service-detail ul,
.fit-list ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}

.work-ways-grid,
.faq-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

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

.work-ways-grid article,
.faq-grid article {
  border: 1px solid rgba(76, 87, 45, 0.14);
  border-radius: var(--radius);
}

.work-ways-grid article {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.work-ways-grid article:nth-child(1) {
  background: var(--pink);
}

.work-ways-grid article:nth-child(2) {
  background: var(--lavender);
}

.work-ways-grid article:nth-child(3) {
  background: var(--yellow-soft);
}

.work-ways-grid span {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
}

.work-ways-grid h3 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 400;
}

.good-fit-panel {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid rgba(76, 87, 45, 0.16);
  border-radius: var(--radius);
  background: var(--pink);
  box-shadow: 0 18px 50px rgba(76, 87, 45, 0.1);
}

.good-fit-panel h2 {
  margin-bottom: 0;
}

.fit-list p {
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.faq-grid article {
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.faq-grid article:nth-child(1) {
  background: var(--lavender);
}

.faq-grid article:nth-child(2) {
  background: var(--yellow-soft);
}

.faq-grid article:nth-child(3) {
  background: var(--pink);
}

.faq-grid article:nth-child(4) {
  background: var(--orange-soft);
}

.faq-grid h3 {
  color: var(--olive-dark);
}

.portfolio-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.portfolio-showcase {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: clamp(3.5rem, 8vw, 6rem);
}

.portfolio-category {
  scroll-margin-top: 6rem;
}

.category-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.6fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(76, 87, 45, 0.18);
}

.category-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.category-heading p {
  margin: 0;
  color: var(--muted);
}

.work-card {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 260ms ease;
}

.work-card h3 {
  color: var(--ink);
}

.portfolio-grid .phone-card,
.featured-strip .phone-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.portfolio-grid .phone-card::before,
.featured-strip .phone-card::before {
  top: 10px;
  width: 34%;
  height: 24px;
  border-radius: 0 0 16px 16px;
}

.portfolio-grid .phone-card img,
.portfolio-grid .phone-card video,
.featured-strip .phone-card img,
.featured-strip .phone-card video {
  border: 10px solid #050505;
  border-radius: 34px;
  background: #050505;
}

.portfolio-grid .phone-card video,
.featured-strip .phone-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.portfolio-grid .phone-card span {
  position: static;
  display: block;
  margin: 0.85rem 0 0.15rem;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  text-shadow: none;
}

.portfolio-grid .phone-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.1;
}

.image-card {
  padding: 0.7rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(76, 87, 45, 0.14);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.image-card:hover {
  border-color: rgba(76, 87, 45, 0.28);
  box-shadow: 0 16px 36px rgba(76, 87, 45, 0.12);
  transform: translateY(-4px);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.work-card[role="button"]:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 6px;
}

.image-card span,
.category {
  display: block;
  margin: 0.85rem 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--olive);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 1rem;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, 0.72);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: 92vh;
  overflow: auto;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--warm-cream);
}

.modal-panel h2 {
  padding-right: 5rem;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 38px;
  padding: 0 0.9rem;
  border: 1px solid var(--olive);
  border-radius: 999px;
  background: var(--cream);
  color: var(--olive-dark);
  cursor: pointer;
}

.modal-stage video,
.modal-stage img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border: 0;
  border-radius: var(--radius);
  background: #000;
}

.contact-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--lavender);
  border-radius: var(--radius);
  border: 1px solid rgba(76, 87, 45, 0.14);
  box-shadow: 0 18px 50px rgba(76, 87, 45, 0.12);
}

.field.full,
.contact-form button {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--olive-dark);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(76, 87, 45, 0.3);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-details {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: var(--radius);
  background: var(--olive);
  color: var(--cream);
}

.contact-details h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.contact-details dl {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
}

.contact-details dt {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.contact-details dd {
  margin: 0;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.detail-burst {
  position: absolute;
  top: -34px;
  right: 24px;
  width: 82px;
  height: auto;
  animation: soft-spin 22s linear infinite;
}

@keyframes soft-spin {
  from {
    rotate: 0deg;
  }

  to {
    rotate: 360deg;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate-phrase-up {
  0%,
  3% {
    opacity: 0;
    transform: translateY(105%);
  }

  11%,
  26% {
    opacity: 1;
    transform: translateY(0);
  }

  34%,
  100% {
    opacity: 0;
    transform: translateY(-105%);
  }
}

@keyframes soft-reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-section-shift {
  to {
    background-color: var(--section-shift-bg);
  }
}

@supports (animation-timeline: view()) {
  .section-heading,
  .section-copy,
  .category-heading,
  .page-hero > *,
  .cta-band > *,
  .instagram-feed-heading,
  .instagram-widget,
  .email-signup-panel,
  .service-card,
  .service-detail,
  .work-ways-grid article,
  .good-fit-panel,
  .faq-grid article,
  .work-card,
  .contact-form,
  .contact-details {
    animation: soft-reveal 720ms ease both;
    animation-timeline: view();
    animation-range: entry 8% cover 32%;
  }

  .service-card:nth-child(2),
  .service-detail:nth-child(2),
  .work-ways-grid article:nth-child(2),
  .faq-grid article:nth-child(2),
  .work-card:nth-child(2) {
    animation-range: entry 12% cover 36%;
  }

  .service-card:nth-child(3),
  .service-detail:nth-child(3),
  .work-ways-grid article:nth-child(3),
  .faq-grid article:nth-child(3),
  .work-card:nth-child(3) {
    animation-range: entry 16% cover 40%;
  }

  .service-card:nth-child(4),
  .service-detail:nth-child(4),
  .faq-grid article:nth-child(4),
  .work-card:nth-child(4) {
    animation-range: entry 20% cover 44%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-grid .phone-card:hover,
  .featured-strip .phone-card:hover {
    transform: translateY(-6px) rotate(-0.8deg);
  }
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 0.8rem 1.2rem;
  padding: 2rem 1rem;
  background: var(--olive);
  color: var(--cream);
  text-align: center;
}

.site-footer p {
  margin-bottom: 0;
  font-weight: 600;
}

.site-footer .footer-service-area {
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto;
  color: var(--yellow-soft);
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--olive);
  text-decoration: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-icon:hover {
  background: var(--brand-light-yellow);
  border-color: var(--brand-light-yellow);
  transform: translateY(-3px) rotate(-4deg);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
}

.thanks-page > div {
  max-width: 680px;
}

@media (max-width: 940px) {
  .split-panel,
  .section-grid,
  .service-detail,
  .good-fit-panel,
  .portfolio-heading,
  .category-heading,
  .instagram-feed-heading,
  .email-signup-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .instagram-feed-heading {
    display: grid;
    align-items: start;
  }

  .instagram-widget {
    width: 100%;
  }

  .split-panel {
    height: auto;
    min-height: auto;
  }

  .hero-media {
    min-height: 360px;
    max-height: 460px;
  }

  .services-grid,
  .work-ways-grid,
  .featured-strip,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .portrait-card .burst,
  .detail-burst {
    animation: none;
  }

  .rotating-phrase span {
    animation: none;
    opacity: 0;
    transform: translateY(0);
  }

  .rotating-phrase span:first-child {
    opacity: 1;
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 1rem 1rem;
    background: var(--warm-cream);
    border-bottom: 1px solid rgba(76, 87, 45, 0.16);
  }

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

  .site-nav a {
    padding: 0.75rem 0;
  }

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

  .hero-ending-line {
    display: inline-flex;
  }

  .rotating-phrase {
    width: 9.8ch;
  }

  .hero-media {
    min-height: 300px;
    max-height: 380px;
  }

  .services-grid,
  .work-ways-grid,
  .featured-strip,
  .portfolio-grid,
  .faq-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .portrait-card .burst {
    top: -18px;
    right: -18px;
    width: clamp(4.5rem, 20vw, 6rem);
  }

  .portfolio-grid {
    gap: 1.1rem;
  }

  .phone-card {
    max-width: 330px;
    margin: 0 auto;
  }

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

  .contact-form button {
    grid-column: auto;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-ending-line {
    display: inline;
    white-space: normal;
  }
}
