/* ── FONT HOSTING ─────────────────────────────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-v21-latin-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
                 U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
                 U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/jost-v20-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
                 U+FEFF, U+FFFD;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:        #F4EFE5;
  --cream-dark:   #E8E0D0;
  --navy:         #0D1B33;
  --navy-deep:    #080F1D;
  --gold:         #B89055;
  --gold-light:   #D4AC72;
  --text-muted:   #4A5A6A;
  --space-md:     60px;
  --space-xl:     120px;
  --max-width:    1280px;
}

html {
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}



body {
  background: var(--cream);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAVIGATION ───────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  background: rgba(244, 239, 229, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 27, 51, 0.08);
  transition: padding 0.4s ease;
}

.nav--scrolled { padding: 18px 60px; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .nav-accent { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible { opacity: 1; }

.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── NAVIGATION - HAMBURGER MENU ─────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.nav-hamburger:hover { background: rgba(13, 27, 51, 0.06); }

.nav-hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(13, 27, 51, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.10em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible { color: var(--gold-light); }

.mobile-menu a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ── HERO BANNER ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%);
  transform: scale(1.04);
  will-change: transform;
  animation: slowZoom 18s ease-in-out infinite alternate;
  background: linear-gradient(160deg, #2a2a2a 0%, #111 60%, #080808 100%);
}

.hero picture {
  display: contents;
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,51,0.28) 0%, rgba(13,27,51,0.18) 40%, rgba(13,27,51,0.82) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 84px;
  max-width: 860px;
  animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 3.6vw, 2.8rem);
  line-height: 1.12;
  color: #fff;
  letter-spacing: 0.01em;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 36px 0 0;
  opacity: 0.8;
  border: none;
}

.hero-portfolio {
  margin-top: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 3.2vw, 2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
  min-height: 3.2em;
}

.hero-cycle {
  font-style: italic;
  color: var(--gold-light);
  display: inline;
}

.hero-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--gold-light);
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.75s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── MAIN PAGE / ABOUT / Our focus ─────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.about-left {
  background: var(--navy);
  padding: 100px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-right {
  background: var(--cream-dark);
  padding: 100px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.about-left .section-label { color: var(--gold-light); }

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 28px;
}

.about-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
}

.about-body--gap { margin-top: 1.4em; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 32px;
  margin-top: 8px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1;
}

.stat-desc {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 27, 51, 0.6); 
  margin-bottom: 6px;
}

/* ── MAIN PAGE / PHILOSOPHY ────────────────────────────────────────────── */
.philosophy {
  padding: var(--space-xl) var(--space-md);
  background: var(--cream);
}

.philosophy-header {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 80px;
}

.philosophy-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--navy);
  white-space: nowrap;
}

.philosophy-rule {
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
  border: none;
  max-width: 400px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  padding: 56px 48px;
  background: #fff;
  border-top: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pillar:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3rem;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 28px;
  display: block;
  user-select: none;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.pillar-text {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── MAIN PAGE / CONTACT ───────────────────────────────────────────────── */
.contact {
  background: var(--navy);
  padding: var(--space-xl) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.contact-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-email {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 1px solid rgba(184, 144, 85, 0.35);
  padding: 14px 28px;
  margin: 0;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.contact-email:focus-visible {
  outline: 2px solid rgba(184, 144, 85, 0.5);
  outline-offset: 4px;
}


/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  padding: var(--space-md) 0;
}

.site-footer .container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 60px;
  display: flex;
  justify-content: space-between; 
  align-items: flex-start;
  gap: 48px;
}

.footer-disclaimer {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  align-self: stretch;
  white-space: normal;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 300;
}

.footer-legal {
  flex: 0 0 auto;          
  margin-top: 0;            
  padding-top: 0.05rem;  
  white-space: nowrap;
}

.footer-legal a {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(212, 175, 55, 0.78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  opacity: 0.8;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold);
  border-bottom-color: rgba(212, 175, 55, 0.55);
  opacity: 1;
  outline: none;
}

.footer-legal a:active {
  opacity: 0.9;
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (min-width: 1400px) {
  .hero-content { padding-left: calc((100vw - var(--max-width)) / 2 + 60px); }
  .about-left, .about-right {
    padding-left:  calc((100vw - var(--max-width)) / 2 + 70px);
    padding-right: calc((100vw - var(--max-width)) / 2 + 70px);
  }
  .philosophy, .contact {
    padding-left:  calc((100vw - var(--max-width)) / 2 + 60px);
    padding-right: calc((100vw - var(--max-width)) / 2 + 60px);
  }
  .site-nav {
    padding-left:  calc((100vw - var(--max-width)) / 2 + 60px);
    padding-right: calc((100vw - var(--max-width)) / 2 + 60px);
  }
}

@media (max-width: 900px) {
  .site-nav       { padding: 22px 28px; }
  .nav--scrolled  { padding: 14px 28px; }
  .nav-links      { gap: 24px; }
  .hero-content   { padding: 0 28px 64px; }
  .about          { grid-template-columns: 1fr; }
  .about-left, .about-right  { padding: 72px 40px; }
  .philosophy     { padding: 80px 40px; }
  .pillars        { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .pillar         { padding: 44px 32px; }
  .contact        { padding: 80px 40px; }
  .site-footer .container { padding-left: 28px; padding-right: 28px; gap: 36px; }
  .footer-disclaimer { max-width: 100%; }
}

@media (max-width: 700px) {
  .nav-links      { display: none; }
  .nav-hamburger  { display: flex; }
  .hero-content   { padding: 0 24px 56px; }
  .about-left, .about-right  { padding: 60px 24px; }
  .philosophy     { padding: 64px 24px; }
  .pillars        { grid-template-columns: 1fr; }
  .pillar         { padding: 36px 24px; }
  .contact        { padding: 64px 24px; }
  .site-footer .container { padding-left: 24px; padding-right: 24px; flex-direction: column; gap: 20px; }
  .footer-legal   { padding-top: 0; }
}

@media (min-width: 701px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 560px) {
  .hero-content   { padding: 0 20px 48px; }
  .hero-slogan    { font-size: clamp(1.2rem, 6vw, 1.8rem); }
  .about-left, .about-right  { padding: 52px 20px; }
  .about-body     { max-width: 100%; }
  .stat-grid      { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .philosophy     { padding: 56px 20px; }
  .philosophy-header { flex-direction: column; gap: 16px; }
  .philosophy-rule   { display: none; }
  .contact        { padding: 56px 20px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .site-footer    { padding: 20px 0;}
  .site-footer .container { padding-left: 20px; padding-right: 20px; }
  .footer-legal a { font-size: 0.74rem; letter-spacing: 0.01em; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image   { animation: none; }
  .hero-content { animation: none; }
  .reveal       { opacity: 1; transform: none; transition: none; }
  .hero-cursor  { animation: none; opacity: 1; }
}

/* ── PRIVACY PAGE CUSTOM STYLING ───────────────────────────── */
.privacy-section {
  padding: 140px 60px var(--space-xl) 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.privacy-container {
  max-width: 900px; 
  margin: 0 auto;
}

.privacy-grid {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}

.privacy-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(13, 27, 51, 0.08);
}

.privacy-row:last-of-type {
  border-bottom: none;
}

.privacy-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

.privacy-body {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--navy);
}

.privacy-contact a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.privacy-contact a:hover {
  color: var(--gold-light);
}

.privacy-back-wrapper {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px dashed rgba(13, 27, 51, 0.15);
  text-align: center;
}

.btn-back {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-back:hover {
  color: var(--gold);
  transform: translateX(-4px);
}

.privacy-last-updated {
	display: block;
	width: 100%;
	text-align: right;
	margin-top: 2rem;
	margin-bottom: 2.5rem;
	font-size: 0.85rem;
	letter-spacing: 0.03em;
	line-height: 1.6;
	color: var(--text-muted);
	font-style: italic;
}
.error-page {
  padding-top: 140px;
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 110px 24px var(--space-md) 24px;
  }

  .privacy-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .privacy-label {
    font-size: 1.25rem;
  }

  .error-page {
    padding-top: 110px;
  }
}

/* ── 404 / ERROR PAGE ───────────────────────────── */
.error-page .pillar {
  max-width: 1000px;
  margin: 0 auto;
}

.error-text {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 auto;
}