/* ==========================================================================
   OBUOBA HOMES — Stylesheet
   --------------------------------------------------------------------------
   Class names carry an ob- prefix. Brand tokens are in section 1.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ob-wine: #722F37;
  --ob-wine-deep: #5E242D;
  --ob-wine-night: #3A171C;

  /* Brand gold is 1.9:1 on cream — unreadable as text. It is used on dark
     grounds only (8.6:1 on --ob-night). Gold text on light grounds uses
     --ob-gold-ink, 4.8:1 on cream. */
  --ob-gold: #D4AF37;
  --ob-gold-ink: #86691A;
  --ob-gold-hover: #E2C15A;

  --ob-cream: #F8F5F0;
  --ob-paper: #FFFFFF;
  --ob-ink: #2C2C2C;
  --ob-night: #1A1416;
  --ob-muted: #5E5A55;          /* 6.3:1 on cream */
  --ob-muted-dark: #A79E95;     /* 6.9:1 on --ob-night */
  --ob-line: rgba(44, 44, 44, .12);
  --ob-line-dark: rgba(248, 245, 240, .16);

  --ob-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ob-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ob-max: 1240px;
  --ob-gutter: clamp(20px, 5vw, 48px);
  --ob-space: clamp(80px, 11vw, 136px);
  --ob-ease: cubic-bezier(.16, 1, .3, 1);

  /* Height of the fixed site header; the hero pads its copy down by this. */
  --ob-nav: 88px;
  /* Height of the header once solid (after scrolling, or always on inner pages). */
  --ob-nav-solid: 72px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ob-cream);
  color: var(--ob-ink);
  font-family: var(--ob-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after { box-sizing: border-box; }

h1, h2, h3, h4,
p, ul, ol, li,
blockquote, figure, figcaption { margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--ob-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.005em;
  color: inherit;
}

img { display: block; max-width: 100%; height: auto; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
[hidden] { display: none !important; }

::selection { background: var(--ob-wine); color: #fff; }
:focus-visible { outline: 2px solid var(--ob-gold); outline-offset: 4px; }

.ob-sr {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.ob-ico {
  width: 1em; height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   3. Layout & type
   -------------------------------------------------------------------------- */
.ob-wrap {
  width: 100%;
  max-width: calc(var(--ob-max) + var(--ob-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--ob-gutter);
}

.ob-section { padding-block: var(--ob-space); }

.ob-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-family: var(--ob-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ob-gold-ink);
}
.ob-eyebrow::before,
.ob-eyebrow--center::after {
  content: '';
  width: 36px;
  height: 1px;
  background: currentColor;
  flex: none;
}
.ob-on-dark .ob-eyebrow { color: var(--ob-gold); }

.ob-title {
  font-size: clamp(2.3rem, 4.6vw, 3.75rem);
  font-weight: 400;
  color: var(--ob-ink);
  text-wrap: balance;
}
.ob-title em { font-style: italic; color: var(--ob-wine); }
.ob-on-dark .ob-title { color: var(--ob-cream); }
.ob-on-dark .ob-title em { color: var(--ob-gold); }

.ob-lede {
  max-width: 34rem;
  font-size: clamp(1rem, 1.25vw, 1.075rem);
  font-weight: 300;
  color: var(--ob-muted);
}
.ob-on-dark .ob-lede { color: var(--ob-muted-dark); }

.ob-head {
  display: grid;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.ob-head .ob-eyebrow { margin-bottom: 18px; }
.ob-head--center { justify-items: center; text-align: center; }
.ob-head--center .ob-lede { margin-inline: auto; }
.ob-head-aside { display: grid; gap: 24px; justify-items: start; }

@media (min-width: 900px) {
  .ob-head--split {
    grid-template-columns: 1.1fr 1fr;
    align-items: end;
    gap: 64px;
  }
}

/* --------------------------------------------------------------------------
   4. Buttons & links
   -------------------------------------------------------------------------- */
.ob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--ob-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color .35s var(--ob-ease),
    color .35s var(--ob-ease),
    border-color .35s var(--ob-ease),
    transform .35s var(--ob-ease),
    box-shadow .35s var(--ob-ease);
}
.ob-btn .ob-ico { font-size: 16px; transition: transform .35s var(--ob-ease); }
.ob-btn:hover .ob-ico { transform: translateX(4px); }

.ob-btn--wine { background: var(--ob-wine); color: var(--ob-cream); }
.ob-btn--wine:hover {
  background: var(--ob-wine-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(58, 23, 28, .28);
}

.ob-btn--gold { background: var(--ob-gold); color: var(--ob-night); }
.ob-btn--gold:hover {
  background: var(--ob-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}

.ob-btn--ghost { border-color: rgba(248, 245, 240, .6); color: var(--ob-cream); }
.ob-btn--ghost:hover { background: var(--ob-cream); border-color: var(--ob-cream); color: var(--ob-ink); }

.ob-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
@media (max-width: 520px) {
  .ob-actions .ob-btn { width: 100%; max-width: 340px; }
}

.ob-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ob-wine);
  transition: gap .35s var(--ob-ease);
}
.ob-link .ob-ico { font-size: 15px; }
.ob-link:hover { gap: 16px; }

/* --------------------------------------------------------------------------
   5. Site header & mobile menu
   -------------------------------------------------------------------------- */
.ob-skip {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--ob-wine);
  font-size: 13px;
  font-weight: 600;
  color: var(--ob-cream);
}
.ob-skip:focus { top: 16px; }

.ob-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

body.ob-locked { overflow: hidden; }

.ob-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--ob-cream);
  transition: background-color .4s var(--ob-ease), box-shadow .4s var(--ob-ease), color .4s var(--ob-ease);
}
.ob-header-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  width: 100%;
  height: var(--ob-nav);
  max-width: calc(var(--ob-max) + var(--ob-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--ob-gutter);
  transition: height .4s var(--ob-ease);
}

.ob-header.is-solid {
  background: rgba(248, 245, 240, .96);
  color: var(--ob-ink);
  box-shadow: 0 1px 0 var(--ob-line), 0 12px 32px rgba(44, 44, 44, .06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.ob-header.is-solid .ob-header-inner { height: var(--ob-nav-solid); }

.ob-header.is-menu-open {
  background: transparent;
  color: var(--ob-cream);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Brand. The logo file is a white-background JPG with the building mark
   above the lettering. Only the mark is shown, cropped out of the file by
   the numbers below (its pixel box inside the image); the SVG filters in
   index.html make the white transparent and recolour the mark. The name is
   live text so it stays sharp and readable at header size. */
.ob-brand { display: flex; align-items: center; gap: 14px; margin-right: auto; }

.ob-brand-mark {
  --ob-s: calc(34px / 166);
  position: relative;
  flex: none;
  width: calc(325 * var(--ob-s));
  height: calc(166 * var(--ob-s));
  overflow: hidden;
}
.ob-brand-mark img {
  position: absolute;
  top: calc(-107 * var(--ob-s));
  left: calc(-113 * var(--ob-s));
  width: calc(504 * var(--ob-s));
  height: calc(500 * var(--ob-s));
  max-width: none;
  filter: url(#ob-logo-light);
}
.ob-header.is-solid .ob-brand-mark img { filter: url(#ob-logo-wine); }
.ob-header.is-menu-open .ob-brand-mark img { filter: url(#ob-logo-light); }

.ob-brand-text { display: grid; gap: 6px; line-height: 1; }
.ob-brand-name {
  font-family: var(--ob-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ob-brand-tag {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  opacity: .8;
}
.ob-header.is-solid .ob-brand-name { color: var(--ob-wine); }
.ob-header.is-menu-open .ob-brand-name { color: inherit; }

/* Desktop navigation */
.ob-nav { display: none; }
.ob-nav-list { display: flex; align-items: center; gap: clamp(22px, 2.4vw, 36px); }
.ob-nav-list a {
  position: relative;
  display: block;
  padding-block: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ob-nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  right: .16em;
  bottom: 2px;
  height: 1px;
  background: var(--ob-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ob-ease);
}
.ob-nav-list a:hover::after,
.ob-nav-list a[aria-current="page"]::after { transform: scaleX(1); }
.ob-header.is-solid .ob-nav-list a::after { background: var(--ob-wine); }

.ob-header-cta { display: none; }
.ob-header .ob-header-cta {
  min-height: 46px;
  padding: 0 24px;
  border-color: rgba(248, 245, 240, .6);
  font-size: 12px;
  color: var(--ob-cream);
}
.ob-header .ob-header-cta:hover { background: var(--ob-cream); border-color: var(--ob-cream); color: var(--ob-ink); }
.ob-header.is-solid .ob-header-cta { background: var(--ob-wine); border-color: var(--ob-wine); color: var(--ob-cream); }
.ob-header.is-solid .ob-header-cta:hover { background: var(--ob-wine-deep); border-color: var(--ob-wine-deep); }

/* Menu toggle */
.ob-menu-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  color: inherit;
}
.ob-menu-lines,
.ob-menu-lines::before,
.ob-menu-lines::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ob-ease), background-color .2s ease;
}
.ob-menu-lines { position: relative; }
.ob-menu-lines::before,
.ob-menu-lines::after { content: ''; position: absolute; left: 0; }
.ob-menu-lines::before { top: -7px; }
.ob-menu-lines::after { top: 7px; }
.ob-header.is-menu-open .ob-menu-lines { background: transparent; }
.ob-header.is-menu-open .ob-menu-lines::before { transform: translateY(7px) rotate(45deg); }
.ob-header.is-menu-open .ob-menu-lines::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.ob-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  padding: calc(var(--ob-nav) + 16px) var(--ob-gutter) 40px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(114, 47, 55, .55), transparent 60%),
    var(--ob-night);
  color: var(--ob-cream);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ob-ease), visibility 0s linear .4s;
}
.ob-menu.is-open { opacity: 1; visibility: visible; transition: opacity .4s var(--ob-ease); }

.ob-menu-nav { width: 100%; max-width: 560px; margin: auto; }

.ob-menu-list li {
  border-bottom: 1px solid var(--ob-line-dark);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ob-ease), transform .5s var(--ob-ease);
}
.ob-menu-list a {
  display: block;
  padding: 14px 0;
  font-family: var(--ob-serif);
  font-size: clamp(2rem, 8vw, 2.6rem);
  line-height: 1.15;
}
.ob-menu-list a[aria-current="page"] { color: var(--ob-gold); }

.ob-menu-cta { margin-top: 36px; opacity: 0; transition: opacity .5s var(--ob-ease) .3s, background-color .35s var(--ob-ease); }
@media (max-width: 520px) { .ob-menu-cta { width: 100%; } }

.ob-menu.is-open .ob-menu-list li,
.ob-menu.is-open .ob-menu-cta { opacity: 1; transform: none; }
.ob-menu.is-open .ob-menu-list li:nth-child(2) { transition-delay: .04s; }
.ob-menu.is-open .ob-menu-list li:nth-child(3) { transition-delay: .08s; }
.ob-menu.is-open .ob-menu-list li:nth-child(4) { transition-delay: .12s; }
.ob-menu.is-open .ob-menu-list li:nth-child(5) { transition-delay: .16s; }

@media (min-width: 1240px) {
  .ob-nav { display: block; }
  .ob-header-cta { display: inline-flex; }
  .ob-menu-btn, .ob-menu { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.ob-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--ob-nav) + 32px) var(--ob-gutter) 136px;
  overflow: hidden;
  background: var(--ob-night);
  color: var(--ob-cream);
  text-align: center;
}

.ob-hero-bg { position: absolute; inset: 0; z-index: -2; }
.ob-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.08);
  animation: ob-drift 16s var(--ob-ease) forwards;
}
@keyframes ob-drift { to { transform: scale(1); } }

.ob-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 12, 14, .74) 0%, rgba(20, 12, 14, .38) 34%, rgba(20, 12, 14, .44) 64%, rgba(20, 12, 14, .88) 100%),
    radial-gradient(ellipse at center, rgba(20, 12, 14, .1) 0%, rgba(20, 12, 14, .5) 100%);
}

.ob-hero-inner { width: 100%; max-width: 940px; }

.ob-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ob-gold);
}
.ob-hero-kicker::before,
.ob-hero-kicker::after {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: .7;
  flex: none;
}
@media (max-width: 420px) {
  .ob-hero-kicker { gap: 10px; font-size: 11px; letter-spacing: .22em; }
  .ob-hero-kicker::before, .ob-hero-kicker::after { width: 18px; }
}

.ob-hero-title {
  margin-bottom: 30px;
  font-size: clamp(2.9rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.04;
  color: var(--ob-cream);
  text-wrap: balance;
}
.ob-hero-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--ob-gold);
}

.ob-hero-text {
  max-width: 36rem;
  margin: 0 auto 44px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(248, 245, 240, .9);
}

.ob-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-left: .3em;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, .85);
}
.ob-scroll-line {
  position: relative;
  width: 1px;
  height: 56px;
  overflow: hidden;
  background: rgba(212, 175, 55, .25);
}
.ob-scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: var(--ob-gold);
  animation: ob-scroll 2.4s var(--ob-ease) infinite;
}
@keyframes ob-scroll { to { top: 100%; } }

@media (max-height: 640px) { .ob-scroll { display: none; } }

/* --------------------------------------------------------------------------
   7. About
   -------------------------------------------------------------------------- */
.ob-about { background: var(--ob-cream); }

.ob-about-grid {
  display: grid;
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}
@media (min-width: 960px) {
  .ob-about-grid { grid-template-columns: 1fr 1.08fr; }
}

.ob-about-media { position: relative; padding: 0 24px 24px 0; }
.ob-about-media::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px; right: 0; bottom: 0;
  border: 1px solid var(--ob-gold);
}
.ob-about-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (min-width: 960px) {
  .ob-about-media { padding: 0 32px 32px 0; }
  .ob-about-media::before { top: 32px; left: 32px; }
  .ob-about-media img { aspect-ratio: 4 / 5; }
}

.ob-about-tag {
  position: absolute;
  left: 0;
  bottom: 56px;
  display: grid;
  gap: 2px;
  padding: 20px 26px;
  background: var(--ob-wine);
  font-family: var(--ob-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--ob-cream);
}
.ob-about-tag span + span { color: var(--ob-gold); }
@media (max-width: 959px) {
  .ob-about-tag { bottom: 36px; padding: 14px 18px; font-size: 1.02rem; }
}

.ob-about-copy .ob-title { margin-bottom: 36px; }

.ob-quote {
  margin-bottom: 32px;
  padding-left: 28px;
  border-left: 2px solid var(--ob-gold);
}
.ob-quote p {
  font-family: var(--ob-serif);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ob-wine);
}

.ob-body {
  margin-bottom: 44px;
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--ob-muted);
}

.ob-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 44px;
  border-top: 1px solid var(--ob-line);
  border-bottom: 1px solid var(--ob-line);
}
.ob-stat { padding: 30px 12px; text-align: center; }
.ob-stat + .ob-stat { border-left: 1px solid var(--ob-line); }
.ob-stat-num {
  display: block;
  margin-bottom: 10px;
  font-family: var(--ob-serif);
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1;
  color: var(--ob-wine);
  font-variant-numeric: lining-nums tabular-nums;
}
.ob-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ob-muted);
}
@media (max-width: 420px) {
  .ob-stat { padding: 24px 4px; }
  .ob-stat-label { font-size: 10px; letter-spacing: .06em; }
}

/* --------------------------------------------------------------------------
   8. Services
   -------------------------------------------------------------------------- */
.ob-services { background: var(--ob-paper); }

.ob-service-grid { display: grid; gap: 28px; }
@media (min-width: 860px) {
  .ob-service-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 36px); }
}

.ob-service {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--ob-cream);
  transition: transform .5s var(--ob-ease), box-shadow .5s var(--ob-ease);
}
.ob-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(44, 44, 44, .1);
}

.ob-service-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.ob-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ob-ease);
}
.ob-service:hover .ob-service-media img { transform: scale(1.06); }

.ob-service-num {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  background: var(--ob-wine);
  font-family: var(--ob-serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ob-cream);
}

.ob-service-body { display: flex; flex-direction: column; flex: 1; padding: 30px 28px 34px; }
.ob-service h3 { margin-bottom: 14px; font-size: 1.85rem; color: var(--ob-ink); }
.ob-service p { margin-bottom: 28px; font-size: .95rem; font-weight: 300; color: var(--ob-muted); }
.ob-service .ob-link { align-self: flex-start; margin-top: auto; }

/* The whole card is clickable: the link's box is stretched over the card. */
.ob-service .ob-link::after { content: ''; position: absolute; inset: 0; }

/* --------------------------------------------------------------------------
   9. Featured properties
   -------------------------------------------------------------------------- */
.ob-properties { background: var(--ob-cream); }

.ob-prop-grid { display: grid; gap: 24px; }
@media (min-width: 900px) {
  .ob-prop-grid {
    grid-template-columns: 1.35fr 1fr;
    grid-auto-rows: 330px;
  }
  .ob-prop--feature { grid-row: span 2; }
}

.ob-prop {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 440px;
  overflow: hidden;
  background: var(--ob-night);
  color: var(--ob-cream);
}
@media (min-width: 900px) { .ob-prop { min-height: 0; } }

.ob-prop img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ob-ease);
}
.ob-prop:hover img { transform: scale(1.05); }

.ob-prop::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 12, 14, .15) 0%, rgba(20, 12, 14, 0) 18%, rgba(20, 12, 14, .74) 50%, rgba(20, 12, 14, .95) 100%);
}

.ob-prop-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 14px;
  background: var(--ob-cream);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ob-wine);
}
.ob-prop-badge--gold { background: var(--ob-gold); color: var(--ob-night); }

.ob-prop-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(248, 245, 240, .55);
  border-radius: 50%;
  background: rgba(20, 12, 14, .3);
  font-size: 18px;
  color: var(--ob-cream);
  transition: background-color .35s var(--ob-ease), border-color .35s var(--ob-ease), color .35s var(--ob-ease), transform .45s var(--ob-ease);
}
.ob-prop:hover .ob-prop-arrow {
  background: var(--ob-gold);
  border-color: var(--ob-gold);
  color: var(--ob-night);
  transform: rotate(-45deg);
}

.ob-prop-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; text-shadow: 0 1px 14px rgba(0, 0, 0, .35); }
@media (min-width: 900px) { .ob-prop--feature .ob-prop-body { padding: 44px; } }

.ob-prop-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, .92);
}
.ob-prop-loc .ob-ico { font-size: 14px; color: var(--ob-gold); }

.ob-prop h3 { margin-bottom: 18px; font-size: clamp(1.7rem, 2.4vw, 2rem); color: var(--ob-cream); }
.ob-prop--feature h3 { font-size: clamp(2rem, 3.4vw, 2.9rem); }

.ob-prop-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(248, 245, 240, .22);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(248, 245, 240, .88);
}
.ob-prop-specs li { display: flex; align-items: center; gap: 8px; }
.ob-prop-specs .ob-ico { font-size: 16px; color: var(--ob-gold); }
.ob-prop-specs .ob-prop-price { margin-left: auto; font-family: var(--ob-serif); font-size: 1.3rem; font-weight: 600; line-height: 1; color: var(--ob-gold); }

/* --------------------------------------------------------------------------
   10. Process
   -------------------------------------------------------------------------- */
.ob-process {
  background:
    radial-gradient(circle at 88% 0%, rgba(114, 47, 55, .5), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(114, 47, 55, .22), transparent 45%),
    var(--ob-night);
  color: var(--ob-cream);
}

.ob-steps { display: grid; }

.ob-step {
  position: relative;
  padding: 34px 0 34px 72px;
  border-top: 1px solid var(--ob-line-dark);
}
.ob-step:last-child { border-bottom: 1px solid var(--ob-line-dark); }

.ob-step-num {
  position: absolute;
  left: 0;
  top: 30px;
  font-family: var(--ob-serif);
  font-size: 2.4rem;
  font-style: italic;
  line-height: 1;
  color: var(--ob-gold);
}

.ob-step h3 { margin-bottom: 12px; font-size: 1.65rem; color: var(--ob-cream); }
.ob-step p { font-size: .95rem; font-weight: 300; color: var(--ob-muted-dark); }

@media (min-width: 980px) {
  .ob-steps {
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ob-line-dark);
  }
  .ob-step { padding: 48px 36px 0 0; border: 0; }
  .ob-step:last-child { border: 0; padding-right: 0; }
  .ob-step::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 9px;
    height: 9px;
    background: var(--ob-gold);
    transform: rotate(45deg);
  }
  .ob-step-num { position: static; display: block; margin-bottom: 24px; font-size: 3.4rem; }
}

/* --------------------------------------------------------------------------
   11. Testimonials (card carousel)
   -------------------------------------------------------------------------- */
.ob-voices { background: var(--ob-paper); }

.ob-carousel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.ob-carousel-head .ob-title { margin-bottom: 14px; }

.ob-carousel-arrows { display: flex; gap: 10px; }
.ob-carousel-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ob-wine);
  border-radius: 50%;
  color: var(--ob-wine);
  transition: background-color .3s ease, color .3s ease, opacity .3s ease;
}
.ob-carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ob-carousel-arrow:hover:not(:disabled) { background: var(--ob-wine); color: var(--ob-cream); }
.ob-carousel-arrow:disabled { opacity: .3; cursor: default; }

/* The arrows and progress line need the script, and are pointless when every
   card already fits; the cards stay swipeable either way. */
html:not(.ob-js) .ob-carousel-arrows,
html:not(.ob-js) .ob-carousel-progress,
.ob-voices.is-static .ob-carousel-arrows,
.ob-voices.is-static .ob-carousel-progress { display: none; }

.ob-carousel-track {
  display: grid;
  grid-auto-columns: 86%;
  grid-auto-flow: column;
  gap: 20px;
  padding-bottom: 6px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.ob-carousel-track::-webkit-scrollbar { display: none; }
@media (min-width: 700px) { .ob-carousel-track { grid-auto-columns: calc((100% - 20px) / 2); } }
@media (min-width: 1080px) { .ob-carousel-track { grid-auto-columns: calc((100% - 48px) / 3); gap: 24px; } }
@media (prefers-reduced-motion: reduce) { .ob-carousel-track { scroll-behavior: auto; } }

.ob-voice {
  display: flex;
  flex-direction: column;
  padding: 40px 32px 30px;
  border-top: 2px solid transparent;
  background: var(--ob-cream);
  scroll-snap-align: start;
  transition: border-color .35s ease;
}
.ob-voice:hover { border-top-color: var(--ob-gold); }
@media (max-width: 480px) { .ob-voice { padding: 32px 24px 26px; } }

.ob-voice-mark {
  display: block;
  height: 34px;
  font-family: var(--ob-serif);
  font-size: 4.5rem;
  line-height: .75;
  color: var(--ob-gold);
}
.ob-voice-quote {
  flex: 1;
  margin: 20px 0 30px;
  font-family: var(--ob-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ob-ink);
}
.ob-voice-who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--ob-line);
}
.ob-voice-initials {
  display: grid;
  place-items: center;
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ob-wine), var(--ob-wine-night));
  font-family: var(--ob-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ob-cream);
}
.ob-voice-name { display: block; font-size: .88rem; font-weight: 600; color: var(--ob-ink); }
.ob-voice-role { display: block; font-size: .78rem; color: var(--ob-muted); }

.ob-carousel-progress { position: relative; height: 2px; margin-top: 32px; background: var(--ob-line); }
.ob-carousel-progress span {
  position: absolute;
  top: 0;
  left: 0;
  width: 33%;
  height: 100%;
  background: var(--ob-wine);
  transition: left .3s ease, width .3s ease;
}

/* --------------------------------------------------------------------------
   12. Closing call to action
   -------------------------------------------------------------------------- */
.ob-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(96px, 13vw, 160px);
  background: var(--ob-wine-night);
  color: var(--ob-cream);
  text-align: center;
}
.ob-cta-bg { position: absolute; inset: 0; z-index: -2; }
.ob-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.ob-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(58, 23, 28, .95) 0%, rgba(114, 47, 55, .86) 55%, rgba(26, 20, 22, .92) 100%);
}
.ob-cta-inner { max-width: 760px; margin: 0 auto; }
.ob-cta .ob-title { margin-bottom: 22px; }
.ob-cta-text {
  max-width: 34rem;
  margin: 0 auto 40px;
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(248, 245, 240, .88);
}

/* --------------------------------------------------------------------------
   13. Footer (editorial wordmark)
   -------------------------------------------------------------------------- */
.ob-footer {
  padding-top: clamp(64px, 9vw, 104px);
  border-top: 1px solid var(--ob-line);
  background: var(--ob-cream);
  color: var(--ob-ink);
}

.ob-footer-top { display: grid; gap: 44px; padding-bottom: clamp(44px, 6vw, 64px); }
@media (min-width: 1000px) { .ob-footer-top { grid-template-columns: 1fr 1.4fr; gap: 64px; } }

.ob-footer-tagline {
  font-family: var(--ob-serif);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ob-ink);
}
.ob-footer-tagline em { font-style: italic; color: var(--ob-wine); }
.ob-footer-desc { max-width: 26rem; margin-top: 18px; font-size: .92rem; font-weight: 300; line-height: 1.7; color: var(--ob-muted); }

/* Phones: Explore and Hours side by side, Contact full width underneath so
   the email address never has to break. Wider: three columns in order. */
.ob-footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
.ob-footer-col--contact { grid-column: 1 / -1; order: 3; }
@media (min-width: 640px) {
  .ob-footer-cols { grid-template-columns: .8fr 1.3fr 1fr; }
  .ob-footer-col--contact { grid-column: auto; order: 0; }
}

.ob-footer-heading {
  margin-bottom: 18px;
  font-family: var(--ob-sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ob-gold-ink);
}

.ob-footer-links li { font-size: .92rem; line-height: 1.6; color: rgba(44, 44, 44, .85); overflow-wrap: anywhere; }
.ob-footer-links li + li { margin-top: 10px; }
.ob-footer-links a { transition: color .3s ease; }
.ob-footer-links a:hover { color: var(--ob-wine); }
.ob-footer-contact { font-style: normal; }

.ob-footer-hours li span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ob-muted);
}

/* The wordmark: large, but held to roughly two-thirds of the column on
   desktop and sized to fit a 320px phone without wrapping. */
.ob-footer-word {
  padding-block: clamp(32px, 5vw, 52px) clamp(26px, 4vw, 44px);
  border-top: 1px solid var(--ob-line);
  font-family: var(--ob-serif);
  font-size: clamp(2rem, 7.2vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ob-wine);
  user-select: none;
}

.ob-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  padding-block: 22px 28px;
  border-top: 1px solid var(--ob-line);
  font-size: .8rem;
  color: #6B6560;
}
.ob-totop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ob-wine);
}
.ob-totop .ob-ico { font-size: 14px; transition: transform .35s var(--ob-ease); }
.ob-totop:hover .ob-ico { transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   14. Scroll reveals
   Only hidden once <html> carries .ob-js (set by an inline script in the
   head), so with scripts disabled everything stays visible.
   -------------------------------------------------------------------------- */
html.ob-js [data-ob-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ob-ease), transform 1s var(--ob-ease);
}
html.ob-js [data-ob-reveal="1"] { transition-delay: .12s; }
html.ob-js [data-ob-reveal="2"] { transition-delay: .24s; }
html.ob-js [data-ob-reveal="3"] { transition-delay: .36s; }
html.ob-js [data-ob-reveal="4"] { transition-delay: .48s; }
html.ob-js [data-ob-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.ob-js [data-ob-reveal] { opacity: 1; transform: none; transition: none; }
  .ob-hero-bg img { animation: none; transform: none; }
  .ob-scroll-line::after { animation: none; top: 30%; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}


/* --------------------------------------------------------------------------
   15. Inner pages — shared
   -------------------------------------------------------------------------- */
/* Inner pages start with the header already solid, so content is pushed
   below it rather than sliding under it. */
.ob-offset { padding-top: var(--ob-nav-solid); }

.ob-page-head {
  padding: clamp(72px, 10vw, 120px) 0 clamp(40px, 5vw, 56px);
  text-align: center;
}
.ob-page-head .ob-lede { margin-inline: auto; }

.ob-page-title {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ob-ink);
  text-wrap: balance;
}
.ob-page-title em { font-style: italic; color: var(--ob-wine); }

.ob-btn--line { border-color: var(--ob-wine); color: var(--ob-wine); }
.ob-btn--line:hover { background: var(--ob-wine); color: var(--ob-cream); transform: translateY(-3px); }

.ob-btn--light { background: var(--ob-cream); color: var(--ob-wine); }
.ob-btn--light:hover {
  background: var(--ob-gold);
  color: var(--ob-night);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

/* --------------------------------------------------------------------------
   16. Contact page
   -------------------------------------------------------------------------- */
.ob-contact { display: grid; }
@media (min-width: 1024px) {
  .ob-contact { grid-template-columns: 45fr 55fr; min-height: calc(100vh - var(--ob-nav-solid)); }
}

.ob-contact-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 46vh;
  padding: clamp(64px, 10vw, 96px) var(--ob-gutter);
  overflow: hidden;
  background: var(--ob-wine);
  color: var(--ob-cream);
}
/* Desktop: the wine panel runs the full height of its column (no bare strip
   under it once the details column is longer), and the text inside stays
   pinned in view while the details scroll past. --ob-contact-top starts the
   text roughly mid-screen and is also where it pins. */
@media (min-width: 1024px) {
  .ob-contact-hero {
    --ob-contact-top: max(72px, calc(50vh - 210px));
    align-items: flex-start;
    padding: var(--ob-contact-top) clamp(48px, 5vw, 96px) 72px;
    overflow: visible;
  }
  .ob-contact-hero-inner {
    position: sticky;
    top: calc(var(--ob-nav-solid) + var(--ob-contact-top));
  }
}
.ob-contact-hero-bg { position: absolute; inset: 0; z-index: -2; }
.ob-contact-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.ob-contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(114, 47, 55, .94) 0%, rgba(74, 28, 34, .9) 100%);
}
.ob-contact-hero-inner { max-width: 34rem; }

.ob-contact-title {
  margin-bottom: 32px;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ob-cream);
}
.ob-contact-title em { font-style: italic; color: var(--ob-gold); }

.ob-contact-lede {
  padding-left: 24px;
  border-left: 1px solid rgba(248, 245, 240, .35);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, .9);
}

.ob-contact-info { padding: clamp(64px, 9vw, 112px) var(--ob-gutter); background: var(--ob-paper); }
@media (min-width: 1024px) { .ob-contact-info { padding: 96px clamp(48px, 6vw, 96px); } }
.ob-contact-info-inner { max-width: 680px; }
@media (max-width: 1023px) { .ob-contact-info-inner { margin-inline: auto; } }

.ob-contact-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ob-muted);
}
.ob-contact-label::after { content: ''; flex: 0 1 100px; height: 1px; background: var(--ob-line); }

.ob-contact-cards { display: grid; gap: 52px; margin-bottom: 64px; }
.ob-contact-card {
  padding-left: 24px;
  border-left: 1px solid var(--ob-line);
  transition: border-color .4s var(--ob-ease), padding-left .4s var(--ob-ease);
}
.ob-contact-card:hover { border-left-color: var(--ob-gold); padding-left: 30px; }

.ob-contact-card-label {
  margin-bottom: 14px;
  font-family: var(--ob-sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ob-muted);
}

.ob-contact-value {
  display: block;
  width: fit-content;
  max-width: 100%;
  font-family: var(--ob-serif);
  font-size: clamp(1.75rem, 3.4vw, 2.3rem);
  line-height: 1.3;
  color: var(--ob-ink);
  overflow-wrap: anywhere;
  transition: color .3s ease;
}
.ob-contact-value:hover { color: var(--ob-wine); }
.ob-contact-value--sm { font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
.ob-contact-sub { margin-top: 12px; font-size: .95rem; color: var(--ob-muted); }

.ob-contact-grid {
  display: grid;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--ob-line);
}
@media (min-width: 640px) { .ob-contact-grid { grid-template-columns: 1fr 1fr; } }

.ob-contact-h { margin-bottom: 14px; font-size: 1.6rem; font-weight: 500; color: var(--ob-ink); }
.ob-contact-address {
  margin-bottom: 22px;
  font-size: 1.02rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ob-muted);
}

.ob-hours { margin: 0; }
.ob-hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  border-bottom: 1px dashed var(--ob-line);
  font-size: .95rem;
}
.ob-hours div:last-child { border-bottom: 0; }
.ob-hours dt { font-weight: 500; color: var(--ob-ink); }
.ob-hours dd { margin: 0; text-align: right; color: var(--ob-muted); }

.ob-contact-cta {
  position: relative;
  isolation: isolate;
  margin-top: 72px;
  padding: clamp(40px, 6vw, 60px) 28px;
  overflow: hidden;
  background: var(--ob-wine);
  color: var(--ob-cream);
  text-align: center;
}
.ob-contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .07;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 20px 20px;
}
.ob-contact-cta-title { margin-bottom: 10px; font-size: clamp(1.75rem, 3vw, 2.1rem); font-weight: 400; color: var(--ob-cream); }
.ob-contact-cta p { margin-bottom: 30px; font-weight: 300; color: rgba(248, 245, 240, .85); }

/* --------------------------------------------------------------------------
   17. Properties page
   -------------------------------------------------------------------------- */
.ob-portfolio { padding-bottom: clamp(64px, 9vw, 112px); }

.ob-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
  margin-bottom: clamp(40px, 5vw, 56px);
  scroll-margin-top: calc(var(--ob-nav-solid) + 24px);
}
/* Filtering needs the script; without it every listing shows, so hide the buttons. */
html:not(.ob-js) .ob-filters { display: none; }

.ob-filter {
  position: relative;
  padding: 8px 0;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ob-muted);
  transition: color .3s ease;
}
.ob-filter::after {
  content: '';
  position: absolute;
  left: 0;
  right: .16em;
  bottom: 0;
  height: 1px;
  background: var(--ob-wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ob-ease);
}
.ob-filter:hover, .ob-filter[aria-pressed="true"] { color: var(--ob-wine); }
.ob-filter[aria-pressed="true"]::after { transform: scaleX(1); }
@media (max-width: 480px) {
  .ob-filters { gap: 4px 20px; }
  .ob-filter { font-size: 11.5px; letter-spacing: .12em; }
}

.ob-listing-grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
@media (min-width: 640px) { .ob-listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ob-listing-grid { grid-template-columns: repeat(3, 1fr); } }

/* Cards rise in each time a filter or page brings them into view (display
   none -> shown restarts the animation). Fill mode is `backwards`, not
   `both`, so once it ends the hover lift below is free to apply. */
.ob-listing {
  display: flex;
  flex-direction: column;
  background: var(--ob-paper);
  transition: transform .45s var(--ob-ease), box-shadow .45s var(--ob-ease);
  animation: ob-rise .7s var(--ob-ease) backwards;
  animation-delay: calc(var(--ob-i, 0) * 60ms);
}
@keyframes ob-rise { from { opacity: 0; transform: translateY(20px); } }
.ob-listing:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(44, 44, 44, .09); }

.ob-listing-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #E9E3DA; }
.ob-listing-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ob-ease); }
.ob-listing:hover .ob-listing-media img { transform: scale(1.05); }

.ob-listing-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  border-left: 3px solid currentColor;
  background: rgba(255, 255, 255, .95);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ob-wine);
}
.ob-listing-badge--rental { color: var(--ob-gold-ink); }

.ob-listing-body { display: flex; flex-direction: column; flex: 1; padding: 26px 26px 28px; }

.ob-listing-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ob-muted);
}
.ob-listing-loc .ob-ico { font-size: 14px; color: var(--ob-gold-ink); }

.ob-listing-title { margin-bottom: 8px; font-size: 1.75rem; font-weight: 500; color: var(--ob-ink); }

.ob-listing-price {
  margin-bottom: 22px;
  font-family: var(--ob-serif);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ob-wine);
}
.ob-listing-per { font-size: 1rem; font-weight: 500; color: var(--ob-muted); }

.ob-listing-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--ob-line);
}
.ob-listing-specs li { display: grid; gap: 4px; }
.ob-listing-spec-value { font-family: var(--ob-serif); font-size: 1.3rem; font-weight: 600; line-height: 1; color: var(--ob-ink); }
.ob-listing-spec-label {
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ob-muted);
}

.ob-listing-empty {
  padding: 56px 16px;
  font-family: var(--ob-serif);
  font-size: 1.4rem;
  font-style: italic;
  text-align: center;
  color: var(--ob-muted);
}

.ob-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(40px, 5vw, 56px);
}
.ob-page-btn {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--ob-line);
  background: var(--ob-paper);
  font-size: .92rem;
  color: var(--ob-ink);
  transition: border-color .3s ease, color .3s ease, background-color .3s ease;
}
.ob-page-btn:hover:not(:disabled) { border-color: var(--ob-wine); color: var(--ob-wine); }
.ob-page-btn.is-current { background: var(--ob-wine); border-color: var(--ob-wine); color: var(--ob-cream); }
.ob-page-btn:disabled { opacity: .35; cursor: not-allowed; }

.ob-begin { border-top: 1px solid var(--ob-line); background: var(--ob-paper); text-align: center; }
.ob-begin-inner { display: grid; justify-items: center; gap: 20px; }
.ob-begin .ob-lede { margin-inline: auto; }
.ob-begin .ob-actions { margin-top: 16px; }


/* --------------------------------------------------------------------------
   18. About page
   -------------------------------------------------------------------------- */
.ob-hero--page { min-height: 82vh; min-height: 82svh; padding-bottom: 120px; }

/* Wine-tinted scrim, echoing the original About hero's wine multiply. */
.ob-hero--wine::before {
  background: linear-gradient(180deg, rgba(40, 14, 19, .8) 0%, rgba(114, 47, 55, .62) 42%, rgba(74, 28, 34, .68) 70%, rgba(20, 12, 14, .9) 100%);
}

.ob-hero-rule {
  display: block;
  width: 1px;
  height: 48px;
  margin: 0 auto 24px;
  background: var(--ob-gold);
  opacity: .7;
}
.ob-hero-kicker--plain::before,
.ob-hero-kicker--plain::after { display: none; }

/* Core expertise */
.ob-narrative { background: var(--ob-paper); }
.ob-narrative-grid { display: grid; gap: clamp(56px, 7vw, 96px); align-items: center; }
@media (min-width: 960px) { .ob-narrative-grid { grid-template-columns: 1.1fr 1fr; } }

.ob-narrative-copy .ob-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  margin-top: 28px;
  background: var(--ob-wine);
}
.ob-narrative-copy .ob-title { margin-bottom: 32px; }

.ob-narrative-body {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ob-muted);
}
.ob-narrative-body strong { font-weight: 600; color: var(--ob-ink); }

.ob-actions--start { justify-content: flex-start; }

/* Mission & vision */
.ob-foundation { background: var(--ob-cream); }

.ob-mv-grid { display: grid; gap: 40px; }
@media (min-width: 992px) {
  .ob-mv-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .ob-mv-item--offset { margin-top: 80px; }
}

.ob-mv-card {
  position: relative;
  isolation: isolate;
  height: 100%;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px);
  overflow: hidden;
  border-left: 1px solid rgba(212, 175, 55, .35);
  border-bottom: 1px solid rgba(212, 175, 55, .35);
  background: var(--ob-paper);
  box-shadow: 0 20px 40px -10px rgba(44, 44, 44, .06);
  transition: transform .5s var(--ob-ease), box-shadow .5s var(--ob-ease);
}
.ob-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--ob-wine);
  transition: width .6s var(--ob-ease);
}
.ob-mv-card:hover::before { width: 100%; }
@media (hover: hover) {
  .ob-mv-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -15px rgba(114, 47, 55, .14); }
}

.ob-mv-num {
  position: absolute;
  top: 12px;
  right: 28px;
  z-index: -1;
  font-family: var(--ob-serif);
  font-size: clamp(6rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ob-gold);
  opacity: .12;
  user-select: none;
  transition: opacity .5s ease, color .5s ease, transform .5s var(--ob-ease);
}
.ob-mv-card:hover .ob-mv-num { opacity: .2; color: var(--ob-wine); transform: translateY(-6px); }

.ob-mv-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--ob-wine);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ob-mv-card h3 { margin-bottom: 18px; font-size: clamp(1.9rem, 3vw, 2.25rem); color: var(--ob-ink); }
.ob-mv-card p { font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: var(--ob-muted); }
.ob-mv-card strong { font-weight: 500; color: var(--ob-wine); }

/* Core values */
.ob-values { background: var(--ob-paper); }
.ob-values-grid { display: grid; gap: 24px; }
@media (min-width: 800px) { .ob-values-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.ob-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 28px;
  border: 1px solid transparent;
  text-align: center;
  transition: background-color .5s ease, border-color .5s ease;
}
.ob-value:hover { background: var(--ob-cream); border-color: rgba(114, 47, 55, .1); }

.ob-value-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(114, 47, 55, .06);
  color: var(--ob-gold-ink);
  transition: background-color .35s ease, color .35s ease;
}
.ob-value:hover .ob-value-icon { background: var(--ob-wine); color: var(--ob-cream); }
.ob-value-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ob-value h3 { margin-bottom: 14px; font-size: 1.6rem; color: var(--ob-ink); }
.ob-value p { font-size: .95rem; font-weight: 300; line-height: 1.8; color: var(--ob-muted); }

/* Leadership */
.ob-leader { background: var(--ob-cream); }
.ob-leader-grid { display: grid; gap: clamp(56px, 7vw, 96px); align-items: center; }
@media (min-width: 992px) { .ob-leader-grid { grid-template-columns: .85fr 1.15fr; } }

.ob-leader-media { position: relative; width: 100%; max-width: 440px; margin-inline: auto; }
.ob-leader-media::before {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--ob-wine);
  transition: inset .5s var(--ob-ease), border-color .5s ease;
}
.ob-leader-media:hover::before { inset: 8px -8px -8px 8px; border-color: var(--ob-gold); }
.ob-leader-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 600px) {
  .ob-leader-media { max-width: 320px; }
  .ob-leader-media::before { inset: 12px -12px -12px 12px; }
}

.ob-leader-copy .ob-title { margin-bottom: 40px; }

.ob-leader-quote {
  position: relative;
  margin-bottom: 36px;
  padding-left: 28px;
  border-left: 2px solid var(--ob-gold);
}
.ob-leader-quote::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 12px;
  font-family: var(--ob-serif);
  font-size: 6rem;
  line-height: 1;
  color: rgba(212, 175, 55, .25);
  pointer-events: none;
}
.ob-leader-quote p {
  font-family: var(--ob-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
  color: #4A4A4A;
}

.ob-leader-name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ob-ink);
}
.ob-leader-role {
  margin-top: 4px;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ob-muted);
}
.ob-leader-script {
  display: inline-block;
  margin: 18px 0 28px;
  font-family: 'Mrs Saint Delafield', 'Brush Script MT', cursive;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  line-height: 1.1;
  color: var(--ob-wine);
  transform: rotate(-4deg);
  transform-origin: left center;
}
.ob-leader-sign .ob-link { display: flex; width: fit-content; }

/* --------------------------------------------------------------------------
   19. Team page
   -------------------------------------------------------------------------- */
.ob-page-head--paper { background: var(--ob-paper); }

.ob-team { padding-top: clamp(56px, 7vw, 88px); }

.ob-team-grid { display: grid; gap: 24px; max-width: 960px; margin: 0 auto; }
@media (min-width: 720px) {
  .ob-team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ob-team-lead { grid-column: 1 / -1; }
}

.ob-member {
  height: 100%;
  padding: 40px 32px;
  border-left: 3px solid transparent;
  background: var(--ob-paper);
  transition: border-color .35s ease, transform .35s var(--ob-ease), box-shadow .35s ease;
}
@media (hover: hover) {
  .ob-member:hover {
    border-left-color: var(--ob-wine);
    transform: translateX(6px);
    box-shadow: 0 16px 36px rgba(44, 44, 44, .06);
  }
}

.ob-member-initials {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ob-wine), var(--ob-wine-night));
  box-shadow: 0 0 0 3px var(--ob-paper), 0 0 0 4px rgba(114, 47, 55, .2);
  font-family: var(--ob-serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ob-cream);
  transition: box-shadow .35s ease, transform .35s var(--ob-ease);
}
.ob-member:hover .ob-member-initials {
  box-shadow: 0 0 0 3px var(--ob-paper), 0 0 0 4px var(--ob-gold);
  transform: scale(1.05);
}

.ob-member-role {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ob-wine);
}
.ob-member-name { margin-bottom: 6px; font-size: clamp(1.6rem, 2.6vw, 2rem); font-weight: 500; color: var(--ob-ink); }
.ob-member-title { font-size: .95rem; font-weight: 300; color: var(--ob-muted); }

.ob-member--lead { display: grid; gap: 28px; align-items: center; }
@media (min-width: 720px) { .ob-member--lead { grid-template-columns: 200px 1fr; gap: 40px; padding: 40px; } }
.ob-member-photo {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 719px) { .ob-member-photo { max-width: 160px; } }
.ob-member--lead .ob-member-name { font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
.ob-member--lead .ob-link { margin-top: 22px; }

.ob-team-cta {
  max-width: 720px;
  margin: clamp(56px, 8vw, 88px) auto 0;
  padding: clamp(40px, 6vw, 56px) 28px;
  border-top: 2px solid var(--ob-gold);
  background: var(--ob-paper);
  text-align: center;
}
.ob-team-cta-title { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 500; color: var(--ob-ink); }
.ob-team-cta p { max-width: 30rem; margin: 0 auto 30px; font-weight: 300; color: var(--ob-muted); }


/* --------------------------------------------------------------------------
   20. Services page
   -------------------------------------------------------------------------- */
.ob-svc-section { padding-bottom: clamp(80px, 11vw, 136px); }

.ob-svcs { display: grid; gap: clamp(80px, 10vw, 128px); }

.ob-svc {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  align-items: center;
  scroll-margin-top: calc(var(--ob-nav-solid) + 32px);
}
@media (min-width: 960px) {
  .ob-svc { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); }
  .ob-svc--flip .ob-svc-media { order: 2; }
}

.ob-svc-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #E9E3DA; }
@media (min-width: 960px) { .ob-svc-media { aspect-ratio: 5 / 6; } }
.ob-svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ob-ease); }
.ob-svc:hover .ob-svc-media img { transform: scale(1.04); }
/* Hairline inner frame over the photo. */
.ob-svc-media::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(248, 245, 240, .55);
  pointer-events: none;
}

.ob-svc-num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--ob-serif);
  font-size: clamp(4rem, 7vw, 5.5rem);
  font-style: italic;
  line-height: 1;
  color: rgba(114, 47, 55, .16);
}

.ob-svc-title { margin-bottom: 24px; font-size: clamp(2.3rem, 4vw, 3.2rem); font-weight: 400; color: var(--ob-ink); }
.ob-svc-title em { font-style: italic; color: var(--ob-wine); }

.ob-svc-desc {
  max-width: 34rem;
  margin-bottom: 32px;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ob-muted);
}

.ob-svc-list { max-width: 34rem; margin-bottom: 36px; border-top: 1px solid var(--ob-line); }
.ob-svc-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ob-line);
  font-size: .95rem;
  color: var(--ob-ink);
}
.ob-svc-list li::before {
  content: '';
  flex: none;
  width: 7px;
  height: 7px;
  background: var(--ob-wine);
  transform: rotate(45deg);
}


/* --------------------------------------------------------------------------
   21. Not-found page (404.html)
   -------------------------------------------------------------------------- */
.ob-notfound {
  display: grid;
  align-items: center;
  min-height: calc(78vh - var(--ob-nav-solid));
  padding-block: clamp(72px, 10vw, 120px);
  background: var(--ob-cream);
}
.ob-notfound-inner { display: grid; justify-items: center; text-align: center; }
.ob-notfound .ob-lede { margin: 0 auto 32px; }
.ob-notfound-help { margin-top: 36px; font-size: .92rem; color: var(--ob-muted); }
.ob-notfound-help a { color: var(--ob-wine); border-bottom: 1px solid currentColor; white-space: nowrap; }


/* --------------------------------------------------------------------------
   22. Off-plan page, homepage off-plan band, brand values
   -------------------------------------------------------------------------- */

/* Brand values row (About page, Off-plan page) */
.ob-brand-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 12px;
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 32px;
  border-top: 1px solid var(--ob-line);
}
.ob-brand-values li {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ob-wine);
}
.ob-brand-values li + li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-inline: 18px;
  background: var(--ob-gold);
  transform: rotate(45deg);
}
.ob-brand-values--dark { justify-content: flex-start; border-top-color: var(--ob-line-dark); }
.ob-brand-values--dark li { color: var(--ob-cream); }

/* Intro + payment plan */
.ob-op-intro { padding-block: clamp(64px, 9vw, 112px); background: var(--ob-cream); }
.ob-op-intro-grid { display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 960px) { .ob-op-intro-grid { grid-template-columns: 1.4fr 1fr; } }

.ob-op-title { margin-bottom: 14px; }
.ob-op-tagline {
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ob-gold-ink);
}
.ob-op-intro .ob-lede { margin-bottom: 26px; }

.ob-op-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.ob-op-pills li {
  padding: 8px 14px;
  border: 1px solid rgba(114, 47, 55, .3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ob-wine);
}

.ob-op-plan {
  position: relative;
  isolation: isolate;
  padding: clamp(40px, 5vw, 56px) 28px;
  overflow: hidden;
  background: linear-gradient(150deg, #6B2B33, #3A171C);
  color: var(--ob-cream);
  text-align: center;
}
.ob-op-plan::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 175, 55, .35);
  pointer-events: none;
}
.ob-op-plan .ob-eyebrow { margin-bottom: 20px; }
.ob-op-plan-lead { font-family: var(--ob-serif); font-size: 1.5rem; font-style: italic; color: rgba(248, 245, 240, .85); }
.ob-op-plan-figure {
  font-family: var(--ob-serif);
  font-size: clamp(5.5rem, 12vw, 8rem);
  font-weight: 500;
  line-height: .95;
  color: var(--ob-gold);
}
.ob-op-plan-deposit { margin-top: 4px; font-size: 14px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; }
.ob-op-plan-note { margin: 14px 0 26px; font-size: .95rem; font-weight: 300; color: rgba(248, 245, 240, .8); }
.ob-link--light { color: var(--ob-gold); }

/* Designs */
.ob-op-designs { background: var(--ob-paper); scroll-margin-top: var(--ob-nav-solid); }
.ob-model-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .ob-model-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ob-model-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.ob-model {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 28px;
  border: 1px solid var(--ob-line);
  background: var(--ob-cream);
  scroll-margin-top: calc(var(--ob-nav-solid) + 24px);
  transition: border-color .35s ease, box-shadow .35s ease;
}
.ob-model:hover { border-color: rgba(212, 175, 55, .6); box-shadow: 0 18px 40px rgba(44, 44, 44, .07); }

.ob-model-art {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  background: var(--ob-paper);
  color: var(--ob-wine);
}
.ob-model-art svg {
  width: 74%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ob-model-art .ob-model-ground { stroke: var(--ob-gold); stroke-width: 1.6; }

.ob-model-kicker { margin-bottom: 6px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ob-gold-ink); }
.ob-model-title { margin-bottom: 18px; font-size: 2rem; font-weight: 500; color: var(--ob-ink); }
.ob-model .ob-svc-list { margin-bottom: 24px; }
.ob-model .ob-svc-list li { padding-block: 11px; font-size: .9rem; }
.ob-model .ob-link { align-self: flex-start; margin-top: auto; }

/* Why choose + advantages */
.ob-op-why {
  background:
    radial-gradient(circle at 90% 0%, rgba(114, 47, 55, .5), transparent 55%),
    var(--ob-night);
  color: var(--ob-cream);
}
.ob-op-why-grid { display: grid; gap: clamp(48px, 7vw, 88px); }
@media (min-width: 960px) { .ob-op-why-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.ob-op-why .ob-title { margin-bottom: 32px; }

.ob-op-checks { border-top: 1px solid var(--ob-line-dark); }
.ob-op-checks li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--ob-line-dark);
  color: rgba(248, 245, 240, .9);
}
.ob-op-checks li::before {
  content: '';
  flex: none;
  width: 14px;
  height: 7px;
  margin-top: -4px;
  border-left: 2px solid var(--ob-gold);
  border-bottom: 2px solid var(--ob-gold);
  transform: rotate(-45deg);
}

.ob-op-sub {
  margin-bottom: 22px;
  font-family: var(--ob-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ob-gold);
}
.ob-op-advantages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 400px) { .ob-op-advantages { grid-template-columns: 1fr; } }
.ob-op-advantages li {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 22px;
  border: 1px solid var(--ob-line-dark);
  background: rgba(248, 245, 240, .03);
  font-family: var(--ob-serif);
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ob-cream);
}
.ob-op-advantages svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--ob-gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Locations */
.ob-op-locations { background: var(--ob-cream); }
.ob-loc-grid { display: grid; gap: 20px; max-width: 980px; margin: 0 auto; }
@media (min-width: 760px) { .ob-loc-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.ob-loc {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 44px);
  border-top: 3px solid var(--ob-wine);
  background: var(--ob-paper);
}
.ob-loc--soon { border-top-color: var(--ob-gold); }
.ob-loc-status { margin-bottom: 12px; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ob-wine); }
.ob-loc--soon .ob-loc-status { color: var(--ob-gold-ink); }
.ob-loc h3 { margin-bottom: 8px; font-size: clamp(1.8rem, 3vw, 2.3rem); color: var(--ob-ink); }
.ob-loc-detail { margin-bottom: 26px; color: var(--ob-muted); }
.ob-loc .ob-svc-list { margin: 10px 0 26px; }
.ob-loc .ob-link { align-self: flex-start; margin-top: auto; }

.ob-op-cta-note { font-size: .92rem; color: var(--ob-muted); }
.ob-op-cta-note a { color: var(--ob-wine); border-bottom: 1px solid currentColor; white-space: nowrap; }

/* Homepage band */
.ob-offplan-band { background: linear-gradient(150deg, #6B2B33 0%, #4B1D23 55%, #36151A 100%); color: var(--ob-cream); }
.ob-offplan-band-grid { display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 960px) { .ob-offplan-band-grid { grid-template-columns: 1fr 1fr; } }
.ob-offplan-band .ob-title { margin-bottom: 18px; }
.ob-offplan-band .ob-lede { margin-bottom: 28px; color: rgba(248, 245, 240, .84); }

.ob-offplan-deposit { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.ob-offplan-deposit b { font-family: var(--ob-serif); font-size: 3.4rem; font-weight: 500; line-height: 1; color: var(--ob-gold); }
.ob-offplan-deposit span { font-size: 12px; font-weight: 600; line-height: 1.6; letter-spacing: .14em; text-transform: uppercase; color: rgba(248, 245, 240, .85); }

.ob-offplan-band-models { border-top: 1px solid var(--ob-line-dark); }
.ob-offplan-band-models a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 16px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--ob-line-dark);
  transition: padding .35s var(--ob-ease), background-color .35s ease;
}
.ob-offplan-band-models a:hover { padding-inline: 16px; background: rgba(248, 245, 240, .06); }
.ob-band-name { font-family: var(--ob-serif); font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.15; color: var(--ob-cream); }
.ob-band-type { grid-column: 1; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ob-gold); }
.ob-band-arrow { grid-column: 2; grid-row: 1 / span 2; font-size: 20px; color: var(--ob-gold); }


/* --------------------------------------------------------------------------
   23. Breadcrumbs, site map page, in-text links
   -------------------------------------------------------------------------- */
.ob-crumbs { margin-bottom: 22px; }
.ob-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ob-muted);
}
.ob-crumbs li { display: flex; align-items: center; }
.ob-crumbs li + li::before { content: '/'; margin-inline: 10px; font-weight: 400; color: var(--ob-gold-ink); }
.ob-crumbs a { color: var(--ob-wine); }
.ob-crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ob-page-head .ob-crumbs ol,
.ob-hero .ob-crumbs ol { justify-content: center; }
.ob-hero .ob-crumbs ol,
.ob-on-dark .ob-crumbs ol { color: rgba(248, 245, 240, .78); }
.ob-hero .ob-crumbs a,
.ob-on-dark .ob-crumbs a { color: var(--ob-gold); }
.ob-hero .ob-crumbs li + li::before,
.ob-on-dark .ob-crumbs li + li::before { color: rgba(212, 175, 55, .7); }

.ob-lede a { color: var(--ob-wine); border-bottom: 1px solid currentColor; }
.ob-lede a:hover { border-bottom-color: transparent; }

.ob-contact-cta .ob-contact-cta-more { margin: 22px 0 0; font-size: .9rem; }
.ob-contact-cta-more a { color: var(--ob-gold); border-bottom: 1px solid currentColor; }

.ob-footer-sitemap { margin-left: 8px; color: var(--ob-wine); border-bottom: 1px solid currentColor; white-space: nowrap; }

.ob-sitemap { padding-block: clamp(40px, 5vw, 64px) clamp(80px, 10vw, 120px); }
.ob-sitemap-grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .ob-sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .ob-sitemap-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.ob-sitemap-group { padding: 30px 28px; border-top: 2px solid var(--ob-wine); background: var(--ob-paper); }
.ob-sitemap-group--wide { grid-column: 1 / -1; }
.ob-sitemap-group h2 { margin-bottom: 6px; font-size: 1.9rem; font-weight: 500; }
.ob-sitemap-group h2 a { color: var(--ob-ink); transition: color .3s ease; }
.ob-sitemap-group h2 a:hover { color: var(--ob-wine); }
.ob-sitemap-group p { margin-bottom: 18px; font-size: .9rem; color: var(--ob-muted); }
.ob-sitemap-group ul { border-top: 1px solid var(--ob-line); }
.ob-sitemap-group li a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ob-line);
  font-size: .92rem;
  color: var(--ob-ink);
  transition: color .3s ease;
}
.ob-sitemap-group li a::after { content: '\2192'; color: var(--ob-gold-ink); }
.ob-sitemap-group li a:hover { color: var(--ob-wine); }
@media (min-width: 700px) {
  .ob-sitemap-group--wide ul { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 32px; }
}
@media (min-width: 1080px) {
  .ob-sitemap-group--wide ul { grid-template-columns: repeat(4, 1fr); }
}
