:root {
  --ivory: #fbf7f3;
  --cream: #f4e9e2;
  --blush: #e6c9c2;
  --rose: #b47676;
  --wine: #6f3039;
  --espresso: #2d2323;
  --muted: #766a68;
  --white: #fffdfb;
  --line: rgba(71, 44, 43, 0.14);
  --shadow: 0 24px 70px rgba(77, 46, 43, 0.12);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--espresso); background: var(--ivory); font-family: var(--sans); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: .018; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
h1 em, h2 em { color: var(--rose); font-weight: 400; }
h2 { font-size: clamp(3rem, 6vw, 5.7rem); margin-bottom: 1.4rem; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section-shell { padding: clamp(90px, 12vw, 150px) 0; position: relative; overflow: hidden; }
.eyebrow { margin-bottom: 1rem; color: var(--wine); font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 100; padding: .8rem 1rem; background: var(--wine); color: white; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid transparent; background: rgba(251, 247, 243, .88); backdrop-filter: blur(14px); transition: border-color .2s, box-shadow .2s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(63, 41, 40, .06); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--serif); font-size: 1.38rem; line-height: 1; }
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.brand em { display: block; color: var(--rose); font-size: .76rem; font-family: var(--sans); font-style: normal; letter-spacing: .16em; text-transform: uppercase; margin-top: .28rem; }
.nav-menu { display: flex; align-items: center; gap: clamp(.8rem, 1.5vw, 1.45rem); font-size: .76rem; font-weight: 600; letter-spacing: .055em; }
.nav-menu a { position: relative; padding: 1rem 0; }
.nav-menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .7rem; height: 1px; background: var(--wine); transition: right .25s; }
.nav-menu a:hover::after, .nav-menu a.active::after { right: 0; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: none; padding: 10px; }
.nav-toggle span { display: block; height: 1px; background: var(--espresso); margin: 7px 0; transition: transform .25s; }

.hero { min-height: calc(100svh - 82px); display: flex; align-items: center; padding-top: 70px; background: radial-gradient(circle at 83% 28%, rgba(230,201,194,.52), transparent 26%), linear-gradient(110deg, var(--ivory) 0 63%, #f2e3dc 63% 100%); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .78fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 770px; font-size: clamp(4.1rem, 7vw, 7.3rem); margin-bottom: 1.7rem; }
.hero h1 em { display: block; }
.role-line { max-width: 720px; margin-bottom: 1.5rem; font-size: .76rem; line-height: 1.9; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.role-line span { color: var(--rose); padding: 0 .32rem; }
.hero-intro { max-width: 670px; color: var(--muted); font-size: 1.03rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: .7rem; border: 1px solid var(--wine); padding: .85rem 1.5rem; font-size: .76rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s, box-shadow .2s; cursor: pointer; }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(86, 44, 47, .16); }
.button-primary { background: var(--wine); color: white; }
.button-primary:hover { background: #56232b; }
.button-secondary { background: transparent; color: var(--wine); }
.button-secondary:hover { background: white; }
.trust-line { margin-bottom: 0; color: var(--muted); font-size: .82rem; letter-spacing: .04em; }
.trust-line span { color: var(--rose); margin-right: .45rem; }
.hero-visual { position: relative; justify-self: end; width: min(100%, 480px); }
.portrait-frame { position: relative; padding: 14px; border: 1px solid rgba(111, 48, 57, .25); border-radius: 49% 49% 7px 7px; }
.portrait-frame::before { content: ""; position: absolute; inset: 28px -22px -22px 28px; border-radius: inherit; background: var(--blush); z-index: -1; }
.portrait-frame img { aspect-ratio: .86 / 1.08; width: 100%; object-fit: cover; object-position: center 18%; border-radius: 49% 49% 4px 4px; }
.experience-badge { position: absolute; left: -55px; bottom: 34px; width: 138px; height: 138px; display: grid; place-content: center; text-align: center; color: white; background: var(--wine); border: 8px solid var(--ivory); border-radius: 50%; line-height: 1.15; box-shadow: var(--shadow); }
.experience-badge strong { display: block; font-family: var(--serif); font-size: 2.8rem; font-weight: 400; }
.experience-badge span { font-size: .66rem; letter-spacing: .11em; text-transform: uppercase; }
.hero-note { position: absolute; top: 15%; right: -62px; color: var(--wine); font-family: var(--serif); font-size: 1rem; font-style: italic; line-height: 1.35; transform: rotate(4deg); }
.hero-note::before { content: ""; position: absolute; width: 48px; height: 1px; background: var(--rose); left: -58px; top: 50%; }
.hero-ornament { position: absolute; width: 260px; height: 260px; border: 1px solid rgba(180,118,118,.22); border-radius: 50%; left: -130px; bottom: -130px; }

.marquee { overflow: hidden; padding: 17px 0; color: white; background: var(--wine); white-space: nowrap; }
.marquee div { width: max-content; min-width: 100%; text-align: center; font-family: var(--serif); font-size: 1.05rem; letter-spacing: .1em; text-transform: uppercase; }
.marquee span { color: var(--blush); padding: 0 2.3rem; }

.about-grid { display: grid; grid-template-columns: .88fr 1fr; gap: clamp(70px, 10vw, 140px); align-items: center; }
.about-gallery { position: relative; padding: 0 60px 80px 0; }
.about-main { width: 84%; aspect-ratio: .79; object-fit: cover; object-position: center top; border-radius: 200px 200px 8px 8px; }
.about-small { position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 1; object-fit: cover; border: 12px solid var(--ivory); border-radius: 8px; box-shadow: var(--shadow); }
.gallery-caption { position: absolute; left: -24px; bottom: 25px; color: var(--rose); font-family: var(--serif); font-size: 1.05rem; font-style: italic; transform: rotate(-6deg); }
.about-copy > p:not(.eyebrow) { color: var(--muted); }
.check-list { display: grid; gap: .65rem; padding: 1.2rem 0 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { position: relative; padding-left: 1.8rem; font-size: .9rem; }
.check-list li::before { content: "✦"; position: absolute; left: 0; color: var(--rose); font-size: .7rem; }

.services { background: #f3e7e1; }
.section-heading { max-width: 820px; margin: 0 auto clamp(45px, 7vw, 80px); text-align: center; }
.section-heading > p:last-child { max-width: 650px; margin: 0 auto; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 330px; position: relative; padding: 2rem 1.6rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 253, 251, .36); transition: background .3s, transform .3s; }
.service-card:hover { z-index: 1; background: var(--white); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-number { color: var(--rose); font-size: .65rem; letter-spacing: .15em; }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 2.7rem 0 1.5rem; border: 1px solid var(--rose); border-radius: 50%; color: var(--wine); font-family: var(--serif); font-size: 1.45rem; }
.service-card h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.15; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .86rem; }

.portfolio { color: #fff8f4; background: var(--espresso); }
.portfolio .eyebrow { color: var(--blush); }
.portfolio-heading { display: grid; grid-template-columns: 1.2fr .7fr; gap: 3rem; align-items: end; margin-bottom: 75px; }
.portfolio-heading h2 { margin-bottom: 0; }
.portfolio-heading > p { color: rgba(255,248,244,.65); }
.portfolio-group { padding: 48px 0 70px; border-top: 1px solid rgba(255,255,255,.14); }
.portfolio-label { display: flex; gap: 1.4rem; align-items: start; margin-bottom: 28px; }
.portfolio-label > span { color: var(--blush); font-family: var(--serif); font-size: 2rem; }
.portfolio-label h3 { margin: 0 0 .25rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.portfolio-label p { margin: 0; color: rgba(255,248,244,.55); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.gallery { display: grid; gap: 16px; }
.gallery-two { grid-template-columns: repeat(2, 1fr); }
.gallery-six, .gallery-seven { grid-template-columns: repeat(12, 1fr); }
.gallery-six .work-card:nth-child(-n+3) { grid-column: span 4; aspect-ratio: 2.4; }
.gallery-six .work-card:nth-child(n+4) { grid-column: span 4; }
.gallery-seven .work-card { grid-column: span 4; }
.gallery-seven .work-card:nth-child(n+4) { grid-column: span 6; }
.gallery-three { grid-template-columns: repeat(2, 1fr); }
.gallery-three .work-card:first-child { grid-column: 1 / -1; }
.work-card { position: relative; overflow: hidden; min-height: 230px; margin: 0; border-radius: 4px; background: #4a3b39; }
.work-card.square { aspect-ratio: 1; }
.work-card.portrait { aspect-ratio: .82; }
.work-card.wide { aspect-ratio: 1.55; }
.work-card.panoramic { aspect-ratio: 5.2; min-height: 150px; }
.work-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) blur(.45px); transition: transform .5s, filter .5s; }
.work-card:hover img { transform: scale(1.025); filter: saturate(.95) blur(0); }
.privacy-strip { position: absolute; left: 8%; right: 8%; bottom: 8%; padding: .55rem .8rem; text-align: center; color: rgba(255,255,255,.82); background: rgba(45,35,35,.72); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.15); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }

.resume-strip { padding: 58px 0; background: var(--wine); color: white; }
.resume-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.resume-inner .eyebrow { color: var(--blush); margin-bottom: .6rem; }
.resume-inner h2 { max-width: 720px; margin: 0; font-size: clamp(2.2rem, 4vw, 4.2rem); }
.button-light { flex: 0 0 auto; border-color: white; color: var(--wine); background: white; }

.tools-layout { display: grid; grid-template-columns: .65fr 1fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.tools-intro { position: sticky; top: 130px; }
.tools-intro p:last-child { color: var(--muted); }
.tool-categories { border-top: 1px solid var(--line); }
.tool-category { display: grid; grid-template-columns: 190px 1fr; gap: 1.5rem; padding: 1.65rem 0; border-bottom: 1px solid var(--line); }
.tool-category h3 { margin: .45rem 0 0; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.tool-pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.tool-pills span { padding: .48rem .8rem; border: 1px solid var(--line); border-radius: 99px; background: white; color: var(--muted); font-size: .75rem; transition: color .2s, border-color .2s, transform .2s; }
.tool-pills span:hover { color: var(--wine); border-color: var(--rose); transform: translateY(-2px); }

.training { background: var(--cream); }
.training-grid { display: grid; grid-template-columns: .82fr 1fr; align-items: center; gap: clamp(60px, 10vw, 130px); }
.training-poster { position: relative; padding: 30px; }
.poster-frame { padding: 12px; background: var(--white); box-shadow: var(--shadow); transform: rotate(-2deg); }
.poster-frame img { aspect-ratio: 1; width: 100%; object-fit: cover; }
.poster-stamp { position: absolute; right: 0; bottom: 0; width: 108px; height: 108px; display: grid; place-items: center; border-radius: 50%; background: var(--wine); color: white; text-align: center; font-size: .66rem; letter-spacing: .14em; line-height: 1.4; text-transform: uppercase; }
.training-copy > p:not(.eyebrow) { color: var(--muted); }
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .2rem 1.5rem; margin: 1.8rem 0 2.2rem; }
.topic-grid span { position: relative; padding: .62rem 0 .62rem 1.25rem; border-bottom: 1px solid var(--line); font-size: .82rem; }
.topic-grid span::before { content: "·"; position: absolute; left: 0; color: var(--rose); font-size: 1.6rem; line-height: .8; }

.rates .section-heading { margin-bottom: 60px; }
.rate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.rate-card { position: relative; padding: 2.5rem 2rem; border: 1px solid var(--line); background: var(--white); text-align: center; }
.rate-card.featured { color: white; background: var(--wine); transform: translateY(-14px); box-shadow: var(--shadow); }
.popular { position: absolute; top: 0; left: 50%; padding: .45rem 1rem; transform: translate(-50%, -50%); background: var(--blush); color: var(--wine); font-size: .62rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.rate-type { font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.price { min-height: 108px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .25rem; margin: 1.5rem 0; font-family: var(--serif); font-size: clamp(2.8rem, 4vw, 4.2rem); line-height: .9; }
.price span { align-self: flex-start; margin-top: 1rem; font-family: var(--sans); font-size: .9rem; }
.price small { width: 100%; font-family: var(--sans); font-size: .66rem; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.rate-card > p:last-child { color: var(--muted); font-size: .82rem; }
.rate-card.featured > p:last-child { color: rgba(255,255,255,.7); }
.rates-footer { max-width: 760px; margin: 42px auto 0; text-align: center; }
.rates-footer p { color: var(--muted); font-size: .78rem; }

.contact { color: white; background: linear-gradient(115deg, #2d2323 0 58%, #39282a 58%); }
.contact-grid { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(60px, 9vw, 120px); align-items: start; }
.contact .eyebrow { color: var(--blush); }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.contact-links { display: grid; gap: .65rem; margin: 2rem 0; }
.contact-links a { display: flex; align-items: center; gap: 1rem; font-size: .88rem; }
.contact-links a > span { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--blush); }
.contact-links small { display: block; color: rgba(255,255,255,.42); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }
.social-buttons { display: flex; flex-wrap: wrap; gap: .6rem; }
.social-buttons a { padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.2); font-size: .67rem; letter-spacing: .06em; transition: background .2s; }
.social-buttons a:hover { background: rgba(255,255,255,.1); }
.contact-form { padding: clamp(28px, 4vw, 48px); background: var(--ivory); color: var(--espresso); box-shadow: 0 28px 80px rgba(0,0,0,.2); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact-form label { display: block; margin-bottom: 1rem; color: var(--wine); font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; display: block; border: 0; border-bottom: 1px solid #cdbbb7; border-radius: 0; padding: .75rem 0; color: var(--espresso); background: transparent; outline: none; text-transform: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--wine); }
.contact-form textarea { resize: vertical; }
.contact-form .button { width: 100%; margin-top: .7rem; }
.hidden-field { position: absolute; left: -9999px; }
.form-status { margin: .85rem 0 0; min-height: 1.5em; text-align: center; color: var(--wine); font-size: .78rem; }

.footer { padding: 70px 0 24px; color: rgba(255,255,255,.7); background: #1e1718; font-size: .82rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 4rem; padding-bottom: 55px; }
.brand-light { color: white; }
.footer-brand p { max-width: 290px; margin-top: 1.3rem; }
.footer h2 { margin-bottom: 1.2rem; color: white; font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem 2rem; }
.footer a:hover { color: white; }
.footer-socials { display: flex; gap: 1rem; margin-top: 1rem; color: var(--blush); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; font-size: .7rem; }
.footer-bottom p { margin: 0; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .js .reveal { opacity: 1; transform: none; transition: none; } * { animation: none !important; transition-duration: .01ms !important; } }

@media (max-width: 1000px) {
  .nav-toggle { display: block; position: relative; z-index: 3; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-menu { position: fixed; inset: 0 0 auto; min-height: 100svh; display: grid; align-content: center; justify-items: center; gap: .25rem; padding: 90px 2rem 3rem; background: var(--ivory); font-family: var(--serif); font-size: 2rem; font-weight: 400; transform: translateY(-110%); transition: transform .35s; }
  .nav-menu.open { transform: translateY(0); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr .75fr; gap: 40px; }
  .hero h1 { font-size: clamp(3.8rem, 8vw, 6rem); }
  .hero-note { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-layout { grid-template-columns: 1fr; }
  .tools-intro { position: static; max-width: 700px; }
  .training-grid, .contact-grid { gap: 55px; }
}

@media (max-width: 760px) {
  h2 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .container { width: min(100% - 28px, 620px); }
  .section-shell { padding: 82px 0; }
  .hero { padding: 50px 0 100px; background: radial-gradient(circle at 80% 65%, rgba(230,201,194,.55), transparent 32%), var(--ivory); }
  .hero-grid, .about-grid, .portfolio-heading, .training-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1 { font-size: clamp(3.65rem, 18vw, 5.5rem); }
  .role-line { font-size: .66rem; }
  .button-row { justify-content: center; }
  .hero-visual { justify-self: center; width: min(85%, 440px); margin-top: 30px; }
  .experience-badge { left: -26px; bottom: -45px; width: 120px; height: 120px; }
  .marquee div { animation: drift 22s linear infinite; text-align: left; }
  @keyframes drift { to { transform: translateX(-50%); } }
  .about-grid { gap: 65px; }
  .about-gallery { padding-right: 30px; }
  .service-card { min-height: 290px; }
  .portfolio-heading { gap: 1rem; }
  .gallery-six .work-card:nth-child(-n+3), .gallery-six .work-card:nth-child(n+4), .gallery-seven .work-card, .gallery-seven .work-card:nth-child(n+4) { grid-column: span 6; }
  .resume-inner { align-items: flex-start; flex-direction: column; }
  .tool-category { grid-template-columns: 1fr; gap: .6rem; }
  .training-grid { gap: 70px; }
  .training-poster { max-width: 520px; }
  .rate-grid { grid-template-columns: 1fr; gap: 12px; }
  .rate-card.featured { transform: none; margin: 12px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .nav { min-height: 72px; }
  .brand { font-size: 1.18rem; }
  .brand img { width: 42px; height: 42px; }
  .hero h1 { font-size: clamp(3.25rem, 18vw, 4.5rem); }
  .hero-intro { font-size: .92rem; }
  .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-icon { margin: 1.8rem 0 1.2rem; }
  .gallery-two, .gallery-three { grid-template-columns: 1fr; }
  .gallery-three .work-card:first-child { grid-column: auto; }
  .gallery-six, .gallery-seven { grid-template-columns: 1fr; }
  .gallery-six .work-card:nth-child(-n+3), .gallery-six .work-card:nth-child(n+4), .gallery-seven .work-card, .gallery-seven .work-card:nth-child(n+4) { grid-column: auto; aspect-ratio: 1.2; }
  .work-card.panoramic { aspect-ratio: 2.5; }
  .topic-grid, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .6rem; }
}

/* Refined editorial finish */
:root {
  --ivory: #fcf8f2;
  --cream: #f6e9df;
  --blush: #ebcbc2;
  --peach: #dca58f;
  --rose: #a95f68;
  --wine: #6b2635;
  --espresso: #493633;
  --muted: #786764;
  --white: #fffdfa;
  --line: rgba(107, 38, 53, 0.16);
  --shadow: 0 18px 50px rgba(82, 43, 43, 0.09);
}

body { overflow-x: hidden; }
:focus-visible { outline: 3px solid rgba(169, 95, 104, .45); outline-offset: 4px; }
.section-shell { overflow: clip; }
.eyebrow { color: var(--peach); letter-spacing: .24em; }
h1, h2 { color: var(--wine); }
.portfolio h2, .contact h2, .resume-strip h2 { color: inherit; }

.site-header { background: rgba(252, 248, 242, .94); }
.nav { width: min(1260px, calc(100% - 36px)); }
.brand em { color: var(--wine); font-family: var(--serif); font-size: .86rem; font-style: italic; font-weight: 400; letter-spacing: .03em; text-transform: none; }
.nav-menu { gap: clamp(.65rem, 1vw, 1.15rem); font-size: .69rem; letter-spacing: .045em; white-space: nowrap; }

.button { min-height: 50px; border-radius: 999px; padding-inline: 1.65rem; }
.button-training { border-color: var(--white); color: var(--wine); background: var(--white); box-shadow: 0 10px 28px rgba(107, 38, 53, .08); }
.button-training:hover { border-color: var(--blush); background: var(--ivory); }
.service-card, .rate-card, .contact-form { border-radius: 18px; }

.portrait-frame { background: var(--white); box-shadow: var(--shadow); }
.portrait-frame img { object-position: center 12%; }
.about-main { object-position: center 15%; }
.about-small { object-position: center; }

.portfolio { background: #352827; }
.gallery { gap: clamp(14px, 1.7vw, 22px); align-items: start; }
.work-card,
.work-card.square,
.work-card.portrait,
.work-card.wide,
.work-card.panoramic { min-height: 0; aspect-ratio: auto; border: 1px solid rgba(235, 203, 194, .2); border-radius: 14px; background: #f9f2ec; box-shadow: 0 16px 40px rgba(19, 10, 10, .18); }
.work-card img { width: 100%; height: auto; object-fit: contain; filter: saturate(.92); background: #f9f2ec; }
.work-card:hover img { transform: none; filter: saturate(1); }
.privacy-strip { position: static; display: block; padding: .7rem 1rem; border: 0; border-top: 1px solid rgba(107, 38, 53, .12); color: rgba(73, 54, 51, .78); background: var(--white); backdrop-filter: none; }
.gallery-six .work-card:nth-child(-n+3) { aspect-ratio: auto; }

.tools { background: linear-gradient(180deg, var(--ivory), #f8eee7); }
.tools-layout { grid-template-columns: minmax(250px, .55fr) minmax(0, 1.45fr); gap: clamp(44px, 7vw, 92px); }
.tool-categories { display: grid; gap: 2.1rem; border: 0; }
.tool-category { display: block; padding: 0; border: 0; }
.tool-category h3 { margin: 0 0 .85rem; color: var(--wine); font-size: 1.35rem; }
.tool-pills { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
.tool-pills span { min-width: 0; min-height: 116px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .65rem; border: 1px solid rgba(107, 38, 53, .15); border-radius: 16px; padding: 1rem .7rem; background: var(--white); color: var(--espresso); box-shadow: 0 10px 28px rgba(107, 38, 53, .055); font-size: .76rem; font-weight: 600; line-height: 1.3; text-align: center; overflow-wrap: anywhere; }
.tool-pills span::before { content: attr(data-icon); width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: var(--white); background: var(--wine); font-family: var(--serif); font-size: 1.2rem; font-weight: 400; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.tool-pills span:hover { border-color: var(--rose); color: var(--wine); transform: translateY(-2px); }

.training { background: var(--cream); }
.training-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.training-poster { width: 100%; max-width: 590px; justify-self: center; padding: 0; }
.poster-frame { width: 100%; padding: clamp(8px, 1.5vw, 14px); border: 1px solid rgba(107, 38, 53, .14); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); transform: none; }
.poster-frame img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 12px; }
.poster-stamp { top: 20px; right: 20px; bottom: auto; width: auto; height: auto; padding: .55rem .85rem; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; box-shadow: 0 8px 20px rgba(40,20,22,.12); font-size: .56rem; line-height: 1.25; }

@media (max-width: 1120px) {
  .nav-toggle { display: block; position: relative; z-index: 3; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-menu { position: fixed; inset: 0 0 auto; min-height: 100svh; display: grid; align-content: center; justify-items: center; gap: .15rem; padding: 90px 2rem 3rem; background: var(--ivory); font-family: var(--serif); font-size: clamp(1.55rem, 4vh, 2.15rem); font-weight: 400; white-space: normal; transform: translateY(-110%); transition: transform .35s; }
  .nav-menu.open { transform: translateY(0); }
}

@media (max-width: 900px) {
  .tools-layout { grid-template-columns: 1fr; }
  .tools-intro { position: static; max-width: 720px; }
  .tool-pills { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .about-gallery { padding-right: 20px; }
  .tool-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .training-poster { max-width: 560px; }
  .poster-stamp { top: 14px; right: 14px; }
  .gallery-six .work-card:nth-child(-n+3), .gallery-six .work-card:nth-child(n+4), .gallery-seven .work-card, .gallery-seven .work-card:nth-child(n+4) { grid-column: span 6; aspect-ratio: auto; }
}

@media (max-width: 520px) {
  .section-shell { padding-block: 72px; }
  .experience-badge { left: -10px; bottom: -38px; }
  .tool-pills { gap: .6rem; }
  .tool-pills span { min-height: 108px; padding-inline: .5rem; font-size: .71rem; }
  .gallery-six .work-card:nth-child(-n+3), .gallery-six .work-card:nth-child(n+4), .gallery-seven .work-card, .gallery-seven .work-card:nth-child(n+4) { grid-column: auto; aspect-ratio: auto; }
  .work-card.panoramic { aspect-ratio: auto; }
  .poster-stamp { position: static; width: fit-content; margin: .8rem auto 0; color: var(--wine); background: var(--white); border-color: var(--line); box-shadow: none; }
}
