/* ============================================================
   SWISSTATE — Luxe Swiss real estate (ivoire + ink + bronze)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #F5F1EA;
  --bg-soft: #EDE6D9;
  --ink: #1A1410;
  --ink-soft: #3A2E22;
  --ink-mute: #847868;
  --ink-faint: rgba(26, 20, 16, 0.42);
  --rule: rgba(26, 20, 16, 0.14);
  --bronze: #9C7A3C;
  --bronze-deep: #735628;
  --container: 1320px;
  --gap: 28px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--ink); color: var(--bg); }

h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.05; letter-spacing: -0.005em; }

/* ============ Reveal animations ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.05s var(--ease), transform 1.05s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
/* Full-width property cards: fade only, no Y-shift (would leak cream gap between cards) */
.prop[data-reveal],
.prop[data-reveal].is-visible { transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============ Eyebrow ============ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0;
}

/* ============ Header ============ */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header--overlay {
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.18);
  position: absolute;
  top: 0; left: 0; right: 0;
}
.site-header--overlay .brand__mark { color: #fff; }
.site-header--overlay .site-nav { border-top-color: rgba(255,255,255,0.18); }
.site-header--overlay .site-nav a { color: rgba(255,255,255,0.85); }
.site-header--overlay .site-nav a:hover,
.site-header--overlay .site-nav a.is-current { color: #fff; }
.site-header--overlay .nav-toggle { color: #fff; }

.site-header__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px var(--gap) 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.brand__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}

.site-nav { border-top: 1px solid var(--rule); }
.site-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.site-nav a {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 18px 28px;
  position: relative;
}
.site-nav a:hover { color: var(--bronze-deep); }
.site-nav a.is-current { color: var(--ink); }
.site-nav a.is-current::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--bronze);
}

/* ============ Mobile menu ============ */
.site-nav-trigger { display: none; }
.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
  color: var(--ink);
}
.nav-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: opacity 0.2s var(--ease);
  transform-origin: center;
}
/* Open state: hide bars, draw a perfect symmetric X via pseudo-elements */
.nav-open .nav-toggle__bar { opacity: 0; }
.nav-open .nav-toggle__icon::before,
.nav-open .nav-toggle__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
}
.nav-open .nav-toggle__icon::before { transform: translateY(-50%) rotate(45deg); }
.nav-open .nav-toggle__icon::after  { transform: translateY(-50%) rotate(-45deg); }
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0); pointer-events: none; opacity: 0;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease); z-index: 999;
}
.nav-open .nav-backdrop { background: rgba(26,20,16,0.6); opacity: 1; pointer-events: auto; }

/* ============ Full-screen hero ============ */
.hero-full {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-full__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-full__media img { width: 100%; height: 100%; object-fit: cover; }
.hero-full__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,16,0.35) 0%, rgba(26,20,16,0.18) 40%, rgba(26,20,16,0.7) 100%);
  z-index: 1;
}
.hero-full__content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px var(--gap) 0;
  text-align: center;
  color: #fff;
}
.hero-full__eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 36px;
}
.hero-full__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 0 0 36px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 0 32px rgba(0,0,0,0.4);
}
.hero-full__title em {
  font-style: italic;
  font-weight: 300;
  color: #fff;
  display: block;
  font-size: 1.15em;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: -0.05em 0;
}
.hero-full__title-sm {
  font-size: 0.6em;
  display: block;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.hero-full__lead {
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.hero-full__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  padding: 16px 30px;
  border: 1px solid rgba(255,255,255,0.65);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.hero-full__cta::after { content: '→'; transition: transform 0.3s var(--ease); }
.hero-full__cta:hover { background: #fff; color: var(--ink); }
.hero-full__cta:hover::after { transform: translateX(6px); }

/* ============ Section base ============ */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 130px var(--gap);
}
.section-head {
  text-align: center;
  margin-bottom: 80px;
}
.section-head .eyebrow { display: inline-block; margin-bottom: 22px; }
.section-head__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 auto;
  max-width: 760px;
}
.section-head__title em { font-style: normal; }

/* ============ Services 3-col ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.svc-item {
  text-align: center;
}
.svc-item__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
  margin-bottom: 36px;
}
.svc-item__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
}
.svc-item:hover .svc-item__media img { transform: scale(1.04); }
.svc-item__media::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(156, 122, 60, 0.4);
  pointer-events: none;
  z-index: 1;
}
.svc-item__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 18px;
}
.svc-item__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: 0;
}
.svc-item__text {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ Property cards (full-bleed edge-to-edge) ============ */
.props-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 0;
}
.prop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
}
.prop--reverse .prop__media { order: 2; }
.prop__media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.prop__hero {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-soft);
}
.prop__hero img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
}
.prop__thumbs {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
  background: #0E0A06;
  font-size: 0;
  line-height: 0;
  box-sizing: border-box;
}
.prop__thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
  box-sizing: border-box;
}
.prop__thumbs img:hover { opacity: 0.7; }
.prop__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.prop__thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
}
.prop__thumbs img:hover { opacity: 0.7; }
.prop__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.24em;
  color: var(--bronze);
  margin-bottom: 22px;
}
.prop__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 32px;
}
.prop__meta {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 24px;
  margin-bottom: 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
}
.prop__meta dt {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0;
}
.prop__meta dd {
  margin: 0;
  color: var(--ink);
}
.prop__desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 460px;
}
.prop__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ Property text body on dark backdrop ============ */
.prop__body {
  background: #0E0A06;
  color: #F5F1EA;
  padding: 90px clamp(40px, 8vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  align-self: stretch;
}
.prop__body > * { max-width: 480px; width: 100%; margin-left: auto; margin-right: auto; }
.prop__body .prop__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-display);
  font-style: normal;
  letter-spacing: 0.04em;
  font-size: 16px;
  font-weight: 500;
  color: #F5F1EA;
  margin: 0 auto 32px;
  text-transform: uppercase;
}
.prop__body .prop__num::before,
.prop__body .prop__num::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(245, 241, 234, 0.5);
}
.prop__body .prop__name {
  text-align: center;
  color: #F5F1EA;
  font-weight: 400;
  margin: 0 0 56px;
}
.prop__body .prop__meta {
  display: block;
  margin-bottom: 28px;
}
.prop__body .prop__meta dt {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(245,241,234,0.78);
  margin: 22px 0 6px;
}
.prop__body .prop__meta dt:first-child { margin-top: 0; }
.prop__body .prop__meta dd {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5F1EA;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(245,241,234,0.18);
}
.prop__body .prop__meta dd:last-of-type { border-bottom: 0; }
.prop__body .prop__desc {
  text-align: center;
  color: rgba(245,241,234,0.75);
  max-width: none;
  margin: 0 0 32px;
}
.prop__body .prop__actions { justify-content: center; }
.prop__body .btn { border-color: rgba(245,241,234,0.6); color: #F5F1EA; }
.prop__body .btn:hover { background: #F5F1EA; color: #0E0A06; border-color: #F5F1EA; }
.prop__body .btn--bronze { border-color: var(--bronze); color: var(--bronze); }
.prop__body .btn--bronze:hover { background: var(--bronze); color: #0E0A06; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  cursor: pointer;
}
.btn::after { content: '→'; transition: transform 0.3s var(--ease); }
.btn:hover { background: var(--ink); color: var(--bg); }
.btn:hover::after { transform: translateX(6px); }
.btn--bronze { border-color: var(--bronze); color: var(--bronze); }
.btn--bronze:hover { background: var(--bronze); color: var(--bg); }

/* ============ Page intro ============ */
.page-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px var(--gap) 60px;
  text-align: center;
}
.page-intro__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 18px 0 28px;
}
.page-intro__lead {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}

/* ============ Values (4 numbered) ============ */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.value {
  text-align: left;
}
.value__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 56px;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 14px;
}
.value__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 16px;
}
.value__text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ Apropos hero (full-screen image + text overlay at bottom) ============ */
.apropos-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
}
.apropos-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.apropos-hero__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(14,10,6,0) 0%, rgba(14,10,6,0.35) 35%, rgba(14,10,6,0.85) 100%);
  z-index: 1;
}
.apropos-hero__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0 var(--gap) 80px;
  text-align: center;
  color: #F5F1EA;
}
.apropos-hero__eyebrow {
  display: inline-block;
  color: #F5F1EA;
  margin-bottom: 22px;
}
.apropos-hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1.02;
  letter-spacing: 0;
  color: #F5F1EA;
  margin: 0 0 24px;
}
.apropos-hero__lead {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245,241,234,0.85);
  max-width: 720px;
  margin: 0 auto;
}

/* ============ Apropos banner (full-bleed photo strip) ============ */
.apropos-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.apropos-banner img {
  width: 100%;
  height: 56vh;
  min-height: 360px;
  max-height: 640px;
  object-fit: cover;
  display: block;
}
.apropos-banner--full img {
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  max-height: none;
}

/* ============ Team grid ============ */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.team-member {
  text-align: center;
}
.team-member__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg);
  margin-bottom: 28px;
}
.team-member__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
}
.team-member:hover .team-member__photo img { transform: scale(1.04); }
.team-member__photo::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(156, 122, 60, 0.4);
  pointer-events: none;
  z-index: 1;
}
.team-member__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 8px;
}
.team-member__role {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 22px;
}
.team-member__text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ Contact form ============ */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form__field { margin-bottom: 24px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--bronze); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-faint);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}
.contact-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.contact-form__btn:hover { background: var(--ink); color: var(--bg); }
.contact-form__btn:disabled { opacity: 0.5; cursor: default; background: transparent !important; color: var(--ink) !important; }
.contact-form__success {
  margin: 32px auto 0;
  max-width: 540px;
  padding: 20px 28px;
  background: var(--bg-soft);
  border-left: 3px solid var(--bronze);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}

/* ============ Footer ============ */
.site-footer {
  background: #0E0A06;
  color: var(--bg);
  padding: 80px var(--gap) 36px;
  margin-top: 0;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,241,234,0.15);
}
.site-footer__brand .brand__mark { color: var(--bg); }
.site-footer__brand p {
  margin: 22px 0 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(245,241,234,0.65);
  max-width: 320px;
}
.site-footer__col h4 {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 20px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: 11px; }
.site-footer__col a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(245,241,234,0.7);
}
.site-footer__col a:hover { color: var(--bronze); }
.site-footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.5);
}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .props-list { gap: 0 !important; padding: 0 !important; margin: 0 !important; }
  .prop, .prop--reverse {
    display: block !important;
    grid-template-columns: 1fr;
    gap: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-bottom: 3px solid var(--bg) !important;
  }
  .prop:last-child { border-bottom: 0 !important; }
  .prop__media { min-height: auto; aspect-ratio: 4 / 5; display: block; margin: 0 !important; }
  .prop__body { padding: 60px 32px; margin: 0 !important; display: block; }
  .prop--reverse .prop__media { order: 0; }
  .services-grid { grid-template-columns: 1fr; gap: 64px; }
  .values { grid-template-columns: repeat(2, 1fr); gap: 56px; }
  .team { grid-template-columns: 1fr; gap: 56px; }
  .section { padding: 80px var(--gap); }
  .site-footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .props-list { gap: 90px; }
}
@media (max-width: 800px) {
  .site-nav-trigger {
    display: flex;
    justify-content: center;
    padding: 10px var(--gap);
    border-top: 1px solid var(--rule);
  }
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(80vw, 320px);
    height: 100vh; height: 100dvh;
    background: #0E0A06;
    color: #F5F1EA;
    border-top: 0;
    border-left: 1px solid rgba(245,241,234,0.12);
    box-shadow: -8px 0 24px rgba(0,0,0,0.4);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 1000;
    padding: 80px 0 32px;
  }
  .nav-open .site-nav { transform: translateX(0); }
  .site-nav__inner { flex-direction: column; align-items: stretch; padding: 0; }
  .site-nav a {
    padding: 20px 32px;
    font-size: 12px;
    border-bottom: 1px solid rgba(245,241,234,0.12);
    text-align: left;
    color: rgba(245,241,234,0.78);
  }
  .site-nav a:first-child { border-top: 1px solid rgba(245,241,234,0.12); }
  .site-nav a:hover, .site-nav a.is-current { color: var(--bronze); }
  .site-nav a.is-current::after {
    left: 32px; bottom: 18px; transform: none; width: 18px;
    background: var(--bronze);
  }
  .nav-open { overflow: hidden; }
  .nav-open .site-header { z-index: 1000; }
  .nav-open .nav-toggle { position: fixed; top: 16px; right: 16px; z-index: 1100; color: #F5F1EA; }
  .contact-form__row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .values { grid-template-columns: 1fr; }
  .prop__thumbs { grid-template-columns: repeat(3, 1fr); }
}
