/* ============================================================
   CRESTOVA — Construction & Renovation
   Brand: Navy + Gold | Where Creativity Reshapes Reality
   ============================================================ */

:root {
  --navy-900: #07132e;
  --navy-800: #0b1a3a;
  --navy-700: #122348;
  --navy-600: #1a2e5c;
  --navy-500: #233a72;
  --gold-500: #d4a847;
  --gold-400: #e9c46a;
  --gold-300: #f1d68a;
  --cream:    #fbf7ee;
  --ink:      #0e1730;
  --slate-700:#33405a;
  --slate-500:#5b6783;
  --slate-300:#aeb6c8;
  --line:     #e6e7ec;
  --bg:       #f7f7f5;
  --white:    #ffffff;

  --shadow-sm: 0 2px 8px rgba(7, 19, 46, .06);
  --shadow-md: 0 12px 32px rgba(7, 19, 46, .12);
  --shadow-lg: 0 28px 60px rgba(7, 19, 46, .22);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .6em; color: var(--navy-900); letter-spacing: .005em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; }
p  { margin: 0 0 1em; color: var(--slate-700); }
.gold { color: var(--gold-500); font-style: italic; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
.section-lead {
  color: var(--slate-700);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(212, 168, 71, .35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 168, 71, .5);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,.45);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--gold-400);
  color: var(--gold-300);
}
.btn--sm  { padding: 10px 18px; font-size: .85rem; }
.btn--lg  { padding: 16px 30px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--cream);
  font-size: .82rem;
  letter-spacing: .04em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
}
.topbar__link { color: var(--cream); opacity: .85; margin-right: 18px; }
.topbar__link:hover { color: var(--gold-300); opacity: 1; }
.ico { color: var(--gold-400); margin-right: 6px; }
@media (max-width: 720px) {
  .topbar__right { display: none; }
}

/* ---------- Navigation ---------- */
.nav {
  background: var(--navy-800);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(11, 26, 58, .96); backdrop-filter: blur(10px); box-shadow: var(--shadow-md); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark { display: inline-flex; height: 48px; width: auto; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .22em;
  color: var(--gold-400);
}
.brand__sub {
  font-size: .62rem;
  letter-spacing: .32em;
  color: var(--cream);
  opacity: .85;
  margin-top: 4px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu a {
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--cream);
  position: relative;
  padding: 8px 0;
}
.nav__menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav__menu a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__menu a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__menu a[aria-current="page"] { color: var(--gold-300); }
.nav__menu .btn { color: var(--navy-900); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px; background: var(--cream); transition: transform .3s, opacity .3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-800);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__menu a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__menu a.btn { margin-top: 14px; border: 0; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, var(--navy-600) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
  color: var(--cream);
  overflow: hidden;
  padding: 90px 0 120px;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: .35;
  filter: saturate(1.1) contrast(1.05);
}
.hero__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(100deg, var(--navy-900) 0%, rgba(11, 26, 58, .92) 38%, rgba(11, 26, 58, .55) 65%, rgba(11, 26, 58, .35) 100%),
    radial-gradient(circle at 20% 30%, rgba(233, 196, 106, .12) 0, transparent 35%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 22px);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero__copy h1 {
  color: var(--cream);
  margin-bottom: 18px;
}
.hero__lead {
  color: rgba(251, 247, 238, .85);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stats li { display: flex; flex-direction: column; gap: 2px; }
.hero__stats strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold-400);
  font-weight: 700;
}
.hero__stats span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(251, 247, 238, .7); }

.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  color: var(--ink);
  position: relative;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}
.hero__card h3 { color: var(--navy-900); }
.hero__card p { color: var(--slate-500); margin-bottom: 18px; font-size: .95rem; }

.mini-form { display: grid; gap: 10px; }
.mini-form input, .mini-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.mini-form input:focus, .mini-form select:focus {
  outline: 0;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 168, 71, .15);
}
.fineprint { font-size: .76rem; color: var(--slate-500); margin: 10px 0 0; text-align: center; }

@media (max-width: 980px) {
  .hero { padding: 60px 0 80px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Trust Strip ---------- */
.trust {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 32px;
  padding: 22px 24px;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--navy-800);
  font-weight: 500;
}
.trust__num {
  font-family: var(--serif);
  color: var(--gold-500);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
}

/* ---------- PU Section ---------- */
.pu {
  padding: 72px 0;
  background: var(--cream);
}
/* ---------- Brand poster (HTML/CSS reproduction of the brand banner) ---------- */
.poster {
  position: relative;
  margin: 0 0 72px;
  padding: 48px 56px;
  border-radius: 26px;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(35, 58, 114, .85) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(35, 58, 114, .65) 0%, transparent 55%),
    linear-gradient(135deg, #0b1a3a 0%, #07132e 100%);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(212, 168, 71, .18);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Soft top sheen + subtle wave pattern. */
.poster__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 22%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 2px, transparent 2px 26px);
}

/* Decorative gold mosaic strips on the far left and right edges. */
.poster__deco {
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: 14px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(212, 168, 71, .55) 0 6px,
      transparent 6px 10px,
      rgba(212, 168, 71, .22) 10px 14px,
      transparent 14px 22px
    );
  border-radius: 4px;
  z-index: 1;
  opacity: .9;
}
.poster__deco--l { left: 18px; }
.poster__deco--r { right: 18px; }

/* LEFT — 8 circular icons */
.poster__icons {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 10px;
  padding-left: 22px;
}
.pico {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.pico__c {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.08), rgba(255,255,255,0) 70%),
    linear-gradient(180deg, #15244d, #0b1a3a);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, .55),
    inset 0 0 14px rgba(255, 255, 255, .12),
    0 0 18px rgba(173, 197, 255, .25),
    0 6px 14px rgba(0, 0, 0, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pico__c svg { width: 28px; height: 28px; }
.pico:hover .pico__c {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1.5px rgba(233, 196, 106, .85),
    inset 0 0 14px rgba(233, 196, 106, .25),
    0 0 22px rgba(233, 196, 106, .35),
    0 8px 18px rgba(0, 0, 0, .45);
}
.pico__t {
  color: var(--cream);
  font-size: .78rem;
  letter-spacing: .03em;
  line-height: 1.25;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

/* CENTER — brand mark */
.poster__brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 8px;
}
.poster__brand img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(212, 168, 71, .25));
}
.poster__tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--gold-400);
  letter-spacing: .02em;
  text-align: center;
}
.poster__contact {
  margin: 0;
  font-size: .82rem;
  color: var(--cream);
  text-align: center;
  line-height: 1.5;
  letter-spacing: .02em;
}

/* RIGHT — color wheel + selling-point pills */
.poster__right {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 18px;
  padding-right: 22px;
}
.poster__wheel {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .35));
}

.poster__pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.poster__pills li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f1e7 100%);
  color: var(--navy-900);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.2;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, .25),
    inset 0 0 0 1px rgba(212, 168, 71, .35);
}
.ppil__d {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,255,255,.7);
}

/* Responsive: stack on smaller screens */
@media (max-width: 1100px) {
  .poster {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 32px;
    text-align: center;
  }
  .poster__deco { display: none; }
  .poster__icons {
    padding-left: 0;
    justify-items: center;
  }
  .poster__right {
    grid-template-columns: 96px 1fr;
    padding-right: 0;
    max-width: 540px;
    margin: 0 auto;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .poster { padding: 32px 18px; }
  .poster__icons { grid-template-columns: repeat(4, 1fr); gap: 14px 6px; }
  .pico__c { width: 54px; height: 54px; }
  .pico__c svg { width: 22px; height: 22px; }
  .pico__t { font-size: .7rem; }
  .poster__right { grid-template-columns: 1fr; justify-items: center; }
  .poster__wheel { width: 90px; height: 90px; }
  .poster__pills li { font-size: .85rem; padding: 9px 14px; }
}

.sub-h {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  display: block;
}
.sub-h::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--gold-500);
  margin: 14px auto 0;
  border-radius: 2px;
}

.collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ctile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ctile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ctile__art {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: var(--navy-700);
}
.ctile__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.ctile:hover .ctile__art img { transform: scale(1.06); }
.ctile__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 19, 46, .35));
  pointer-events: none;
}
.collection .ctile__art,
.cat[data-catalogue] { cursor: pointer; }
.ctile h4 { padding: 18px 22px 6px; color: var(--navy-900); font-size: 1.2rem; font-family: var(--serif); font-weight: 600; }
.ctile p  { padding: 0 22px 22px; margin: 0; font-size: .92rem; color: var(--slate-500); }

@media (max-width: 980px) {
  .collection { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pu { padding: 70px 0; }
  .collection { grid-template-columns: 1fr; }
  .poster { margin-bottom: 48px; }
}

/* ---------- Comparison & Exclusives ---------- */
.compare {
  padding: 72px 0;
  background: var(--white);
}
.compare__sub {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--navy-900);
  margin: 24px 0 26px;
  text-align: center;
  position: relative;
}
.compare__sub::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold-500);
  margin: 12px auto 0;
  border-radius: 2px;
}

.exclusives {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.exc {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.exc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.exc__head {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.exc p {
  font-size: .92rem;
  color: var(--slate-500);
  margin: 0;
  line-height: 1.55;
}

.cmp-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
  overflow-y: hidden;
}
.cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: .92rem;
}
.cmp thead th {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 18px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gold-500);
  vertical-align: middle;
}
.cmp thead th.cmp__hl {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  letter-spacing: .12em;
}
.cmp tbody th {
  text-align: left;
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--navy-900);
  padding: 16px 18px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.cmp tbody td {
  padding: 16px 16px;
  color: var(--slate-700);
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.cmp tbody tr:last-child th,
.cmp tbody tr:last-child td { border-bottom: 0; }

.cmp tbody td.cmp__hl {
  background: rgba(212, 168, 71, .10);
  color: var(--navy-900);
  border-left: 1px solid rgba(212, 168, 71, .35);
  border-right: 1px solid rgba(212, 168, 71, .35);
  font-weight: 600;
}
.cmp tbody tr:last-child td.cmp__hl {
  border-bottom: 1px solid rgba(212, 168, 71, .35);
}
.cmp tbody td.cmp__hl strong { color: var(--navy-900); }

.cmp td[data-rank="great"] { color: #2f7a3c; font-weight: 500; }
.cmp td[data-rank="ok"]    { color: #b0791e; font-weight: 500; }
.cmp td[data-rank="poor"]  { color: #b53b3b; font-weight: 500; }

.cmp__note {
  margin: 18px 0 0;
  font-size: .82rem;
  color: var(--slate-500);
  text-align: center;
  font-style: italic;
}

@media (max-width: 980px) {
  .compare { padding: 70px 0; }
  .exclusives { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .exclusives { grid-template-columns: 1fr; }
}

/* ---------- Services ---------- */
.services {
  padding: 72px 0;
  background: var(--white);
  position: relative;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212, 168, 71, .08));
  opacity: 0;
  transition: opacity .3s ease;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.svc:hover::before { opacity: 1; }
.svc__ico {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(7, 19, 46, .18);
}
.svc h3 { font-size: 1.25rem; margin-bottom: 8px; font-family: var(--serif); }
.svc p  { font-size: .94rem; color: var(--slate-500); margin: 0; }

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services { padding: 70px 0; }
  .svc-grid { grid-template-columns: 1fr; }
}

/* ---------- Why Us ---------- */
.why {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--cream);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(212, 168, 71, .12) 0, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(35, 58, 114, .5) 0, transparent 50%);
  pointer-events: none;
}
.why__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.why__copy h2 { color: var(--cream); }
.why__copy p { color: rgba(251, 247, 238, .82); font-size: 1.05rem; }
.why__list { margin-top: 24px; display: grid; gap: 14px; }
.why__list li {
  display: flex;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: rgba(251, 247, 238, .9);
}
.why__list strong { color: var(--gold-400); font-weight: 600; margin-right: 4px; }

.why__art {
  position: relative;
  display: grid;
  gap: 18px;
}
.why__card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.why__card span {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  min-width: 80px;
  text-align: center;
}
.why__card p { color: rgba(251, 247, 238, .85); margin: 0; font-size: .98rem; }
.why__card--1 { transform: translateX(-12px); }
.why__card--2 { transform: translateX(28px); }
.why__card--3 { transform: translateX(-12px); }

@media (max-width: 980px) {
  .why { padding: 70px 0; }
  .why__inner { grid-template-columns: 1fr; gap: 40px; }
  .why__card--1, .why__card--2, .why__card--3 { transform: none; }
}

/* ---------- Founder ---------- */
.founder {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border: 2px solid rgba(212, 168, 71, .12);
  border-radius: 50%;
  pointer-events: none;
}
.founder::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -120px;
  width: 420px; height: 420px;
  border: 2px solid rgba(11, 26, 58, .06);
  border-radius: 50%;
  pointer-events: none;
}
.founder__inner {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.founder__portrait {
  display: flex;
  justify-content: center;
}
.founder__card {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.founder__card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 168, 71, .4);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.founder__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(233, 196, 106, .12) 0, transparent 45%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.founder__logo {
  position: relative;
  z-index: 1;
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(212, 168, 71, .25));
}
.founder__initials {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: .35em;
  line-height: 1;
  position: relative;
  z-index: 1;
  padding-left: .35em;
}
.founder__badge {
  position: relative;
  z-index: 1;
  padding: 8px 18px;
  border: 1px solid rgba(212, 168, 71, .55);
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.founder__copy h2 { margin-bottom: 16px; }
.founder__lead {
  color: var(--slate-700);
  font-size: 1.05rem;
  margin-bottom: 22px;
}
.founder__quote {
  position: relative;
  margin: 0 0 26px;
  padding: 22px 26px 22px 32px;
  background: var(--white);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy-900);
}
.founder__sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.founder__sig strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy-900);
  font-weight: 600;
}
.founder__sig span {
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--slate-500);
}
.founder__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.founder__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-weight: 500;
  font-size: .95rem;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.founder__contact a:hover {
  border-color: var(--gold-400);
  color: var(--gold-500);
  transform: translateY(-2px);
}
.founder__contact .ico { color: var(--gold-500); margin: 0; }

@media (max-width: 880px) {
  .founder { padding: 70px 0; }
  .founder__inner { grid-template-columns: 1fr; gap: 36px; }
  .founder__card { max-width: 260px; aspect-ratio: 4 / 5; }
}

/* ---------- Process ---------- */
.process {
  padding: 72px 0;
  background: var(--cream);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  z-index: 0;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.step__num {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 18px rgba(212, 168, 71, .35);
}
.step h4 { color: var(--navy-900); margin-bottom: 6px; }
.step p  { font-size: .88rem; color: var(--slate-500); margin: 0; }

@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 640px) {
  .process { padding: 70px 0; }
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Catalogues ---------- */
.gallery {
  padding: 72px 0;
  background: var(--cream);
}
.catalogues {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}
.cat:focus-visible {
  outline: 0;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 168, 71, .25), var(--shadow-md);
}
.cat__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-700);
}
.cat__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.cat:hover .cat__img img { transform: scale(1.06); }
.cat__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 19, 46, .35));
  pointer-events: none;
}
.cat__meta {
  padding: 22px 22px 24px;
}
.cat__eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 10px;
}
.cat__meta h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: var(--navy-900);
}
.cat__meta p {
  color: var(--slate-500);
  font-size: .95rem;
  margin: 0 0 16px;
}
.cat__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: .04em;
}
.cat:hover .cat__cta { color: var(--gold-500); }

@media (max-width: 1100px) {
  .catalogues { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .gallery { padding: 70px 0; }
  .catalogues { grid-template-columns: 1fr; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(7, 19, 46, .94);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 56px 24px;
  animation: lb-fade .25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-fade { from { opacity: 0 } to { opacity: 1 } }

.lb__stage {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.lb__img {
  max-width: 100%;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
  background: var(--navy-900);
}
.lb__caption {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--cream);
  font-size: .9rem;
  letter-spacing: .06em;
}
.lb__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-400);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lb__counter { color: rgba(251, 247, 238, .65); }

.lb__close, .lb__nav {
  position: absolute;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.lb__close:hover, .lb__nav:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: scale(1.05);
}
.lb__close {
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
}
.lb__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}
.lb__nav:hover { transform: translateY(-50%) scale(1.05); }
.lb__nav--prev { left: 18px; }
.lb__nav--next { right: 18px; }
.lb__nav[hidden], .lb__thumbs[hidden], .lb__counter[hidden] { display: none !important; }

.lb__thumbs {
  display: flex;
  gap: 10px;
  padding: 14px 4px 0;
  width: 100%;
  max-width: 1180px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.25) transparent;
}
.lb__thumbs::-webkit-scrollbar { height: 6px; }
.lb__thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 3px; }
.lb__thumb {
  flex: 0 0 auto;
  width: 92px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--navy-700);
  padding: 0;
  transition: border-color .2s ease, transform .2s ease;
}
.lb__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lb__thumb:hover { transform: translateY(-2px); }
.lb__thumb.is-active { border-color: var(--gold-400); }

@media (max-width: 720px) {
  .lightbox { padding: 18px 8px 14px; }
  .lb__close { top: 12px; right: 14px; width: 40px; height: 40px; }
  .lb__nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lb__nav--prev { left: 8px; }
  .lb__nav--next { right: 8px; }
  .lb__img { max-height: calc(100vh - 200px); }
  .lb__thumb { width: 72px; height: 50px; }
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(7, 19, 46, .06) 0 2px, transparent 2px 24px);
}
.cta-band__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--navy-900); margin: 0 0 8px; }
.cta-band p  { margin: 0; color: var(--navy-800); font-weight: 500; }
.cta-band .btn--ghost { color: var(--navy-900); border-color: var(--navy-900); }
.cta-band .btn--ghost:hover { background: var(--navy-900); color: var(--gold-400); }
.cta-band .btn--gold { background: var(--navy-900); color: var(--gold-400); box-shadow: 0 10px 24px rgba(7, 19, 46, .25); }
.cta-band .btn--gold:hover { box-shadow: 0 14px 32px rgba(7, 19, 46, .35); }
.cta-band__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact__copy h2 { margin-bottom: 14px; }
.contact__list { display: grid; gap: 16px; margin-top: 26px; }
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.contact__ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  font-size: 1.1rem;
}
.contact__list strong { display: block; color: var(--navy-900); font-weight: 600; margin-bottom: 2px; }
.contact__list a, .contact__list span { color: var(--slate-700); font-size: .95rem; }
.contact__list a:hover { color: var(--gold-500); }

.contact__form {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 16px;
}
.contact__form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__form label { display: grid; gap: 6px; }
.contact__form label > span {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy-800);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: 0;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 168, 71, .15);
}
.contact__copy h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--navy-900);
  margin: 18px 0 10px;
}
.contact__copy > p {
  color: var(--slate-500);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 38ch;
}
.contact__assure {
  margin-top: 22px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px dashed var(--gold-300);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--navy-800);
}
.contact__assure strong { color: var(--gold-500); }
.form-success {
  margin: 0;
  padding: 14px 16px;
  background: rgba(46, 196, 182, .12);
  border: 1px solid rgba(46, 196, 182, .35);
  border-radius: var(--radius-sm);
  color: #0e7c70;
  font-weight: 600;
  text-align: center;
}
.form-error {
  margin: 0;
  padding: 12px 14px;
  background: rgba(214, 65, 65, .08);
  border: 1px solid rgba(214, 65, 65, .35);
  border-radius: var(--radius-sm);
  color: #a02525;
  font-size: .92rem;
  text-align: center;
}

@media (max-width: 980px) {
  .contact { padding: 70px 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .contact__form .row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: var(--cream);
  padding: 64px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand .brand__mark { height: auto; width: 220px; max-width: 100%; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-400);
  margin: 0 0 10px;
}
.footer__about { color: rgba(251, 247, 238, .75); font-size: .92rem; max-width: 320px; }

.footer__col h5 {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a, .footer__col li { color: rgba(251, 247, 238, .78); font-size: .92rem; }
.footer__col a:hover { color: var(--gold-300); }

.footer__bottom { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.06); }
.footer__bottom-inner {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(251, 247, 238, .65);
}
.footer__legal a:hover { color: var(--gold-300); }

@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ---------- Floating Call Button ---------- */
.float-call {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 14px 28px rgba(212, 168, 71, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-call:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(212, 168, 71, .55); }
@media (max-width: 640px) {
  .float-call span { display: none; }
  .float-call { padding: 14px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Selection ---------- */
::selection { background: var(--gold-400); color: var(--navy-900); }

/* ---------- Page hero (non-home pages) ---------- */
.page-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7,19,46,.78), rgba(7,19,46,.62)),
    url('../images/hero-villa.jpg') center/cover no-repeat;
  color: var(--cream);
  padding: 120px 0 90px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold-300); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  margin: 12px 0 18px;
  color: var(--cream);
  line-height: 1.05;
}
.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
}
.page-hero__crumbs {
  margin-top: 22px;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.page-hero__crumbs a { color: rgba(255,255,255,.85); }
.page-hero__crumbs a:hover { color: var(--gold-300); }

/* ---------- Story / values blocks (About page) ---------- */
.story {
  padding: 100px 0;
  background: var(--cream);
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story__grid--flip { direction: rtl; }
.story__grid--flip > * { direction: ltr; }
.story__copy h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  margin: 10px 0 18px;
  color: var(--navy-900);
  line-height: 1.15;
}
.story__copy p { color: var(--slate-500); font-size: 1rem; margin: 0 0 14px; }
.story__copy blockquote {
  border-left: 3px solid var(--gold-500);
  padding: 6px 18px;
  margin: 22px 0 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy-800);
  font-size: 1.05rem;
}
.story__art {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-700);
}
.story__art img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Vision / Mission cards */
.vm {
  padding: 100px 0;
  background: var(--white);
}
.vm__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.vm__card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
}
.vm__card span.eyebrow { color: var(--gold-500); display: block; margin-bottom: 10px; }
.vm__card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: var(--navy-900);
}
.vm__card p { color: var(--slate-500); margin: 0; font-size: .98rem; }

/* Materials block */
.materials {
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(7,19,46,.86), rgba(7,19,46,.86)),
    url('../images/hero-villa.jpg') center/cover no-repeat;
  color: var(--cream);
}
.materials .section-head h2 { color: var(--cream); }
.materials .section-lead { color: rgba(255,255,255,.78); }
.materials__props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.materials__prop {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.materials__prop strong {
  display: block;
  color: var(--gold-300);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.materials__prop p { margin: 0; color: rgba(255,255,255,.82); font-size: .95rem; }

@media (max-width: 980px) {
  .story__grid { grid-template-columns: 1fr; gap: 30px; }
  .vm__grid { grid-template-columns: 1fr; }
  .materials__props { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .materials__props { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT TEASER (homepage block linking to 3 about pages)
   ============================================================ */
.about-teaser {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.about-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-teaser__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color: inherit;
}
.about-teaser__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}
.about-teaser__eyebrow {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 12px;
}
.about-teaser__card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.about-teaser__card p {
  color: var(--slate-700);
  font-size: .98rem;
  margin: 0 0 20px;
  flex: 1;
}
.about-teaser__cta {
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--gold-500);
  font-weight: 600;
}
.about-teaser__card:hover .about-teaser__cta { color: var(--navy-900); }

@media (max-width: 980px) {
  .about-teaser__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER-PAGE HERO (story / mission / canada pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 140px 0 90px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--cream);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(212, 168, 71, .18), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(233, 196, 106, .10), transparent 50%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 880px;
}
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 18px;
}
.page-hero h1 .gold { color: var(--gold-400); }
.page-hero__lead {
  color: rgba(251, 247, 238, .85);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0;
}
.page-hero__crumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, .55);
  position: relative;
}
.page-hero__crumbs a { color: rgba(251, 247, 238, .75); }
.page-hero__crumbs a:hover { color: var(--gold-400); }

/* ============================================================
   PAGE PAGER (prev/next between the 3 about pages)
   ============================================================ */
.page-pager {
  padding: 70px 0 100px;
  background: var(--cream);
}
.page-pager__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.page-pager a {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.page-pager a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.page-pager span {
  display: block;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 8px;
}
.page-pager strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy-900);
}
.page-pager .page-pager__next { text-align: right; }
@media (max-width: 760px) {
  .page-pager__grid { grid-template-columns: 1fr; }
  .page-pager .page-pager__next { text-align: left; }
}

/* ============================================================
   ABOUT / OUR STORY (legacy block, retained for subpage use)
   ============================================================ */
.about {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  position: relative;
}

.about__story {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 88px;
}
.about__story-copy h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 18px;
}
.about__story-copy p { font-size: 1.02rem; }
.about__story-copy strong { color: var(--navy-900); font-weight: 600; }

.about__family {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0 26px;
}
.about__family li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.about__family strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.about__family span {
  font-size: .85rem;
  color: var(--slate-500);
  letter-spacing: .04em;
}

.about__quote {
  background: var(--navy-800);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.about__quote::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}
.about__quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: .7;
  color: var(--gold-400);
  display: block;
  margin-bottom: 8px;
}
.about__quote p {
  color: rgba(251, 247, 238, .9);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  margin-bottom: 24px;
}
.about__quote footer {
  border-top: 1px solid rgba(233, 196, 106, .25);
  padding-top: 16px;
}
.about__quote footer strong {
  display: block;
  color: var(--gold-300);
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .03em;
}
.about__quote footer span {
  font-size: .82rem;
  color: rgba(251, 247, 238, .65);
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* Vision / Mission / Values */
.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 88px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar__ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  margin-bottom: 18px;
}
.pillar__ico svg { width: 28px; height: 28px; }
.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--navy-900);
}
.pillar p { font-size: .98rem; color: var(--slate-700); margin: 0; }
.pillar__list { display: grid; gap: 10px; }
.pillar__list li {
  font-size: .94rem;
  color: var(--slate-700);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.pillar__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}
.pillar__list strong { color: var(--navy-900); font-weight: 600; }

/* Engineered for Canada */
.about__canada {
  background: var(--navy-900);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__canada::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(212, 168, 71, .14), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(233, 196, 106, .08), transparent 50%);
  pointer-events: none;
}
.about__canada-copy { position: relative; }
.about__canada-copy h3 {
  color: var(--cream);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 14px;
}
.about__canada-copy h3 .gold { color: var(--gold-400); }
.about__canada-copy p {
  color: rgba(251, 247, 238, .82);
  font-size: 1.02rem;
  margin: 0;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
}
.about__stats li {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(233, 196, 106, .18);
  border-radius: var(--radius-md);
  padding: 20px 20px;
}
.about__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}
.about__stats span {
  font-size: .88rem;
  color: rgba(251, 247, 238, .82);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .about__story { grid-template-columns: 1fr; gap: 36px; }
  .about__pillars { grid-template-columns: 1fr; }
  .about__canada { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
  .about__family { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .about { padding: 80px 0; }
  .about__stats { grid-template-columns: 1fr; }
  .about__quote { padding: 32px 24px 26px; }
  .about__quote-mark { font-size: 4.5rem; }
}
