:root {
  --cream: #fff8f1;
  --peach-soft: #ffe0cf;
  --peach: #f6a77f;
  --peach-deep: #c95f44;
  --leaf: #637b57;
  --leaf-dark: #33452f;
  --plum: #4d2934;
  --ink: #241f1b;
  --muted: #6e625d;
  --line: rgba(36, 31, 27, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(77, 41, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 20;
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

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

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--peach);
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  border: 1px solid rgba(77, 41, 52, 0.22);
  flex: 0 0 auto;
}

.brand-name,
.brand-meta {
  display: block;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-meta {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.6rem, 2vw, 1.4rem);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--peach-deep);
}

.nav-book {
  padding: 0.68rem 0.95rem;
  border: 1px solid var(--plum);
  border-radius: 999px;
  color: var(--plum);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: grid;
  grid-template-columns: minmax(32px, 1fr) minmax(0, 1160px) minmax(32px, 1fr);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255, 248, 241, 0.98) 0%, rgba(255, 248, 241, 0.92) 45%, rgba(246, 167, 127, 0.78) 100%),
    var(--peach-soft);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  grid-column: 2;
  z-index: 2;
  align-self: center;
  width: min(680px, 62%);
  padding: clamp(2.5rem, 6vw, 4.2rem) 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--peach-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--plum);
}

h1 {
  max-width: 9ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.4rem, 8.8vw, 6.35rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  color: var(--leaf-dark);
}

.hero-lede {
  max-width: 470px;
  margin-bottom: 2rem;
  color: #3c332e;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.hero-actions,
.center-action,
.resume-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.12rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.button-primary {
  background: var(--plum);
  color: var(--white);
}

.button-primary:hover,
.button-dark:hover {
  background: var(--leaf-dark);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--plum);
}

.button-secondary:hover {
  border-color: rgba(201, 95, 68, 0.44);
  color: var(--peach-deep);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-portrait {
  --glow-x: 52%;
  --glow-y: 38%;
  --glow-strength: 0.6;
  position: absolute;
  inset: 0 max(24px, calc((100vw - 1160px) / 2)) 0 auto;
  width: min(38vw, 390px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
  pointer-events: none;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  right: -18%;
  bottom: 0;
  z-index: 0;
  width: 118%;
  height: 86%;
  background: rgba(255, 224, 207, 0.64);
  border: 1px solid rgba(77, 41, 52, 0.12);
  border-bottom: 0;
  border-radius: 120px 120px 0 0;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  right: -22%;
  bottom: -4%;
  z-index: 1;
  width: 128%;
  height: 92%;
  border-radius: 130px 130px 0 0;
  background:
    radial-gradient(
      circle at var(--glow-x) var(--glow-y),
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 216, 178, 0.5) 17%,
      rgba(246, 167, 127, 0.26) 38%,
      rgba(246, 167, 127, 0) 70%
    );
  filter: blur(18px);
  opacity: var(--glow-strength);
  transform: scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-portrait.is-glowing::after {
  transform: scale(1.03);
}

.hero-portrait.is-pulsing::after {
  animation: portrait-glow-pulse 4.8s ease-in-out infinite;
}

.hero-portrait img {
  position: relative;
  z-index: 2;
  width: min(100%, 384px);
  max-height: calc(60vh - 10px);
  object-fit: contain;
  filter:
    drop-shadow(0 24px 36px rgba(77, 41, 52, 0.24))
    drop-shadow(0 0 28px rgba(246, 167, 127, 0.36));
  transition: filter 220ms ease;
}

.hero-portrait.is-glowing img {
  filter:
    drop-shadow(0 24px 36px rgba(77, 41, 52, 0.24))
    drop-shadow(0 0 44px rgba(246, 167, 127, 0.52));
}

.hero-portrait.is-pulsing img {
  animation: portrait-image-pulse 4.8s ease-in-out infinite;
}

@keyframes portrait-glow-pulse {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.98);
  }

  45% {
    opacity: 0.84;
    transform: scale(1.06);
  }

  70% {
    opacity: 0.62;
    transform: scale(1.01);
  }
}

@keyframes portrait-image-pulse {
  0%,
  100% {
    filter:
      drop-shadow(0 24px 36px rgba(77, 41, 52, 0.24))
      drop-shadow(0 0 24px rgba(246, 167, 127, 0.32));
  }

  45% {
    filter:
      drop-shadow(0 24px 36px rgba(77, 41, 52, 0.24))
      drop-shadow(0 0 54px rgba(246, 167, 127, 0.62));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-portrait.is-pulsing::after,
  .hero-portrait.is-pulsing img {
    animation: none;
  }
}

.section-grid,
.feature-band,
.resume-section,
.page-hero,
.services-list,
.service-note,
.contact-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 9vw, 7rem);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  color: var(--plum);
  font-weight: 800;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.22em;
}

.feature-band,
.resume-section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

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

.service-card,
.resume-item {
  min-height: 230px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.service-number {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--peach-deep);
  font-weight: 900;
}

.service-card p,
.resume-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.center-action {
  justify-content: center;
  margin-top: 2rem;
}

.resume-section {
  margin-top: clamp(3rem, 7vw, 5rem);
  margin-bottom: clamp(3rem, 7vw, 5rem);
  background: var(--peach-soft);
}

.resume-item {
  background: rgba(255, 248, 241, 0.86);
}

.resume-actions {
  margin-top: 2rem;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border-radius: 8px;
  background: var(--leaf);
  color: var(--white);
}

.contact-band .section-kicker,
.contact-band h2 {
  color: var(--white);
}

.contact-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

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

.site-footer a {
  color: var(--plum);
  font-weight: 800;
}

.page-hero {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  text-wrap: auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.16rem;
}

.services-list {
  display: grid;
  gap: 1rem;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.25fr) auto;
  gap: clamp(1rem, 4vw, 2rem);
  align-items: start;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.service-row h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border-left: 6px solid var(--peach-deep);
  background: var(--peach-soft);
}

.service-note h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.service-note p {
  margin-bottom: 0;
  color: #493d37;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    min-height: auto;
    padding: 0.8rem 0;
    flex-direction: column;
    gap: 0.85rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 0 16px;
  }

  .hero-copy {
    width: min(100%, 640px);
    padding: clamp(2.15rem, 7vw, 2.75rem) 0 1.05rem;
  }

  h1 {
    font-size: clamp(2.85rem, 13.5vw, 4.65rem);
  }

  .page-hero {
    padding-top: clamp(3rem, 9vw, 5rem);
  }

  .page-hero h1 {
    font-size: clamp(2.75rem, 9vw, 5rem);
  }

  .hero-portrait {
    position: relative;
    inset: auto;
    width: min(100%, 360px);
    height: 240px;
    margin: 0 auto;
  }

  .hero-portrait img {
    max-height: 230px;
  }

  .intro-section,
  .service-note {
    grid-template-columns: 1fr;
  }

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

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

  .feature-band,
  .resume-section {
    padding: 2.6rem 1rem;
  }

  .service-card,
  .resume-item {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 1.3rem;
  }

  .contact-band,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row {
    gap: 0.85rem;
  }
}

@media (max-width: 520px) {
  .nav {
    padding: 0.65rem 0 0.75rem;
    gap: 0.7rem;
  }

  .brand {
    gap: 0.68rem;
  }

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

  .brand-name {
    font-size: 1rem;
  }

  .brand-meta {
    font-size: 0.68rem;
  }

  .nav-links {
    font-size: 0.88rem;
  }

  .nav-book,
  .button {
    padding-left: 0.82rem;
    padding-right: 0.82rem;
  }

  .center-action,
  .resume-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero {
    padding: 2.65rem 0 2.75rem;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 10.8vw, 3rem);
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .feature-band,
  .resume-section {
    padding: 2.1rem 0.85rem;
  }

  .contact-band {
    padding: 1.35rem;
  }

  .contact-band h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .hero-actions .button {
    flex: 1 1 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
  }

  .site-footer {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 1.1rem 0 1.25rem;
  }
}

@media (max-width: 360px) {
  .nav-links {
    gap: 0.55rem;
    font-size: 0.82rem;
  }

  .page-hero h1 {
    font-size: clamp(2.18rem, 11vw, 2.35rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}
