/* Simple, responsive one-page site generated from the provided PPTX. */
:root{
  /* Lighter overall theme */
  --bg:#f6f7f9;
  --panel:#ffffff;
  --panel2:#eef1f5;
  --text:#111318;
  --muted:#4b5563;
  --line:rgba(0,0,0,.10);
  --accent:#c7a96b;
  --radius:16px;
  --shadow:0 10px 30px rgba(0,0,0,.12);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}
.hero{
  position:relative;
  overflow:hidden;
  padding:28px 0 54px;
  border-bottom:1px solid var(--line);
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    /* Same texture as slide 1, but with lighter tones */
    linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,255,255,.45)),
    url("assets/image2.png") center/cover no-repeat;
  filter:saturate(.95) contrast(1.02);
  transform:scale(1.02);
}
.hero-inner{position:relative; z-index:1}
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:28px;
}
.logo{
  width:64px; height:64px;
  border-radius:18px;
  box-shadow: var(--shadow);
}
.cta{
  text-decoration:none;
  border:1px solid rgba(0,0,0,.18);
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.cta:hover{border-color: rgba(0,0,0,.28)}

.hero-brand{
  text-align:center;
  margin: 6px 0 6px;
  padding: 6px 0 2px;
}
.hero-brand-title{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: clamp(22px, 3.8vw, 40px);
}
.hero-brand-sub{
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  color: var(--accent);
  font-size: clamp(12px, 1.6vw, 18px);
  line-height: 1.25;
}
h1{
  margin:0;
  font-size:clamp(24px, 3.4vw, 42px);
  letter-spacing:.2px;
  line-height:1.12;
}
.subtitle{
  margin:14px 0 0;
  font-size:clamp(16px, 1.6vw, 20px);
  color:var(--muted);
}
.tagline{
  margin:18px 0 0;
  color:rgba(0,0,0,.68);
  font-size:14px;
}
.section{padding:52px 0}
.section.alt{
  background: linear-gradient(180deg, var(--panel2), var(--bg));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

/* Background helpers derived from the PPTX slides */
.section.bg-rock,
.section.bg-silver,
.section.bg-green{
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section.bg-rock::before,
.section.bg-silver::before,
.section.bg-green::before{
  content:"";
  position:absolute;
  inset:0;
  transform:scale(1.01);
}
.section.bg-rock > .container,
.section.bg-silver > .container,
.section.bg-green > .container{ position:relative; z-index:1; }

/* Slide 1 main image: grey rock tones */
.section.bg-rock::before{
  background:
    linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.08)),
    url("assets/image2.png") center/cover no-repeat;
  filter: contrast(1.08) saturate(.85) brightness(.92);
}

/* Slide 2 main image: light silver greys (apply grayscale + brighten on the source photo) */
.section.bg-silver::before{
  background:
    linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.10)),
    url("assets/image4.jpeg") center/cover no-repeat;
  filter: grayscale(1) brightness(1.10) contrast(1.06);
}

/* Slide 3 main image: green tones (hue-rotate the wood texture) */
.section.bg-green::before{
  background:
    linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.08)),
    url("assets/image5.jpeg") center/cover no-repeat;
  filter: hue-rotate(115deg) saturate(1.15) brightness(1.02) contrast(1.05);
}
h2{
  margin:0 0 18px;
  font-size:clamp(18px, 2.3vw, 28px);
  letter-spacing:.3px;
}
.subtitle2{
  margin:-8px 0 18px;
  color:var(--muted);
}

/* Ensure headings/subtitles stay readable on image backgrounds */
.securitization h2,
.trustee h2,
.wealth h2{
  color: rgba(255,255,255,.96);
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.securitization .subtitle2,
.trustee .subtitle2,
.wealth .subtitle2{
  color: rgba(255,255,255,.85);
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
}
.card{
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px 18px 16px;
  box-shadow: var(--shadow);
}
.card h3{
  margin:0 0 8px;
  font-size:16px;
  letter-spacing:.2px;
}
.card p{margin:0; color:rgba(0,0,0,.78)}

/* Requested: justified text inside the SECURITIZATION PLATFORM boxes */
.securitization .card p{
  text-align: justify;
  text-justify: inter-word;
}

/* Also justify text for the same “3 cards in a row” style sections */
.trustee .card p,
.wealth .card p{
  text-align: justify;
  text-justify: inter-word;
}

/* Slide-inspired card color treatments */
.securitization .card{
  background: rgba(138, 133, 126, .84); /* stone / rock grey */
  border-color: rgba(255,255,255,.18);
}
.securitization .card h3,
.securitization .card p{ color: rgba(255,255,255,.92); }

.trustee .card{
  background: rgba(140, 150, 166, .84); /* light silver-grey */
  border-color: rgba(255,255,255,.18);
}
.trustee .card h3,
.trustee .card p{ color: rgba(255,255,255,.94); }

.wealth .card{
  background: rgba(104, 136, 96, .86); /* muted green */
  border-color: rgba(255,255,255,.18);
}
.wealth .card h3,
.wealth .card p{ color: rgba(255,255,255,.94); }
.split{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:start;
}
.split.reverse{grid-template-columns: .75fr 1.25fr}
.stack{display:grid; gap:14px}
.side-image{
  position:sticky;
  top:16px;
  align-self:start;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:rgba(255,255,255,.7);
  height: min(560px, 72vh);
}
.side-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.contact-box{
  margin-top:18px;
  padding:16px 18px;
  border-radius:var(--radius);
  border:1px solid rgba(199,169,107,.35);
  background:rgba(199,169,107,.10);
}
.contact-box a{color:var(--text)}
.footer{
  padding:22px 0;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.02);
}
.footer .container{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  color:rgba(0,0,0,.62);
  font-size:14px;
}
.sep{opacity:.6}

/* Responsive */
@media (max-width: 920px){
  .grid-3{grid-template-columns: 1fr}
  .split, .split.reverse{grid-template-columns: 1fr}
  .side-image{position:relative; height: 360px}
}

#offices .card p{ text-align: justify; text-justify: inter-word; }

/* Logo size increased by 50% */
.logo { transform: scale(1.5); transform-origin: top right; }

.text-body p {
  text-align: justify;
  text-justify: inter-word;
}

