:root {
  --ink: #17201e;
  --ink-soft: #27322f;
  --pine: #1f302b;
  --cream: #f3efe6;
  --paper: #fbf9f5;
  --sand: #d9d0c0;
  --gold: #b89962;
  --gold-light: #dcc89f;
  --white: #ffffff;
  --muted: #6b726e;
  --line: rgba(23, 32, 30, 0.14);
  --shadow: 0 28px 80px rgba(20, 28, 26, 0.14);
  --radius: 1.25rem;
  --container: min(1180px, calc(100% - 3rem));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: .7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-pine { background: var(--pine); color: var(--cream); }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 2.6rem; height: 1px; background: currentColor; }
.display-title,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.display-title { max-width: 900px; font-size: clamp(3.1rem, 8.6vw, 7.6rem); }
.section-title { max-width: 800px; font-size: clamp(2.5rem, 5.2vw, 5rem); }
.lead { max-width: 670px; font-size: clamp(1.08rem, 1.6vw, 1.35rem); color: var(--muted); }
.section-dark .lead, .section-pine .lead { color: rgba(243, 239, 230, .68); }
.eyebrow { color: var(--gold-light); font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(251, 249, 245, .94);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; white-space: nowrap; }
.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; letter-spacing: .02em; }
.brand-copy small { margin-top: .22rem; font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .68; }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.4rem); }
.site-nav a { position: relative; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.55rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.nav-cta { padding: .75rem 1rem; border: 1px solid currentColor; }
.language-link { opacity: .7; }
.menu-toggle { display: none; border: 0; background: transparent; padding: .5rem; }
.menu-toggle span { display: block; width: 1.6rem; height: 1px; margin: .35rem 0; background: currentColor; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-media,
.hero-media::after { position: absolute; inset: 0; }
.hero-media {
  background-image: url("../images/hotel-room-dark.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  animation: hero-in 1.4s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(12, 20, 18, .94) 0%, rgba(12, 20, 18, .7) 46%, rgba(12, 20, 18, .14) 100%), linear-gradient(0deg, rgba(12,20,18,.48), transparent 55%);
}
@keyframes hero-in { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1.035); } }
.hero-content { position: relative; z-index: 2; padding: 11rem 0 7rem; }
.hero .display-title em { color: var(--gold-light); font-weight: 400; }
.hero-copy { max-width: 720px; margin: 2rem 0 0; color: rgba(255,255,255,.74); font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.4rem; }
.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  background: var(--gold);
  color: #111817;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-light); }
.button-secondary { border-color: rgba(255,255,255,.5); background: transparent; color: var(--white); }
.button-secondary:hover { background: var(--white); color: var(--ink); }
.hero-note { display: flex; align-items: center; gap: .8rem; margin-top: 3.8rem; color: rgba(255,255,255,.55); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-note::before { content: ""; width: 2.5rem; height: 1px; background: var(--gold); }

.intro-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.intro-copy p { margin: 0 0 1.3rem; color: #4f5854; font-size: 1.08rem; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4rem; background: var(--line); border: 1px solid var(--line); }
.principle { min-height: 230px; padding: 2rem; background: var(--paper); }
.principle-number { display: block; margin-bottom: 3.4rem; color: var(--gold); font-family: var(--serif); font-size: 1.3rem; }
.principle h3 { margin: 0 0 .6rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.principle p { margin: 0; color: var(--muted); font-size: .94rem; }

.services-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.service-card {
  position: relative;
  min-height: 380px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
}
.service-card:nth-child(2n) { border-right: 0; }
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% 35%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,153,98,.16), transparent 68%);
  opacity: 0;
  transition: opacity .35s ease;
}
.service-card:hover::after { opacity: 1; }
.service-index { display: block; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .15em; }
.service-card h3 { max-width: 420px; margin: 2.4rem 0 1.4rem; font-family: var(--serif); font-size: clamp(2rem, 3.3vw, 3rem); font-weight: 400; line-height: 1.05; }
.service-card ul { position: relative; z-index: 1; margin: 0; padding: 0; display: grid; gap: .65rem; list-style: none; color: rgba(243,239,230,.64); }
.service-card li { display: flex; gap: .75rem; }
.service-card li::before { content: "—"; color: var(--gold); }

.image-break { position: relative; min-height: 68svh; display: grid; align-items: end; background: url("../images/hotel-suite.webp") center/cover no-repeat; color: var(--white); }
.image-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,22,19,.83), rgba(13,22,19,.1) 72%); }
.image-break-content { position: relative; z-index: 2; max-width: 690px; padding: 7rem 0; }
.image-break blockquote { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 5.4vw, 5.2rem); line-height: 1.03; }
.image-break p { margin-top: 1.5rem; color: rgba(255,255,255,.7); }

.profile-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.portrait-wrap { position: relative; max-width: 470px; }
.portrait-bg { aspect-ratio: 4 / 5; background: url("../images/hotel-exterior.webp") center/cover no-repeat; filter: saturate(.55) contrast(.93); }
.portrait {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: clamp(150px, 17vw, 220px);
  aspect-ratio: 1;
  border: 12px solid var(--paper);
  object-fit: cover;
}
.profile-copy p { color: #4e5753; }
.profile-copy strong { color: var(--ink); }
.brand-experience { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.brand-cloud { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.brand-pill { padding: .48rem .75rem; border: 1px solid var(--line); color: #4e5753; font-size: .77rem; letter-spacing: .04em; }

.logos { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3.5rem; border: 1px solid rgba(255,255,255,.14); }
.logo-tile { min-height: 160px; display: grid; place-items: center; padding: 2rem; border-right: 1px solid rgba(255,255,255,.14); }
.logo-tile:last-child { border-right: 0; }
.logo-tile img { max-width: 190px; max-height: 72px; opacity: .68; filter: grayscale(1); transition: opacity .2s ease, filter .2s ease; }
.logo-tile:hover img { opacity: 1; filter: grayscale(0); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); }
.contact-details { margin-top: 2.5rem; display: grid; gap: 1rem; }
.contact-details a, .contact-details span { display: block; }
.contact-details small { color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-details a, .contact-value { margin-top: .15rem; font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); }
.contact-details a:hover { color: var(--gold); }
.contact-card {
  align-self: start;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--cream);
  border-top: 3px solid var(--gold);
}
.contact-card .eyebrow { color: #785f35; }
.contact-card h3 { margin: 1rem 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.05; }
.contact-card p:not(.eyebrow) { color: var(--muted); }
.contact-card-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button-outline-dark { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-outline-dark:hover { background: var(--ink); color: var(--cream); }

.site-footer { padding: 2.4rem 0; background: #101714; color: rgba(255,255,255,.65); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.3rem; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold-light); }
.copyright { font-size: .75rem; }

.subpage-hero { padding: 12rem 0 6rem; background: var(--ink); color: var(--cream); }
.prose { max-width: 780px; }
.prose h2 { margin: 3rem 0 1rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.prose p, .prose li { color: #4f5854; }
.prose a { color: #785f35; text-decoration: underline; text-underline-offset: .2em; }

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

@media (max-width: 900px) {
  :root { --container: min(100% - 2rem, 740px); }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 6rem 2rem;
    background: var(--ink);
    color: var(--cream);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-family: var(--serif); font-size: clamp(1.8rem, 8vw, 3.4rem); font-weight: 400; text-transform: none; }
  .site-nav .nav-cta { border: 0; padding: 0; }
  .site-header.scrolled .site-nav { color: var(--cream); }
  .intro-grid, .profile-grid, .contact-grid { grid-template-columns: 1fr; }
  .portrait-wrap { margin-bottom: 2rem; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: auto; }
  .principle-number { margin-bottom: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(2n) { border-right: 0; }
  .services-head { align-items: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .nav-wrap { min-height: 72px; }
  .brand-copy small { display: none; }
  .hero-content { padding: 9rem 0 4rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .services-grid { margin-inline: -1rem; }
  .service-card { min-height: 0; }
  .logos { grid-template-columns: 1fr; }
  .logo-tile, .logo-tile:last-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .logo-tile:last-child { border-bottom: 0; }
  .portrait { right: -.35rem; bottom: -1.3rem; }
  .contact-card-actions { align-items: stretch; flex-direction: column; }
  .contact-card-actions .button { width: 100%; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

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