:root {
  --ink: #1c1113;
  --muted: #6f6265;
  --paper: #f8f3ee;
  --cream: #fffaf5;
  --wine: #720c16;
  --red: #b71320;
  --gold: #d8b27a;
  --line: rgba(28, 17, 19, .13);
  --shadow: 0 28px 80px rgba(57, 13, 18, .16);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); background: var(--paper); color: var(--ink); overflow-x: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link { position: fixed; top: -80px; left: 1rem; z-index: 1000; background: #fff; padding: .8rem 1rem; border-radius: 999px; }
.skip-link:focus { top: 1rem; }
.sr-only { 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 { height: 84px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(1.25rem, 5vw, 5rem); position: absolute; top: 0; left: 0; right: 0; z-index: 20; color: #fff; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 12px; background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.16); overflow: hidden; flex-shrink: 0; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .98rem; letter-spacing: .02em; }
.brand-copy small { margin-top: .32rem; text-transform: uppercase; letter-spacing: .18em; font-size: .57rem; opacity: .72; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { text-decoration: none; font-size: .86rem; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 1px; background: currentColor; transition: right .25s ease; }
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: .8rem 1.1rem; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; color: #fff; padding: .5rem; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; margin: 5px 0; background: currentColor; transition: .25s ease; }

.hero { min-height: 790px; height: 100svh; max-height: 980px; position: relative; isolation: isolate; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); align-items: center; gap: 3vw; padding: 115px clamp(1.25rem, 7vw, 7rem) 55px; overflow: hidden; color: #fff; background: radial-gradient(circle at 25% 30%, #d1343e 0, #a40d18 31%, #750b14 66%, #43050a 100%); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, #000, transparent 85%); }
.hero::after { content: "RYAN"; position: absolute; right: -1.8vw; bottom: -8vw; z-index: -1; font-family: var(--serif); font-size: clamp(10rem, 25vw, 26rem); line-height: .8; color: rgba(255,255,255,.045); letter-spacing: -.08em; }
.hero-glow { position: absolute; width: 580px; height: 580px; border-radius: 50%; right: 7%; top: 14%; background: rgba(255,119,119,.18); filter: blur(50px); z-index: -1; }
.hero-copy { max-width: 720px; }
.eyebrow { margin: 0 0 1.15rem; text-transform: uppercase; letter-spacing: .24em; font-size: .72rem; font-weight: 700; color: var(--red); }
.eyebrow.light { color: #edc89a; }
.hero .eyebrow { color: #ffd5c5; }
.hero h1 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(4.2rem, 7.7vw, 8.8rem); line-height: .88; font-weight: 400; letter-spacing: -.055em; }
.hero h1 em { display: inline-block; color: #f2c188; font-style: italic; }
.hero-lead { max-width: 560px; margin: 2rem 0 0; font-size: clamp(1.04rem, 1.55vw, 1.28rem); line-height: 1.65; color: rgba(255,255,255,.8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .9rem 1.35rem; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: .9rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: #fff; color: var(--wine); box-shadow: 0 14px 35px rgba(35, 0, 4, .2); }
.button-primary:hover { box-shadow: 0 18px 45px rgba(35, 0, 4, .28); }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.42); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.hero-note { display: flex; align-items: center; gap: 1rem; margin-top: 3.6rem; color: rgba(255,255,255,.65); font-family: var(--serif); font-style: italic; font-size: 1.02rem; }
.hero-note .line { width: 54px; height: 1px; background: currentColor; }
.hero-note p { margin: 0; }
.hero-visual { position: relative; justify-self: end; width: min(43vw, 610px); }
.hero-frame { position: relative; aspect-ratio: 1 / 1.07; overflow: hidden; border-radius: 46% 46% 10px 10px; border: 1px solid rgba(255,255,255,.24); box-shadow: 0 40px 80px rgba(34,0,3,.32); }
.hero-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 12px rgba(255,255,255,.035); pointer-events: none; }
.hero-frame img { height: 100%; object-fit: cover; object-position: 48% center; }
.floating-card { position: absolute; left: -2.5rem; bottom: 2.2rem; display: flex; align-items: center; gap: .8rem; padding: .95rem 1.15rem; border: 1px solid rgba(255,255,255,.3); border-radius: 12px; background: rgba(58, 2, 8, .66); backdrop-filter: blur(14px); box-shadow: 0 18px 45px rgba(31,0,3,.25); }
.floating-card strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: #f1c38d; }
.floating-card span { max-width: 58px; font-size: .69rem; line-height: 1.2; text-transform: uppercase; letter-spacing: .11em; }
.seal { position: absolute; right: -2.2rem; top: 13%; width: 112px; height: 112px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: grid; place-items: center; text-align: center; font-size: .54rem; letter-spacing: .18em; line-height: 1.75; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); transform: rotate(9deg); }

.marquee { overflow: hidden; background: #1b0d10; color: #fff; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 2rem; padding: 1.1rem 0; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--serif); font-size: 1.2rem; }
.marquee i { color: #d6ab72; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-shell { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.about { padding-block: clamp(6rem, 10vw, 10rem); }
.section-heading { max-width: 760px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading h2, .method h2, .program h2, .gallery h2, .connect h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5.6vw, 5.8rem); line-height: .98; font-weight: 400; letter-spacing: -.045em; }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.about-image { position: relative; }
.about-image img { aspect-ratio: .82; object-fit: cover; object-position: center; border-radius: 4px 4px 110px 4px; box-shadow: var(--shadow); }
.image-caption { position: absolute; right: -1.4rem; bottom: -1.4rem; padding: 1rem 1.15rem; background: var(--wine); color: #fff; border-radius: 2px; text-transform: uppercase; letter-spacing: .15em; font-size: .62rem; line-height: 1.65; box-shadow: 0 15px 30px rgba(70,7,14,.18); }
.about-copy .intro { margin-top: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.2; color: var(--wine); }
.about-copy p:not(.intro) { font-size: 1.01rem; line-height: 1.85; color: var(--muted); }
.signature { margin-top: 2.1rem; font-family: var(--serif); font-style: italic; font-size: 2.3rem; color: var(--wine); transform: rotate(-4deg); transform-origin: left; }

.method { padding-block: clamp(6rem, 9vw, 9rem); color: #fff; background: #1c0e11; position: relative; overflow: hidden; }
.method::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(183,19,32,.32), transparent 34%), linear-gradient(120deg, transparent 0 64%, rgba(255,255,255,.025) 64% 65%, transparent 65%); pointer-events: none; }
.method-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); }
.method-intro > p:not(.eyebrow) { max-width: 540px; font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,.65); }
.text-link { display: inline-flex; gap: .5rem; margin-top: 1.35rem; color: #f1c48f; text-decoration: none; border-bottom: 1px solid rgba(241,196,143,.45); padding-bottom: .35rem; font-weight: 600; }
.method-cards { border-top: 1px solid rgba(255,255,255,.15); }
.method-card { display: grid; grid-template-columns: 60px 1fr; column-gap: 1.2rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.method-number { grid-row: 1 / span 2; font-family: var(--serif); color: #d7ae7b; font-size: 1.4rem; }
.method-card h3 { margin: 0 0 .65rem; font-family: var(--serif); font-weight: 400; font-size: 2rem; }
.method-card p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.7; }

.program { padding-block: clamp(5rem, 9vw, 9rem); }
.program-card { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; padding: clamp(2rem, 6vw, 5rem); background: var(--cream); border: 1px solid rgba(114,12,22,.12); box-shadow: 0 24px 70px rgba(82,27,32,.08); }
.program-copy > p:not(.eyebrow):not(.program-quote) { max-width: 620px; color: var(--muted); line-height: 1.8; }
.program-quote { margin: 2rem 0 0; padding-left: 1.2rem; border-left: 2px solid var(--red); color: var(--wine); font-family: var(--serif); font-size: 1.35rem; font-style: italic; }
.program-stats { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.program-stats div { min-height: 155px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.program-stats div:nth-child(even) { border-right: 0; }
.program-stats div:nth-child(n+3) { border-bottom: 0; }
.program-stats strong { font-family: var(--serif); font-size: 3.8rem; line-height: 1; color: var(--wine); font-weight: 400; }
.program-stats span { margin-top: .6rem; text-transform: uppercase; letter-spacing: .16em; font-size: .62rem; color: var(--muted); }

.gallery { min-height: 760px; display: grid; grid-template-columns: .78fr 1.22fr; background: var(--wine); color: #fff; overflow: hidden; }
.gallery-copy { align-self: center; padding: clamp(3rem, 8vw, 8rem); }
.gallery-copy p:last-child { max-width: 420px; line-height: 1.8; color: rgba(255,255,255,.68); }
.gallery-image { min-height: 650px; position: relative; }
.gallery-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(114,12,22,.55), transparent 28%); }
.gallery-image img { height: 100%; object-fit: cover; object-position: center 35%; }

.connect { padding-block: clamp(5rem, 9vw, 9rem); }
.connect-card { display: grid; grid-template-columns: 1.25fr .75fr; gap: 3rem; align-items: end; padding: clamp(2.2rem, 6vw, 5rem); background: linear-gradient(135deg, #fff 0%, #f7e8df 100%); border-top: 3px solid var(--red); box-shadow: var(--shadow); }
.connect-card > div:first-child > p:last-child { max-width: 680px; color: var(--muted); line-height: 1.75; }
.connect-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1.3rem; }
.connect .button-primary { background: var(--wine); color: #fff; }
.social-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.social-links a { font-size: .74rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: .25rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 2rem; padding: 2.2rem clamp(1.25rem, 5vw, 5rem); background: #14090b; color: rgba(255,255,255,.7); font-size: .78rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; color: #fff; }
.footer-brand .brand-mark { border-color: rgba(255,255,255,.18); background: #fff; }
.footer-brand > div { display: grid; }
.footer-brand small { margin-top: .25rem; color: rgba(255,255,255,.5); }
.site-footer p { margin: 0; }
.site-footer > a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer > a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr .9fr; padding-inline: 2.5rem; }
  .hero h1 { font-size: clamp(4rem, 8vw, 6.5rem); }
  .seal { display: none; }
  .method-inner { grid-template-columns: 1fr; }
  .method-intro { max-width: 780px; }
  .program-card { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: .7fr 1.3fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > a { grid-column: 2; }
}

@media (max-width: 760px) {
  .site-header { position: absolute; height: 74px; padding-inline: 1.1rem; }
  .brand-copy { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .logo-medallion { width: 74px; height: 74px; right: .65rem; bottom: 1rem; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 1.8rem; background: rgba(24,6,9,.97); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
  .nav-cta { margin-top: .5rem; font-family: var(--sans) !important; font-size: .84rem !important; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero { height: auto; max-height: none; min-height: 0; grid-template-columns: 1fr; gap: 2.2rem; padding: 110px 1.25rem 3.4rem; }
  .hero::after { font-size: 13rem; bottom: 0; right: -2rem; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; width: 100%; justify-self: stretch; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 5.8rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 180px; }
  .hero-note { display: none; }
  .hero-frame { aspect-ratio: 1 / .94; border-radius: 44% 44% 8px 8px; }
  .floating-card { left: .8rem; bottom: .8rem; }

  .section-shell { width: min(100% - 2rem, 680px); }
  .about { padding-block: 5rem; }
  .section-heading h2, .method h2, .program h2, .gallery h2, .connect h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .about-grid { grid-template-columns: 1fr; gap: 3.3rem; }
  .about-image { width: calc(100% - 1rem); }
  .image-caption { right: -1rem; }
  .about-copy .intro { font-size: 1.8rem; }

  .method { padding-block: 5rem; }
  .method-card { grid-template-columns: 48px 1fr; }
  .method-card h3 { font-size: 1.65rem; }

  .program { padding-block: 4.5rem; }
  .program-card { padding: 2rem 1.25rem; }
  .program-stats div { min-height: 125px; }
  .program-stats strong { font-size: 3rem; }

  .gallery { min-height: 0; grid-template-columns: 1fr; }
  .gallery-copy { padding: 4.5rem 1.25rem 3rem; }
  .gallery-image { min-height: 540px; }
  .gallery-image::after { background: linear-gradient(180deg, rgba(114,12,22,.3), transparent 28%); }

  .connect { padding-block: 4.5rem; }
  .connect-card { grid-template-columns: 1fr; padding: 2.2rem 1.25rem; }
  .connect-actions .button { width: 100%; }

  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 1.2rem; }
  .site-footer > a { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
