/* Growise Investments — single-direction styles */

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; }

body{
  background: var(--paper, #F4F1EA);
  color: var(--ink, #26342A);
  font-family: "Cormorant Garamond", "Spectral", "Georgia", serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.005em;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.site{
  background: var(--paper);
  color: var(--ink);
  position: relative;
  min-height: 100vh;
}

.site::before{
  content:"";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.22  0 0 0 0 0.18  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: var(--grain, 0.5);
  mix-blend-mode: multiply;
}
.site::after{
  content:"";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 80% 0%, var(--wash1), transparent 60%),
    radial-gradient(100% 70% at 0% 100%, var(--wash2), transparent 55%);
}

main, header, footer, section{ position: relative; z-index: 1; }

.wrap{ max-width: 1120px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 640px){ .wrap{ padding: 0 28px; } }

/* ——— Logo images ——— */
.gw-img{ display: block; height: 1em; width: auto; }
.gw-lockup-img{ display: block; height: 36px; width: auto; }
@media (max-width: 720px){ .gw-lockup-img{ height: 28px; } }

/* ——— Top bar ——— */
/* ——— Top bar (fixed) ——— */
.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-soft);
  background: rgba(244, 241, 234, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 640px){ .topbar{ padding: 16px 28px; } }
.topbar nav{ display: flex; gap: 32px; }
.topbar nav a{
  color: var(--ink-soft);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  font-style: italic;
  transition: color .3s ease;
}
.topbar nav a:hover{ color: var(--accent); }
@media (max-width: 720px){
  .topbar nav{ display: none; }
  .gw-fullname{ display: none; }
  .gw-divider{ display: none; }
}

/* ——— Hero ——— */
.hero{
  padding-top: 220px;
  padding-bottom: 180px;
  position: relative;
}
.eyebrow{
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  font-weight: 500;
}
.hero-wordmark{
  margin: 0 0 56px;
  line-height: 1;
}
.hero-wordmark .gw-img{
  width: clamp(320px, 70vw, 880px);
  height: auto;
}
.hero-tagline{
  margin: 16px 0 56px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--ink-soft);
  line-height: 1;
  letter-spacing: 0.005em;
}
.hero-tagline em{ font-style: italic; }
.lede{
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0;
}

/* ——— Horizon strip ——— */
.strip{
  height: 200px;
  margin: 0 -48px 120px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
@media (max-width: 640px){
  .strip{ margin: 0 -28px 80px; height: 160px; }
}

/* ——— Sections ——— */
section.block{ padding-top: 140px; padding-bottom: 140px; }
section.block + section.block{ padding-top: 0; }

.section-head{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: baseline;
  margin-bottom: 64px;
}
@media (max-width: 820px){
  .section-head{ grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}
.section-label{
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.section-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.section-title em{ font-style: italic; color: var(--accent); font-weight: 400; }

.prose{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
}
@media (max-width: 820px){ .prose{ grid-template-columns: 1fr; gap: 20px; } }
.prose p{
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(20px, 1.75vw, 24px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1.2em 0;
  max-width: 720px;
}

.statement{
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 920px;
}
.statement em{ font-style: italic; color: var(--accent); font-weight: 400; }
.statement .pause{
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 14px 8px 14px;
}

.branch{ height: 80px; margin: -32px 0 48px; opacity: 0.85; }

.index{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 24px;
}
@media (max-width: 820px){ .index{ grid-template-columns: 1fr; gap: 48px; } }
.index-item{ display: flex; flex-direction: column; gap: 14px; }
.index-item .num{
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}
.index-item h3{
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.index-item p{
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 34ch;
}
.index-item .rule{
  width: 36px; height: 1px;
  background: var(--accent);
  margin-top: 2px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 820px){ .contact-grid{ grid-template-columns: 1fr; gap: 32px; } }
.contact-block .k{
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}
.contact-block .v{
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}
.contact-block a{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color .3s ease, color .3s ease;
}
.contact-block a:hover{ color: var(--accent); border-color: var(--accent); }
address{ font-style: normal; }

footer{
  border-top: 1px solid var(--rule);
  margin-top: 80px;
  padding: 40px 0 48px;
}
.foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 560px){
  .foot{ flex-direction: column; gap: 16px; align-items: flex-start; }
}

.mark{
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--accent) 40%, transparent);
  opacity: 0.5;
}

.reveal{ opacity: 0; transform: translateY(16px); transition: opacity 1.2s ease, transform 1.2s ease; }
.reveal.in{ opacity: 1; transform: none; }
