@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --sand: #c9a882;
  --sand-light: #e8d9c5;
  --sand-bg: #f0e8dc;
  --warm-white: #faf8f5;
  --cream: #f4efe8;
  --text-dark: #1a1713;
  --text-mid: #4a433c;
  --text-light: #8a7d72;
  --border: #d8cfc4;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
   --sand: #c8b49a;
    --sand-light: #e8ddd0;
    --sand-pale: #f4ede4;
    --cream: #faf7f3;
    --ink: #1a1714;
    --ink-soft: #3a3530;
    --stone: #8c8078;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
      --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --border: rgba(200,180,154,.25);
--text-dark: #1a1714;
--text-light: #8c8078;
--warm-white: #faf7f3;
}
/* ==========================
   NAVIGATION
========================== */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 48px;
    height: 64px;
  }
  .nav-left { display: flex; gap: 36px; align-items: center; }
  .nav-center { text-align: center; }
  .nav-right { display: flex; gap: 36px; align-items: center; justify-content: flex-end; }

  nav a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-mid);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--text-dark); }

  .brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.1;
  }
  .brand-sub {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-top: 1px;
  }

  .nav-cta {
    border: 1px solid var(--text-dark) !important;
    padding: 8px 16px !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    color: var(--text-dark) !important;
    transition: background 0.2s, color 0.2s !important;
  }
  .nav-cta:hover { background: var(--text-dark) !important; color: var(--warm-white) !important; }


.menu-toggle{
display:none;
background:none;
border:none;
cursor:pointer;
padding:0;
width:32px;
height:22px;
position:relative;
}

.menu-toggle span{
position:absolute;
left:0;
width:100%;
height:1px;
background:var(--text-dark);
transition:.3s;
}

.menu-toggle span:first-child{
top:7px;
}

.menu-toggle span:last-child{
bottom:7px;
}
@media (max-width:900px){

.site-nav{
padding:0 24px;
height:68px;
}

.menu-toggle{
display:block;
}

.nav-links{
position:fixed;

top:68px;
left:0;
right:0;

background:var(--warm-white);

flex-direction:column;
align-items:flex-start;

padding:30px 24px;

gap:22px;

transform:translateY(-120%);
opacity:0;

transition:.35s ease;

border-bottom:1px solid var(--border);
}

.nav-links.active{
transform:translateY(0);
opacity:1;
}

.nav-links a{
font-size:12px;
width:100%;
padding-bottom:15px;
border-bottom:1px solid var(--border);
}

.nav-cta{
width:100%;
text-align:center;
margin-top:10px;
}

.brand-name{
font-size:20px;
}

}
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  height: 64px;
}
.nav-left { display: flex; gap: 36px; align-items: center; }
.nav-center { text-align: center; }
.nav-right { display: flex; gap: 36px; align-items: center; justify-content: flex-end; }

nav a {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--text-dark); }
nav a.active { border-bottom: 1px solid var(--text-dark); }

.brand-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.1;
  text-decoration: none;
  display: block;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block; margin-top: 1px;
}

.nav-cta {
  border: 1px solid var(--text-dark) !important;
  padding: 8px 16px !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  color: var(--text-dark) !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--text-dark) !important; color: var(--warm-white) !important; }

/* ─── HERO SPLIT ─── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}
@media (max-width: 900px) {
  .hero-split {
    display: block;
    position: relative;
    min-height: calc(100vh - 68px);
  }
  .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 0;
    z-index: 1;
  }
  .hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,23,20,.25) 0%, rgba(26,23,20,.45) 45%, rgba(26,23,20,.88) 100%);
  }
  .hero-text {
    position: relative;
    z-index: 2;
    background: transparent;
    min-height: calc(100vh - 68px);
    padding: 56px 24px 40px;
    justify-content: flex-end;
  }
  .hero-kicker { color: var(--sand-light); }
  .hero-text h1 { color: var(--cream); }
  .hero-text p { color: rgba(250,247,243,.85); }
  .hero-actions { gap: 14px !important; }
  .btn-outline {
    border-color: rgba(250,247,243,.65);
    color: var(--cream);
    padding: 20px !important;
  }
  .btn-outline:hover { background: var(--cream); color: var(--ink); }
}
.hero-text {
  background: var(--sand-bg);
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--text-dark);
  animation: fadeUp 0.6s ease both;
}
.hero-text p {
  font-size: 14px; line-height: 1.75;
  color: var(--text-mid);
  max-width: 420px; margin-bottom: 36px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-text .hero-actions { animation: fadeUp 0.6s 0.2s ease both; }
.hero-kicker {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sand);
  margin-bottom: 18px; display: block;
  animation: fadeUp 0.5s ease both;
}
.hero-visual {
  background: url('ogo.jpeg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.hero-visual-inner {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-star { font-size: 88px; opacity: 0.25; display: block; margin-bottom: 10px; }

/* ─── BUTTONS ─── */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--text-dark);
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dark); cursor: pointer;
  transition: background 0.2s, color 0.2s;
  background: transparent; text-align: left;
  text-decoration: none;
}
.btn-outline:hover { background: var(--text-dark); color: var(--warm-white); }

.btn-bracket {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark); cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-bracket:hover { border-color: var(--text-dark); }

/* ─── GRID NUM / LABELS ─── */
.grid-num {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 6px; display: block;
}

/* ─── CARD SECTION ─── */
.card-section {
  padding: 72px 56px;
  background: var(--warm-white);
}
.card-section-header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.card-section-header h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--warm-white);
  padding: 28px 24px;
}
.card-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--sand-light) 0%, var(--sand-bg) 100%);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.card h3 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 8px; color: var(--text-dark);
}
.card p { font-size: 13px; line-height: 1.65; color: var(--text-mid); margin-bottom: 16px; }
.card .card-q { font-weight: 500; font-size: 13px; color: var(--text-dark); margin-bottom: 4px; }
.card .card-a { font-size: 12.5px; color: var(--text-mid); margin-bottom: 14px; }
.card-with-icon { display: flex; align-items: flex-start; }
.card-content { flex: 1; }
.icon-box {
  width: 80px; height: 80px; flex-shrink: 0;
  margin-left: 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}

/* ─── SEARCH BAR ─── */
.search-bar {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--text-dark);
  padding: 12px 18px; max-width: 480px;
  background: transparent; margin-bottom: 28px;
}
.search-bar input {
  border: none; background: transparent;
  font-family: var(--font-body); font-size: 13px;
  color: var(--text-dark); outline: none; width: 100%;
}
.search-bar input::placeholder { color: var(--text-light); }

/* ─── POLICY HERO ─── */
.policy-hero {
  background: var(--sand-bg);
  padding: 80px 56px;
}
.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 20px; max-width: 600px;
  animation: fadeUp 0.6s ease both;
}
.policy-hero p {
  font-size: 14px; line-height: 1.75;
  color: var(--text-mid); max-width: 560px;
  animation: fadeUp 0.6s 0.1s ease both;
}

/* ─── DETAILS SECTION ─── */
.details-section {
  padding: 72px 56px;
  background: var(--cream);
}
.details-section > h2 {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text-light);
  text-align: center; margin-bottom: 48px;
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; max-width: 800px; margin: 0 auto;
}
@media (max-width:900px){
  .details-grid { grid-template-columns: 1fr; gap: 28px; }
}

.detail-block .map-ph {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #d4cbc0 0%, #c0b5a8 100%);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.detail-block .brand-ph {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #c9b89e 0%, #a89070 100%);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.detail-block .brand-ph span {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.detail-block h4 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 8px;
}
.detail-block p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ─── FOOTER ─── */
 /* ── FOOTER ── */
  footer {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 80px 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .wordmark-lg {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--cream);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
  }
  .footer-brand .sub-lg {
    font-family: var(--font-sans);
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--stone);
    display: block;
    margin-bottom: 24px;
  }
  .footer-brand p {
    font-size: 12px;
    color: rgba(250,247,243,0.4);
    line-height: 1.8;
    letter-spacing: 0.04em;
    max-width: 260px;
  }
  .footer-col h4 {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li + li { margin-top: 12px; }
  .footer-col ul li a {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: rgba(250,247,243,0.5);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.25s;
  }
  .footer-col ul li a:hover { color: var(--cream); }
  .footer-address {
    font-size: 12px;
    color: rgba(250,247,243,0.45);
    line-height: 1.8;
    letter-spacing: 0.04em;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-bottom p {
    font-size: 10px;
    color: rgba(250,247,243,0.25);
    letter-spacing: 0.1em;
  }
  .footer-social {
    display: flex;
    gap: 20px;
  }
  .footer-social a {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(250,247,243,0.35);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
  }
  .footer-social a:hover { color: var(--cream); }
  @media (max-width: 900px) {
    footer { padding: 50px 22px 25px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
    .footer-brand { text-align: center; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-brand p { max-width: 100%; margin: auto; }
    .footer-col { text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 18px; padding-top: 24px; }
    .footer-social { justify-content: center; flex-wrap: wrap; gap: 24px; }
  }
  .footer-col:last-of-type h4 { margin-bottom: 20px; }

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(250,247,243,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(250,247,243,0.55);
  transition: fill 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--sand);
  background: rgba(200,180,154,0.08);
}
.footer-social a:hover svg { fill: var(--sand); }

@media (max-width: 900px) {
  .footer-social { justify-content: center; }
}
/* ─── ABOUT PAGE SPECIFICS ─── */
.about-manifesto {
  padding: 96px 56px;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400; line-height: 1.12;
  letter-spacing: -0.01em;
}
.about-manifesto p {
  font-size: 14px; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 20px;
}
.about-principles {
  padding: 0 56px 80px;
  background: var(--warm-white);
}
.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.principle-card {
  background: var(--cream);
  padding: 36px 28px;
}
.principle-card .num {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 300;
  color: var(--sand-light); line-height: 1;
  margin-bottom: 16px; display: block;
}
.principle-card h3 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 12px; color: var(--text-dark);
}
.principle-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

.about-team {
  padding: 80px 56px;
  background: var(--sand-bg);
}
.about-team h2 {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 48px; text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  max-width: 900px; margin: 0 auto;
}
.team-card { background: var(--sand-bg); padding: 0; }
.team-card-visual {
  width: 100%; aspect-ratio: 3/2;
  background: linear-gradient(160deg, #c9a882 0%, #9a7a60 100%);
  display: flex; align-items: center; justify-content: center;
}
.team-card-visual span {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.team-card-body { padding: 24px 24px 28px; }
.team-card-body .role {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand);
  display: block; margin-bottom: 6px;
}
.team-card-body h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 400;
  margin-bottom: 12px; letter-spacing: 0.02em;
}
.team-card-body p { font-size: 13px; line-height: 1.7; color: var(--text-mid); }
.team-card-body .credentials {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.team-card-body .cred-tag {
  border: 1px solid var(--border);
  padding: 5px 12px;
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-logo{
    display:flex;
    align-items:center;
}

.nav-logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.nav-logo img{
    max-height:60px;
    max-width:140px;
    width:auto;
    height:auto;
    display:block;
    transition:transform .3s ease;
}

.nav-logo:hover img{
    transform:scale(1.03);
}

@media (max-width:768px){
    .nav-logo img{
        max-height:48px;
        max-width:110px;
    }
}

/* ==========================================================
   MOBILE HORIZONTAL-OVERFLOW FIX
   Grid children (hero splits, card grids, footer columns,
   team grids, etc.) have an implicit min-width:auto, so any
   long word or oversized image inside them can stretch the
   grid — and the whole page — past 100vw. This resets that,
   caps the nav logo image, and belt-and-braces hides overflow.
   Safe to keep permanently; it does not change desktop layout.
========================================================== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero-split,
.card-section,
.card-grid,
.card-grid-2,
.details-grid,
.footer-top,
.about-manifesto,
.about-principles-grid,
.team-grid,
.card-with-icon {
  min-width: 0;
}

.hero-split > *,
.card-grid > *,
.card-grid-2 > *,
.details-grid > *,
.footer-top > *,
.about-manifesto > *,
.about-principles-grid > *,
.team-grid > *,
.card-with-icon > * {
  min-width: 0;
}

img { max-width: 100%; height: auto; }

@media (max-width: 900px) {
  .card-section-header,
  .footer-bottom {
    flex-wrap: wrap;
  }

  /* Ensure `.details-grid` always stacks to one column on small screens.
     Use increased specificity to override conflicting rules. */
  .details-section .details-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
}