/* ============================================================
   HOUSE OF GOLD — HOME PAGE SECTIONS CSS
   Add this inside <style> tag in your index.html <head>
   Sections: Trust Bar, Pillars, Featured, About, Why Us,
             Projects, Private Client, Testimonials, Final CTA
   All rules scoped with unique prefixes — zero collision.
============================================================ */

/* ── SHARED SCROLL REVEAL BASE STATE ──────────────────────
   Elements start invisible and shifted down.
   JS adds .hog-reveal--visible to trigger fade-in-up.
─────────────────────────────────────────────────────────── */
.hog-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.hog-reveal.hog-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered delay variants */
.hog-reveal--d1 {
  transition-delay: 0.08s;
}
.hog-reveal--d2 {
  transition-delay: 0.18s;
}
.hog-reveal--d3 {
  transition-delay: 0.28s;
}
.hog-reveal--d4 {
  transition-delay: 0.38s;
}
.hog-reveal--d5 {
  transition-delay: 0.48s;
}
.hog-reveal--d6 {
  transition-delay: 0.58s;
}

/* ============================================================
     SECTION 2 — TRUST BAR
     Prefix: .hog-trust__
     Four animated counters in a horizontal strip.
  ============================================================ */
.hog-trust__root {
  --hog-trust-gold: #c9a84c;
  --hog-trust-black: #0a0a0a;
  --hog-trust-muted: rgba(10, 10, 10, 0.5);
  --hog-trust-border: rgba(201, 168, 76, 0.15);
  --hog-trust-serif: "Cormorant Garamond", serif;
  --hog-trust-body: "Montserrat", sans-serif;
  background: #ffffff;
  border-top: 1px solid var(--hog-trust-border);
  border-bottom: 1px solid var(--hog-trust-border);
  padding: 60px 60px;
  box-sizing: border-box;
}
/* Inner max-width wrapper */
.hog-trust__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
/* Individual stat block */
.hog-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  position: relative;
}
/* Gold vertical divider between items */
.hog-trust__item + .hog-trust__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 52px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--hog-trust-gold),
    transparent
  );
  opacity: 0.35;
}
/* Icon circle */
.hog-trust__icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--hog-trust-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--hog-trust-gold);
  background: rgba(201, 168, 76, 0.05);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hog-trust__item:hover .hog-trust__icon {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
}
.hog-trust__icon svg {
  width: 18px;
  height: 18px;
}
/* Counter number */
.hog-trust__number {
  font-family: var(--hog-trust-serif);
  font-size: 46px;
  font-weight: 400;
  color: var(--hog-trust-black);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
/* Gold suffix */
.hog-trust__number-suffix {
  color: var(--hog-trust-gold);
  font-style: italic;
}
/* Label */
.hog-trust__label {
  font-family: var(--hog-trust-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hog-trust-muted);
}
/* Tablet */
@media (max-width: 900px) {
  .hog-trust__root {
    padding: 48px 32px;
  }
  .hog-trust__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 0;
  }
  .hog-trust__item + .hog-trust__item::before {
    display: none;
  }
  .hog-trust__item {
    padding: 0 20px;
  }
}
/* Mobile */
@media (max-width: 480px) {
  .hog-trust__root {
    padding: 40px 20px;
  }
  .hog-trust__number {
    font-size: 36px;
  }
}

/* ============================================================
     SECTION 3 — THREE PILLARS
     Prefix: .hog-pillars__
     Invest | Build | Global — three feature cards
  ============================================================ */
.hog-pillars__root {
  --hog-pil-gold: #c9a84c;
  --hog-pil-gold-dark: #a8893a;
  --hog-pil-gold-light: #e2c97e;
  --hog-pil-black: #0a0a0a;
  --hog-pil-text: rgba(10, 10, 10, 0.68);
  --hog-pil-border: rgba(201, 168, 76, 0.18);
  --hog-pil-serif: "Cormorant Garamond", serif;
  --hog-pil-body: "Montserrat", sans-serif;
  background: #ffffff;
  padding: 100px 60px;
  box-sizing: border-box;
}
/* Section header */
.hog-pillars__header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}
/* Eyebrow with lines */
.hog-pillars__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--hog-pil-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hog-pil-gold);
  margin-bottom: 18px;
}
.hog-pillars__eyebrow::before,
.hog-pillars__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--hog-pil-gold);
  opacity: 0.6;
}
/* Heading */
.hog-pillars__heading {
  font-family: var(--hog-pil-serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  color: var(--hog-pil-black);
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 0;
}
.hog-pillars__heading em {
  font-style: italic;
  color: var(--hog-pil-gold);
}
/* 3 cards grid */
.hog-pillars__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Card */
.hog-pillars__card {
  background: #ffffff;
  border: 1px solid var(--hog-pil-border);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.38s ease, box-shadow 0.38s ease,
    border-color 0.38s ease;
}
/* Gold bottom bar on hover */
.hog-pillars__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--hog-pil-gold),
    var(--hog-pil-gold-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.hog-pillars__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(201, 168, 76, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 168, 76, 0.35);
}
.hog-pillars__card:hover::after {
  transform: scaleX(1);
}
/* Decorative number */
.hog-pillars__card-number {
  font-family: var(--hog-pil-serif);
  font-size: 72px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.07);
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 24px;
  pointer-events: none;
  transition: color 0.38s ease;
  user-select: none;
}
.hog-pillars__card:hover .hog-pillars__card-number {
  color: rgba(201, 168, 76, 0.14);
}
/* Icon box */
.hog-pillars__icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--hog-pil-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--hog-pil-gold);
  position: relative;
  z-index: 1;
  transition: background 0.38s ease, border-color 0.38s ease, color 0.38s ease;
}
.hog-pillars__card:hover .hog-pillars__icon {
  background: var(--hog-pil-gold);
  border-color: var(--hog-pil-gold);
  color: #ffffff;
}
.hog-pillars__icon svg {
  width: 22px;
  height: 22px;
}
/* Card title */
.hog-pillars__card-title {
  font-family: var(--hog-pil-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--hog-pil-black);
  letter-spacing: 0.5px;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}
/* Card desc */
.hog-pillars__card-desc {
  font-family: var(--hog-pil-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--hog-pil-text);
  line-height: 1.85;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
/* Arrow link */
.hog-pillars__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hog-pil-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hog-pil-gold);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}
.hog-pillars__card-link:hover {
  gap: 14px;
}
.hog-pillars__card-link svg {
  width: 14px;
  height: 14px;
}
/* Responsive */
@media (max-width: 960px) {
  .hog-pillars__root {
    padding: 72px 32px;
  }
  .hog-pillars__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hog-pillars__card {
    padding: 36px 28px;
  }
}
@media (max-width: 480px) {
  .hog-pillars__root {
    padding: 56px 20px;
  }
  .hog-pillars__card-number {
    font-size: 52px;
  }
}

/* ============================================================
     SECTION 4 — FEATURED OPPORTUNITIES
     Prefix: .hog-featured__
     3 property cards with image, price, CTA
  ============================================================ */
.hog-featured__root {
  --hog-feat-gold: #c9a84c;
  --hog-feat-gold-dark: #a8893a;
  --hog-feat-black: #0a0a0a;
  --hog-feat-text: rgba(10, 10, 10, 0.68);
  --hog-feat-border: rgba(201, 168, 76, 0.14);
  --hog-feat-serif: "Cormorant Garamond", serif;
  --hog-feat-body: "Montserrat", sans-serif;
  background: #f9f7f3;
  padding: 100px 60px;
  box-sizing: border-box;
}
/* Header row: heading left, view-all link right */
.hog-featured__header {
  max-width: 1200px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hog-featured__header-left {
  flex: 1;
  min-width: 240px;
}
.hog-featured__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hog-feat-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hog-feat-gold);
  margin-bottom: 14px;
}
.hog-featured__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hog-feat-gold);
  opacity: 0.7;
}
.hog-featured__heading {
  font-family: var(--hog-feat-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--hog-feat-black);
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.3px;
}
.hog-featured__heading em {
  font-style: italic;
  color: var(--hog-feat-gold);
}
/* View all link */
.hog-featured__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hog-feat-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hog-feat-black);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 10, 10, 0.25);
  padding-bottom: 3px;
  white-space: nowrap;
  align-self: flex-end;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.hog-featured__view-all:hover {
  color: var(--hog-feat-gold);
  border-color: var(--hog-feat-gold);
  gap: 14px;
}
.hog-featured__view-all svg {
  width: 14px;
  height: 14px;
}
/* Cards grid */
.hog-featured__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Card */
.hog-featured__card {
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}
.hog-featured__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(201, 168, 76, 0.08);
}
/* Card image */
.hog-featured__card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.hog-featured__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.hog-featured__card:hover .hog-featured__card-img img {
  transform: scale(1.06);
}
/* Category tag */
.hog-featured__card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--hog-feat-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hog-feat-black);
  background: var(--hog-feat-gold);
  padding: 5px 12px;
}
/* Save button */
.hog-featured__card-save {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--hog-feat-black);
  transition: background 0.3s ease, color 0.3s ease;
}
.hog-featured__card-save:hover {
  background: var(--hog-feat-gold);
  color: #ffffff;
}
.hog-featured__card-save svg {
  width: 14px;
  height: 14px;
}
/* Card body */
.hog-featured__card-body {
  padding: 24px;
}
/* Location line */
.hog-featured__card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--hog-feat-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hog-feat-gold);
  margin-bottom: 8px;
}
.hog-featured__card-location svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
/* Property name */
.hog-featured__card-name {
  font-family: var(--hog-feat-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--hog-feat-black);
  letter-spacing: 0.3px;
  margin: 0 0 8px;
  line-height: 1.3;
}
/* Description */
.hog-featured__card-desc {
  font-family: var(--hog-feat-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--hog-feat-text);
  line-height: 1.75;
  margin: 0 0 20px;
}
/* Footer: price + CTA */
.hog-featured__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.hog-featured__card-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hog-featured__card-price-label {
  font-family: var(--hog-feat-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hog-feat-text);
}
.hog-featured__card-price-value {
  font-family: var(--hog-feat-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--hog-feat-black);
}
/* Enquire CTA */
.hog-featured__card-cta {
  font-family: var(--hog-feat-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hog-feat-black);
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.25);
  padding: 9px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.hog-featured__card-cta:hover {
  background: var(--hog-feat-gold);
  color: #ffffff;
  border-color: var(--hog-feat-gold);
}
/* Responsive */
@media (max-width: 960px) {
  .hog-featured__root {
    padding: 72px 32px;
  }
  .hog-featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hog-featured__root {
    padding: 56px 20px;
  }
  .hog-featured__grid {
    grid-template-columns: 1fr;
  }
  .hog-featured__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
     SECTION 5 — ABOUT PREVIEW
     Prefix: .hog-about__
     Split layout: image collage left, text right
  ============================================================ */
.hog-about__root {
  --hog-ab-gold: #c9a84c;
  --hog-ab-gold-light: #e2c97e;
  --hog-ab-black: #0a0a0a;
  --hog-ab-text: rgba(10, 10, 10, 0.68);
  --hog-ab-border: rgba(201, 168, 76, 0.18);
  --hog-ab-serif: "Cormorant Garamond", serif;
  --hog-ab-body: "Montserrat", sans-serif;
  background: #ffffff;
  padding: 100px 60px;
  box-sizing: border-box;
}
/* Two-col split */
.hog-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* LEFT image block */
.hog-about__img-block {
  position: relative;
}
/* Main image */
.hog-about__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hog-about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.hog-about__img-block:hover .hog-about__img-main img {
  transform: scale(1.03);
}
/* Accent floating image */
.hog-about__img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 46%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}
.hog-about__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Gold badge on image */
.hog-about__img-badge {
  position: absolute;
  top: 24px;
  left: -16px;
  background: var(--hog-ab-gold);
  color: #ffffff;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.hog-about__img-badge-num {
  font-family: var(--hog-ab-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}
.hog-about__img-badge-label {
  font-family: var(--hog-ab-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}
/* RIGHT text block */
.hog-about__text-block {
  display: flex;
  flex-direction: column;
}
.hog-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hog-ab-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hog-ab-gold);
  margin-bottom: 20px;
}
.hog-about__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hog-ab-gold);
  opacity: 0.7;
}
.hog-about__heading {
  font-family: var(--hog-ab-serif);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300;
  color: var(--hog-ab-black);
  line-height: 1.25;
  margin: 0 0 20px;
  letter-spacing: 0.3px;
}
.hog-about__heading em {
  font-style: italic;
  color: var(--hog-ab-gold);
}
.hog-about__desc {
  font-family: var(--hog-ab-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--hog-ab-text);
  line-height: 1.95;
  margin: 0 0 36px;
}
/* Mini stats */
.hog-about__mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.hog-about__mini-stat {
  padding: 18px 20px;
  border: 1px solid var(--hog-ab-border);
  position: relative;
  overflow: hidden;
}
.hog-about__mini-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--hog-ab-gold);
}
.hog-about__mini-stat-num {
  font-family: var(--hog-ab-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--hog-ab-black);
  line-height: 1;
  margin-bottom: 4px;
}
.hog-about__mini-stat-num span {
  color: var(--hog-ab-gold);
  font-style: italic;
}
.hog-about__mini-stat-label {
  font-family: var(--hog-ab-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hog-ab-text);
}
/* CTA */
.hog-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hog-ab-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--hog-ab-black);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--hog-ab-black);
  align-self: flex-start;
  transition: background 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.hog-about__cta:hover {
  background: var(--hog-ab-gold);
  border-color: var(--hog-ab-gold);
  gap: 16px;
}
.hog-about__cta svg {
  width: 14px;
  height: 14px;
}
/* Responsive */
@media (max-width: 960px) {
  .hog-about__root {
    padding: 72px 32px;
  }
  .hog-about__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hog-about__img-accent {
    right: 0;
    bottom: -20px;
  }
}
@media (max-width: 480px) {
  .hog-about__root {
    padding: 56px 20px;
  }
  .hog-about__img-badge {
    left: 0;
  }
  .hog-about__mini-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
     SECTION 6 — WHY US
     Prefix: .hog-whyus__
     4 icon cards on warm off-white background
  ============================================================ */
.hog-whyus__root {
  --hog-wy-gold: #c9a84c;
  --hog-wy-black: #0a0a0a;
  --hog-wy-text: rgba(10, 10, 10, 0.68);
  --hog-wy-border: rgba(201, 168, 76, 0.15);
  --hog-wy-serif: "Cormorant Garamond", serif;
  --hog-wy-body: "Montserrat", sans-serif;
  background: #f9f7f3;
  padding: 100px 60px;
  box-sizing: border-box;
  position: relative;
}
/* Dot grid texture */
.hog-whyus__root::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.1) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}
/* Header */
.hog-whyus__header {
  max-width: 1200px;
  margin: 0 auto 72px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hog-whyus__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--hog-wy-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hog-wy-gold);
  margin-bottom: 16px;
}
.hog-whyus__eyebrow::before,
.hog-whyus__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--hog-wy-gold);
  opacity: 0.6;
}
.hog-whyus__heading {
  font-family: var(--hog-wy-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--hog-wy-black);
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: 0.5px;
}
.hog-whyus__heading em {
  font-style: italic;
  color: var(--hog-wy-gold);
}
.hog-whyus__subheading {
  font-family: var(--hog-wy-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--hog-wy-text);
  line-height: 1.85;
  max-width: 500px;
  margin: 0 auto;
}
/* 4-col grid */
.hog-whyus__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
/* Card */
.hog-whyus__card {
  background: #ffffff;
  padding: 40px 32px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}
.hog-whyus__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.1),
    0 2px 12px rgba(0, 0, 0, 0.05);
}
/* Gold left accent bar */
.hog-whyus__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--hog-wy-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s ease;
}
.hog-whyus__card:hover::before {
  transform: scaleY(1);
}
/* Icon */
.hog-whyus__card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--hog-wy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--hog-wy-gold);
  transition: background 0.38s ease;
}
.hog-whyus__card:hover .hog-whyus__card-icon {
  background: rgba(201, 168, 76, 0.14);
}
.hog-whyus__card-icon svg {
  width: 20px;
  height: 20px;
}
/* Title */
.hog-whyus__card-title {
  font-family: var(--hog-wy-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--hog-wy-black);
  margin: 0 0 10px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
/* Desc */
.hog-whyus__card-desc {
  font-family: var(--hog-wy-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--hog-wy-text);
  line-height: 1.85;
  margin: 0;
}
/* Responsive */
@media (max-width: 1024px) {
  .hog-whyus__root {
    padding: 72px 32px;
  }
  .hog-whyus__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .hog-whyus__root {
    padding: 56px 20px;
  }
  .hog-whyus__grid {
    grid-template-columns: 1fr;
  }
  .hog-whyus__card {
    padding: 28px 24px;
  }
}

/* ============================================================
     SECTION 7 — PROJECTS GRID
     Prefix: .hog-projects__
     6 project tiles in 3×2 image grid with hover overlay
  ============================================================ */
.hog-projects__root {
  --hog-proj-gold: #c9a84c;
  --hog-proj-gold-light: #e2c97e;
  --hog-proj-black: #0a0a0a;
  --hog-proj-white: #ffffff;
  --hog-proj-serif: "Cormorant Garamond", serif;
  --hog-proj-body: "Montserrat", sans-serif;
  background: #ffffff;
  padding: 100px 60px;
  box-sizing: border-box;
}
/* Header */
.hog-projects__header {
  max-width: 1200px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.hog-projects__header-left {
  flex: 1;
  min-width: 220px;
}
.hog-projects__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hog-proj-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hog-proj-gold);
  margin-bottom: 14px;
}
.hog-projects__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hog-proj-gold);
  opacity: 0.7;
}
.hog-projects__heading {
  font-family: var(--hog-proj-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--hog-proj-black);
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.3px;
}
.hog-projects__heading em {
  font-style: italic;
  color: var(--hog-proj-gold);
}
/* See all link */
.hog-projects__see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hog-proj-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hog-proj-black);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 10, 10, 0.25);
  padding-bottom: 3px;
  align-self: flex-end;
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.hog-projects__see-all:hover {
  color: var(--hog-proj-gold);
  border-color: var(--hog-proj-gold);
  gap: 14px;
}
.hog-projects__see-all svg {
  width: 14px;
  height: 14px;
}
/* 3×2 grid — gap:2px gives magazine-tile look */
.hog-projects__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
/* Tile */
.hog-projects__tile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.hog-projects__tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.hog-projects__tile:hover .hog-projects__tile-img {
  transform: scale(1.08);
}
/* Dark overlay */
.hog-projects__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.2) 55%,
    transparent 100%
  );
  transition: background 0.45s ease;
}
.hog-projects__tile:hover .hog-projects__tile-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 65%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
/* Tile content at bottom */
.hog-projects__tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  z-index: 2;
}
.hog-projects__tile-tag {
  display: inline-block;
  font-family: var(--hog-proj-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hog-proj-black);
  background: var(--hog-proj-gold);
  padding: 4px 10px;
  margin-bottom: 8px;
}
.hog-projects__tile-name {
  font-family: var(--hog-proj-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--hog-proj-white);
  margin: 0 0 3px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.hog-projects__tile-location {
  font-family: var(--hog-proj-body);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  margin: 0;
}
/* View link — hidden, appears on hover */
.hog-projects__tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hog-proj-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hog-proj-gold);
  text-decoration: none;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hog-projects__tile:hover .hog-projects__tile-link {
  opacity: 1;
  transform: translateY(0);
}
.hog-projects__tile-link svg {
  width: 12px;
  height: 12px;
}
/* Responsive */
@media (max-width: 960px) {
  .hog-projects__root {
    padding: 72px 32px;
  }
  .hog-projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .hog-projects__root {
    padding: 56px 0;
  }
  .hog-projects__header {
    padding: 0 20px;
  }
  .hog-projects__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
     SECTION 8 — PRIVATE CLIENT BANNER
     Prefix: .hog-private__
     Full-width charcoal section with gold accents
  ============================================================ */
.hog-private__root {
  --hog-priv-gold: #c9a84c;
  --hog-priv-gold-light: #e2c97e;
  --hog-priv-white: #ffffff;
  --hog-priv-char: #0a0a0a;
  --hog-priv-serif: "Cormorant Garamond", serif;
  --hog-priv-body: "Montserrat", sans-serif;
  background: var(--hog-priv-char);
  padding: 100px 60px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
/* Gold grid texture bg */
.hog-private__root::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(201, 168, 76, 0.04) 60px,
      rgba(201, 168, 76, 0.04) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(201, 168, 76, 0.04) 60px,
      rgba(201, 168, 76, 0.04) 61px
    );
  pointer-events: none;
}
/* Decorative background word */
.hog-private__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--hog-priv-serif);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 300;
  color: rgba(201, 168, 76, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 4px;
  z-index: 0;
  user-select: none;
}
/* Inner centered block */
.hog-private__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
/* Gold diamond icon */
.hog-private__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.hog-private__icon svg {
  width: 36px;
  height: 36px;
  color: var(--hog-priv-gold);
}
/* Eyebrow */
.hog-private__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--hog-priv-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hog-priv-gold);
  margin-bottom: 24px;
}
.hog-private__eyebrow::before,
.hog-private__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--hog-priv-gold);
  opacity: 0.45;
}
/* Heading */
.hog-private__heading {
  font-family: var(--hog-priv-serif);
  font-size: clamp(30px, 5vw, 62px);
  font-weight: 300;
  color: var(--hog-priv-white);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}
.hog-private__heading em {
  font-style: italic;
  color: var(--hog-priv-gold);
}
/* Subtext */
.hog-private__subtext {
  font-family: var(--hog-priv-body);
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.95;
  max-width: 540px;
  margin: 0 auto 44px;
}
/* CTAs row */
.hog-private__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
/* Primary gold */
.hog-private__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hog-priv-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hog-priv-char);
  background: var(--hog-priv-gold);
  border: 1px solid var(--hog-priv-gold);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
    transform 0.3s ease;
}
.hog-private__cta-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}
/* Secondary outline */
.hog-private__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hog-priv-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 32px;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.hog-private__cta-secondary:hover {
  border-color: var(--hog-priv-gold);
  color: var(--hog-priv-gold);
  transform: translateY(-2px);
}
/* Responsive */
@media (max-width: 640px) {
  .hog-private__root {
    padding: 72px 24px;
  }
  .hog-private__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hog-private__cta-primary,
  .hog-private__cta-secondary {
    justify-content: center;
  }
}

/* ============================================================
     SECTION 9 — TESTIMONIALS
     Prefix: .hog-testi__
     3 quote cards with star ratings and client info
  ============================================================ */
.hog-testi__root {
  --hog-ts-gold: #c9a84c;
  --hog-ts-black: #0a0a0a;
  --hog-ts-text: rgba(10, 10, 10, 0.68);
  --hog-ts-border: rgba(201, 168, 76, 0.14);
  --hog-ts-serif: "Cormorant Garamond", serif;
  --hog-ts-body: "Montserrat", sans-serif;
  background: #ffffff;
  padding: 100px 60px;
  box-sizing: border-box;
}
/* Header */
.hog-testi__header {
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}
.hog-testi__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--hog-ts-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hog-ts-gold);
  margin-bottom: 16px;
}
.hog-testi__eyebrow::before,
.hog-testi__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--hog-ts-gold);
  opacity: 0.6;
}
.hog-testi__heading {
  font-family: var(--hog-ts-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--hog-ts-black);
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0.5px;
}
.hog-testi__heading em {
  font-style: italic;
  color: var(--hog-ts-gold);
}
/* 3-col grid */
.hog-testi__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Card */
.hog-testi__card {
  background: #ffffff;
  border: 1px solid var(--hog-ts-border);
  padding: 40px 36px;
  position: relative;
  box-sizing: border-box;
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}
.hog-testi__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(201, 168, 76, 0.1),
    0 2px 12px rgba(0, 0, 0, 0.04);
}
/* Large quote mark */
.hog-testi__quote-mark {
  font-family: var(--hog-ts-serif);
  font-size: 80px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.16);
  line-height: 0.8;
  margin-bottom: 18px;
  display: block;
  font-style: italic;
}
/* Stars */
.hog-testi__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.hog-testi__star {
  width: 14px;
  height: 14px;
  color: var(--hog-ts-gold);
}
/* Quote text */
.hog-testi__quote {
  font-family: var(--hog-ts-serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--hog-ts-black);
  line-height: 1.72;
  font-style: italic;
  margin: 0 0 28px;
  letter-spacing: 0.2px;
}
/* Divider */
.hog-testi__card-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--hog-ts-gold), transparent);
  opacity: 0.28;
  margin-bottom: 22px;
}
/* Client row */
.hog-testi__client {
  display: flex;
  align-items: center;
  gap: 14px;
}
/* Avatar */
.hog-testi__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(201, 168, 76, 0.22);
}
.hog-testi__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Avatar initials fallback */
.hog-testi__avatar-initials {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.14),
    rgba(201, 168, 76, 0.28)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hog-ts-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--hog-ts-gold);
}
.hog-testi__client-name {
  font-family: var(--hog-ts-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--hog-ts-black);
  letter-spacing: 0.3px;
  margin: 0 0 2px;
}
.hog-testi__client-role {
  font-family: var(--hog-ts-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--hog-ts-text);
  letter-spacing: 0.5px;
  margin: 0;
}
/* Responsive */
@media (max-width: 960px) {
  .hog-testi__root {
    padding: 72px 32px;
  }
  .hog-testi__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .hog-testi__root {
    padding: 56px 20px;
  }
  .hog-testi__card {
    padding: 28px 24px;
  }
}

/* ============================================================
     SECTION 10 — FINAL CTA BANNER
     Prefix: .hog-finalcta__
     Large heading with two CTA buttons on warm bg
  ============================================================ */
.hog-finalcta__root {
  --hog-fc-gold: #c9a84c;
  --hog-fc-gold-dark: #a8893a;
  --hog-fc-black: #0a0a0a;
  --hog-fc-border: rgba(201, 168, 76, 0.2);
  --hog-fc-serif: "Cormorant Garamond", serif;
  --hog-fc-body: "Montserrat", sans-serif;
  background: #f9f7f3;
  padding: 100px 60px;
  box-sizing: border-box;
  border-top: 1px solid var(--hog-fc-border);
  position: relative;
  overflow: hidden;
}
/* Huge decorative bg word */
.hog-finalcta__bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--hog-fc-serif);
  font-size: clamp(100px, 20vw, 240px);
  font-weight: 300;
  color: rgba(201, 168, 76, 0.05);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 8px;
  z-index: 0;
  user-select: none;
}
/* Content wrapper */
.hog-finalcta__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
/* Gold line above heading */
.hog-finalcta__gold-line {
  width: 48px;
  height: 1px;
  background: var(--hog-fc-gold);
  margin: 0 auto 36px;
  opacity: 0.6;
}
/* Eyebrow */
.hog-finalcta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--hog-fc-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hog-fc-gold);
  margin-bottom: 24px;
}
.hog-finalcta__eyebrow::before,
.hog-finalcta__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--hog-fc-gold);
  opacity: 0.6;
}
/* Heading */
.hog-finalcta__heading {
  font-family: var(--hog-fc-serif);
  font-size: clamp(30px, 5vw, 62px);
  font-weight: 300;
  color: var(--hog-fc-black);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}
.hog-finalcta__heading em {
  font-style: italic;
  color: var(--hog-fc-gold);
}
/* Subtext */
.hog-finalcta__subtext {
  font-family: var(--hog-fc-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.52);
  line-height: 1.9;
  margin: 0 auto 44px;
  max-width: 460px;
}
/* CTA buttons */
.hog-finalcta__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hog-finalcta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hog-fc-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--hog-fc-black);
  border: 1px solid var(--hog-fc-black);
  padding: 15px 36px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.hog-finalcta__btn-primary:hover {
  background: var(--hog-fc-gold);
  border-color: var(--hog-fc-gold);
  transform: translateY(-2px);
}
.hog-finalcta__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hog-fc-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hog-fc-black);
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.22);
  padding: 15px 36px;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.hog-finalcta__btn-secondary:hover {
  border-color: var(--hog-fc-gold);
  color: var(--hog-fc-gold);
  transform: translateY(-2px);
}
/* Responsive */
@media (max-width: 640px) {
  .hog-finalcta__root {
    padding: 72px 24px;
  }
  .hog-finalcta__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hog-finalcta__btn-primary,
  .hog-finalcta__btn-secondary {
    justify-content: center;
  }
}
