:root {
  --ink: #2d2520;
  --brown: #4d392e;
  --brown-deep: #2c211c;
  --rose: #c68f79;
  --rose-soft: #e7c5b6;
  --sand: #efe4d6;
  --cream: #f8f3eb;
  --paper: #fffdf9;
  --sage: #6f7564;
  --line: rgba(45, 37, 32, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 70px rgba(31, 22, 16, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(88px, 10vw, 150px); }
.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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--paper);
  padding: 10px 16px;
  border-radius: 999px;
}
.skip-link:focus { transform: none; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}
h2 { font-size: clamp(3rem, 6vw, 5.7rem); margin-bottom: 34px; }
h3 { font-size: 1.75rem; }
em { font-weight: 400; color: var(--rose); }

.eyebrow {
  margin-bottom: 20px;
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--brown); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid var(--paper);
  border-radius: 2px;
  background: var(--paper);
  color: var(--brown-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--rose-soft); }
.button--small { min-height: 43px; padding-inline: 19px; background: var(--brown); color: white; border-color: var(--brown); }
.button--dark { background: var(--brown-deep); color: white; border-color: var(--brown-deep); }
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: white; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 12px max(24px, calc((100vw - 1360px) / 2));
  color: white;
  transition: min-height .3s ease, color .3s ease, background-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  min-height: 76px;
  color: var(--ink);
  background: rgba(255,253,249,.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img {
  width: 51px;
  height: 56px;
  padding: 4px;
  object-fit: contain;
  border-radius: 3px;
  background: rgba(255, 253, 249, .9);
  box-shadow: 0 6px 24px rgba(24, 17, 12, .12);
}
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; letter-spacing: .05em; text-transform: uppercase; }
.brand small { margin-top: 7px; font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 30px); }
.site-nav > a:not(.button) { font-size: .72rem; font-weight: 700; letter-spacing: .07em; }
.site-nav > a:not(.button):hover { color: var(--rose); }
.nav-language { padding-left: 20px; border-left: 1px solid currentColor; opacity: .75; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(930px, 100svh);
  overflow: hidden;
  color: white;
  background: var(--brown-deep);
}
.hero__image, .hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: 57% center; scale: 1.005; }
.hero__veil {
  background:
    linear-gradient(90deg, rgba(26,18,13,.82) 0%, rgba(34,23,16,.58) 35%, rgba(31,23,17,.10) 72%),
    linear-gradient(0deg, rgba(26,18,13,.44), transparent 45%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(930px, 100svh);
  padding-top: 110px;
}
.hero h1 { max-width: 800px; margin-bottom: 30px; font-size: clamp(4.3rem, 9.5vw, 9.4rem); color: white; }
.hero__lead { max-width: 570px; margin-bottom: 42px; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.5; }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.hero__note {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1360px) / 2));
  bottom: 34px;
  display: flex;
  gap: 26px;
  color: rgba(255,255,255,.82);
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro { display: grid; grid-template-columns: 110px 1.2fr .8fr; gap: clamp(30px, 5vw, 84px); align-items: start; }
.intro__mark { width: 86px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--rose); border-radius: 50%; color: var(--rose); font-family: var(--serif); font-size: 2.4rem; }
.intro h2 { margin-bottom: 0; }
.intro__copy { padding-top: 48px; font-family: var(--serif); font-size: 1.18rem; line-height: 1.75; }
.intro__copy p:last-child { margin-bottom: 0; }

.facts { background: var(--sand); border-block: 1px solid var(--line); }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts__grid > div { display: grid; gap: 2px; padding: 32px 38px; border-right: 1px solid var(--line); }
.facts__grid > div:first-child { border-left: 1px solid var(--line); }
.facts strong { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.25rem); font-weight: 400; line-height: 1; }
.facts span { color: #6e6158; font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.hospitality { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px, 8vw, 125px); align-items: center; }
.hospitality__gallery { position: relative; padding: 0 70px 95px 0; }
.hospitality figure { margin: 0; }
.gallery-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.gallery-inset { position: absolute; right: 0; bottom: 0; width: 48%; background: var(--paper); padding: 11px; box-shadow: var(--shadow); }
.gallery-inset img { aspect-ratio: 1; object-fit: cover; }
.gallery-inset figcaption { padding: 12px 4px 3px; font-family: var(--serif); font-style: italic; font-size: .95rem; }
.hospitality__copy > p:not(.eyebrow) { max-width: 530px; font-family: var(--serif); font-size: 1.14rem; line-height: 1.8; }
.feature-list { display: grid; gap: 13px; margin: 32px 0 38px; padding: 0; list-style: none; }
.feature-list li { padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: .88rem; }
.feature-list span { margin-right: 8px; color: var(--rose); }

.rooms { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; margin-bottom: 64px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 8px; font-family: var(--serif); font-size: 1.08rem; line-height: 1.7; }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room-card { background: var(--paper); border: 1px solid var(--line); }
.room-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.82); transition: filter .4s ease, transform .4s ease; }
.room-card:hover img { filter: saturate(1); }
.room-card > div { padding: 26px 28px 30px; }
.room-card span { color: var(--rose); font-size: .67rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.room-card h3 { margin: 8px 0 13px; font-size: 1.85rem; }
.room-card p { margin: 0; color: #655b54; font-size: .92rem; }
.rooms__footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--line); }
.rooms__footer p { max-width: 550px; margin: 0; color: #655b54; font-size: .85rem; }

.abbey { color: white; background: var(--brown-deep); }
.abbey__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 11vw, 170px); align-items: start; }
.abbey__sticky { position: sticky; top: 128px; }
.abbey h2 { color: white; }
.abbey__sticky > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.7); font-family: var(--serif); font-size: 1.1rem; }
.timeline { margin: 0; padding: 0; list-style: none; counter-reset: history; }
.timeline li { position: relative; padding: 10px 0 54px 55px; border-left: 1px solid rgba(255,255,255,.22); }
.timeline li::before { content: ""; position: absolute; left: -5px; top: 16px; width: 9px; height: 9px; border-radius: 50%; background: var(--rose); }
.timeline span { color: var(--rose-soft); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.timeline h3 { margin: 8px 0 13px; color: white; }
.timeline p { margin: 0; color: rgba(255,255,255,.66); }

.community { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.community__image { position: relative; }
.community__image::before { content: ""; position: absolute; inset: 28px -28px -28px 28px; z-index: -1; background: var(--rose-soft); }
.community__image img { aspect-ratio: 16/12; object-fit: cover; }
.community__copy > p:not(.eyebrow) { font-family: var(--serif); font-size: 1.07rem; line-height: 1.8; }
.community blockquote { margin: 34px 0 0; padding: 24px 0 0 28px; border-top: 1px solid var(--line); border-left: 3px solid var(--rose); font-family: var(--serif); font-size: 1.25rem; font-style: italic; }

.assisi { position: relative; min-height: 760px; display: grid; align-items: end; overflow: hidden; color: white; background: var(--brown-deep); }
.assisi__image { position: absolute; inset: 0; }
.assisi__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(24,18,14,.9), rgba(26,19,14,.12) 70%); }
.assisi__image img { width: 100%; height: 100%; object-fit: cover; }
.assisi__content { position: relative; z-index: 2; padding-bottom: 80px; }
.assisi h2 { max-width: 820px; margin-bottom: 24px; color: white; }
.assisi__content > p:not(.eyebrow) { max-width: 610px; font-family: var(--serif); font-size: 1.12rem; }
.assisi__links { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.assisi__links > span { color: rgba(255,255,255,.7); font-size: .7rem; letter-spacing: .05em; }

.visit { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.visit__heading { position: sticky; top: 128px; }
.visit__details { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 44px; padding-top: 40px; }
.visit__details > div { padding-top: 22px; border-top: 1px solid var(--line); }
.visit__details > div:last-child { grid-column: 1/-1; }
.visit__details h3 { margin-bottom: 18px; font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.visit__details address { margin-bottom: 17px; font-family: var(--serif); font-size: 1.2rem; font-style: normal; }
.visit__details a:not(.text-link) { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 1.15rem; }
.visit__details p { margin-bottom: 0; color: #655b54; }

.final-cta { padding-block: clamp(100px, 12vw, 180px); color: white; text-align: center; background: var(--rose) linear-gradient(140deg, rgba(93,58,46,.2), transparent 55%); }
.final-cta__inner { max-width: 900px; }
.final-cta h2 { color: white; margin-bottom: 25px; }
.final-cta p:not(.eyebrow) { max-width: 630px; margin: 0 auto 38px; font-family: var(--serif); font-size: 1.1rem; }

.site-footer { padding: 70px 0 26px; color: rgba(255,255,255,.76); background: #201814; }
.site-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 80px; padding-bottom: 58px; }
.footer-brand { display: flex; align-items: center; gap: 25px; }
.footer-brand img { filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { margin: 0; font-family: var(--serif); font-size: 1rem; }
.site-footer h2 { margin-bottom: 16px; color: white; font-family: var(--sans); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__grid > div:not(.footer-brand) a { display: block; margin-bottom: 7px; font-size: .83rem; }
.site-footer__grid a:hover { color: white; }
.site-footer__bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); font-size: .67rem; letter-spacing: .06em; text-transform: uppercase; }

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

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

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }
  .site-header { min-height: 78px; padding-inline: 18px; }
  .brand img { width: 42px; height: 47px; }
  .brand strong { font-size: 1.16rem; }
  .menu-toggle { position: relative; z-index: 102; display: grid; gap: 7px; width: 46px; height: 46px; place-content: center; border: 0; background: transparent; color: currentColor; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 19px;
    padding: 110px 12vw 50px;
    color: var(--ink);
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a:not(.button) { font-family: var(--serif); font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 400; }
  .nav-language { margin-top: 15px; padding: 15px 0 0; border: 0; border-top: 1px solid var(--line); font-family: var(--sans) !important; font-size: .8rem !important; }
  .site-nav .button { margin-top: 5px; }
  body.menu-open { overflow: hidden; }

  .hero__content { align-items: flex-start; }
  .hero__note { display: none; }
  .intro { grid-template-columns: 80px 1fr; }
  .intro__copy { grid-column: 2; padding-top: 0; }
  .facts__grid { grid-template-columns: 1fr 1fr; }
  .facts__grid > div:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .facts__grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .hospitality, .community, .visit { grid-template-columns: 1fr; }
  .hospitality__gallery { max-width: 650px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .room-card:last-child { grid-column: 1/-1; max-width: calc(50% - 11px); }
  .abbey__grid { grid-template-columns: 1fr; gap: 70px; }
  .abbey__sticky, .visit__heading { position: static; }
  .community__image { max-width: 680px; }
  .visit__details { padding-top: 0; }
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding-block: 78px; }
  h2 { font-size: clamp(2.85rem, 14vw, 4.6rem); }
  .brand small { display: none; }
  .hero { min-height: 760px; }
  .hero__content { min-height: 760px; padding-top: 80px; }
  .hero__image { object-position: 62% center; }
  .hero h1 { font-size: clamp(4rem, 21vw, 6.2rem); }
  .hero__lead { font-size: 1.06rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 22px; }
  .intro { grid-template-columns: 1fr; gap: 22px; }
  .intro__mark { width: 64px; }
  .intro__copy { grid-column: auto; }
  .facts__grid > div { padding: 25px 18px; }
  .facts strong { font-size: 2.35rem; }
  .hospitality { gap: 55px; }
  .hospitality__gallery { padding: 0 44px 70px 0; }
  .gallery-inset { width: 52%; }
  .room-grid { grid-template-columns: 1fr; }
  .room-card:last-child { grid-column: auto; max-width: none; }
  .rooms__footer { align-items: flex-start; flex-direction: column; }
  .timeline li { padding-left: 38px; }
  .community { gap: 60px; }
  .community__image::before { inset: 18px -10px -18px 18px; }
  .assisi { min-height: 680px; }
  .assisi__links { flex-direction: column; align-items: flex-start; }
  .visit { gap: 25px; }
  .visit__details { grid-template-columns: 1fr; gap: 28px; }
  .visit__details > div:last-child { grid-column: auto; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .site-footer__bottom { flex-direction: column; gap: 6px; }
}
