@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #efe2d6;
  --bg-soft: #f6ede5;
  --surface: rgba(255, 255, 255, 0.34);
  --surface-strong: rgba(255, 255, 255, 0.55);
  --text: #3d312b;
  --text-soft: #6a5b52;
  --gold: #c0995f;
  --gold-dark: #a57b44;
  --green: #1f4743;
  --green-2: #274f4b;
  --border: rgba(160, 123, 73, 0.22);
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(79, 58, 40, 0.09);
  --radius: 22px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08)),
    radial-gradient(circle at top left, rgba(255,255,255,0.62), transparent 38%),
    radial-gradient(circle at bottom right, rgba(173,136,86,0.08), transparent 28%),
    linear-gradient(135deg, #f2e7dc, #efe2d6 45%, #ead8cc);
  background-attachment: fixed;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.20) 0px,
      rgba(255,255,255,0.20) 1px,
      transparent 1px,
      transparent 9px
    );
  mix-blend-mode: soft-light;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.container-narrow {
  max-width: 960px;
}

.center-text {
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-space {
  padding: 72px 0;
}

.section-no-top {
  padding-top: 0;
}

.section-top-border {
  border-top: 1px solid rgba(160,123,73,0.20);
}

.section-soft-border {
  border-top: 1px solid rgba(160,123,73,0.18);
  border-bottom: 1px solid rgba(160,123,73,0.18);
  background: rgba(255,255,255,0.22);
}

.section-center {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.section-title-row::before,
.section-title-row::after {
  content: "";
  width: min(18vw, 160px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,153,95,0.85), transparent);
}

.section-title-row h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
}

.section-title-row--light h2 {
  color: #ffffff;
}

.section-intro {
  max-width: 800px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.95;
}

.paper-card {
  border: 1px solid rgba(160,123,73,0.18);
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.16)),
    linear-gradient(135deg, rgba(255,255,255,0.28), rgba(231,214,199,0.34));
  box-shadow:
    0 18px 35px rgba(71, 52, 37, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.38);
  backdrop-filter: blur(5px);
}

.dark-panel {
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(24, 50, 47, 0.96), rgba(31, 60, 56, 0.96)),
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 42%);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.16);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(192,153,95,0.25);
  background-image:
    linear-gradient(180deg, rgba(26, 50, 47, 0.96), rgba(35, 61, 58, 0.96)),
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 35%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(27, 40, 38, 0.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.site-brand {
  min-width: 0;
  color: #ead7b7;
  font-family: 'Allura', cursive;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
}

.desktop-nav {
  display: none;
}

.site-menu,
.drawer-menu,
.footer-menu,
.footer-simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-menu li a,
.drawer-menu li a,
.footer-menu li a {
  position: relative;
  display: inline-flex;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color .25s ease;
}

.site-menu li a {
  color: rgba(255,255,255,0.88);
}

.site-menu li a::after,
.drawer-menu li a::after,
.footer-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}

.site-menu li a:hover::after,
.drawer-menu li a:hover::after,
.footer-menu li a:hover::after {
  width: 100%;
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216,186,138,0.45);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: #ead7b7;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(2) { transform: translateY(0); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }

.site-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.site-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: min(92vw, 420px);
  height: 100vh;
  padding: 28px;
  background: linear-gradient(180deg, rgba(246,236,227,0.98), rgba(239,226,215,0.98));
  border-left: 1px solid rgba(160,123,73,0.25);
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
}

.site-drawer.is-open {
  transform: translateX(0);
}

.site-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(160,123,73,0.25);
}

.site-drawer__brand {
  color: var(--green);
  font-family: 'Allura', cursive;
  font-size: 2.3rem;
  line-height: 1;
}

.drawer-close {
  border: 1px solid rgba(160,123,73,0.25);
  background: #fff8f2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--green);
}

.site-drawer__eyebrow {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.site-drawer__nav {
  margin-top: 22px;
  flex: 1;
  overflow-y: auto;
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-menu li {
  border-bottom: 1px solid rgba(160,123,73,0.14);
  padding: 14px 0;
}

.drawer-menu li a {
  color: var(--text);
  font-size: 1rem;
}

.drawer-contact-card {
  margin-top: 20px;
  border: 1px solid rgba(160,123,73,0.22);
  border-radius: 18px;
  background: rgba(255,255,255,0.42);
  padding: 20px;
}

.drawer-contact-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.drawer-contact-card p:last-of-type {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.8;
}

/* Buttons */

.btn-editorial,
.btn-editorial-outline,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.btn-editorial:hover,
.btn-editorial-outline:hover,
.btn-gold:hover {
  transform: translateY(-2px);
}

.btn-editorial {
  border: 1px solid rgba(192,153,95,0.65);
  background: var(--green);
  color: #ffffff;
}

.btn-editorial-outline {
  border: 1px solid rgba(160,123,73,0.26);
  background: rgba(255,255,255,0.55);
  color: var(--text);
}

.btn-editorial-outline:hover {
  border-color: rgba(192,153,95,0.8);
  color: var(--green);
}

.btn-gold {
  border: 1px solid rgba(217,183,127,0.75);
  background: #e1c28f;
  color: #1a1a1a;
}

/* Hero */

.hero-section {
  padding: 54px 0 68px;
  border-bottom: 1px solid rgba(160,123,73,0.18);
}

.hero-grid {
  display: grid;
  gap: 36px;
}

.hero-card {
  padding: 18px;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.45);
  background: #e8dbcf;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.55), transparent 48%);
}

.hero-portrait {
  position: relative;
  margin: 0 auto;
  width: auto;
  max-height: 560px;
  object-fit: contain;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  margin-top: 20px;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.96;
  font-weight: 600;
}

.hero-subtitle {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: rgba(61,49,43,0.92);
}

.hero-divider {
  margin-top: 18px;
  width: 176px;
  height: 1px;
  background: rgba(192,153,95,0.65);
}

.hero-text {
  margin-top: 22px;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Authority */

.authority-card {
  margin-top: 32px;
  padding: 30px 26px;
}

.authority-grid {
  display: grid;
  gap: 24px;
}

.authority-item {
  text-align: center;
}

.authority-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.05rem;
  font-weight: 600;
}

.authority-desc {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Pillars */

.pillars-grid {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.pillar-card {
  overflow: hidden;
  padding: 16px;
}

.pillar-image-wrap {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.35);
}

.pillar-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.pillar-panel {
  min-height: 280px;
  padding: 28px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #e6c894;
}

.pillar-panel h3 {
  margin-top: 14px;
  font-size: 2.4rem;
  line-height: 1.05;
}

.pillar-panel p {
  margin-top: 16px;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.9;
}

.panel-icons {
  display: flex;
  gap: 10px;
  color: #e6c894;
  font-size: 1.1rem;
}

.pillar-body {
  padding: 22px 10px 10px;
}

.pillar-body h3 {
  font-size: 2.1rem;
  font-weight: 600;
}

.pillar-body p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

.pillar-body .btn-editorial-outline {
  margin-top: 20px;
}

/* Chips */

.chips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.chip {
  padding: 10px 16px;
  border: 1px solid rgba(160,123,73,0.22);
  background: rgba(255,255,255,0.36);
  border-radius: 999px;
  font-size: 0.94rem;
}

/* Work */

.work-panel {
  padding: 38px 28px;
  color: #ffffff;
  border: 1px solid rgba(192,153,95,0.22);
}

.work-grid {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.work-item {
  text-align: center;
}

.work-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217,183,127,0.50);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  color: #e6c894;
  font-size: 1rem;
}

.work-item p {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
}

/* Contact section */

.contact-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.contact-title {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
}

.contact-text {
  margin-top: 20px;
  max-width: 760px;
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 1rem;
}

.contact-card {
  padding: 28px;
}

.contact-lines {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

.contact-card .btn-editorial {
  margin-top: 22px;
}

/* Pages */

.page-hero {
  padding: 68px 0 44px;
  border-bottom: 1px solid rgba(160,123,73,0.18);
}

.page-title {
  margin-top: 16px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1;
  font-weight: 600;
}

.page-content-section {
  padding: 54px 0 70px;
}

.prose {
  max-width: 900px;
}

.prose p,
.prose li {
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 1rem;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 28px;
  margin-bottom: 14px;
}

.prose ul {
  padding-left: 20px;
}

/* About page */

.page-hero--about {
  padding: 64px 0 44px;
}

.about-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-lead {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.95;
}

.about-hero-card {
  padding: 18px;
}

.about-hero-image-wrap {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.4);
  background: #eadccf;
}

.about-hero-image {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.about-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.about-sidebar {
  align-self: start;
}

.about-sidebar-card {
  padding: 22px;
}

.about-sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.about-anchor-nav {
  display: grid;
  gap: 12px;
}

.about-anchor-nav a {
  display: block;
  color: var(--text-soft);
  font-size: 0.95rem;
  transition: color .2s ease, transform .2s ease;
}

.about-anchor-nav a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.about-content {
  display: grid;
  gap: 24px;
}

.about-content section {
  scroll-margin-top: 130px;
}

.about-section-card {
  padding: 30px 26px;
  display: grid;
  gap: 16px;
}

.about-section-card h2,
.about-philosophy-panel h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 600;
  line-height: 1.05;
}

.about-section-card p,
.about-philosophy-panel p {
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 1rem;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.about-two-col {
  display: grid;
  gap: 24px;
  margin: 8px 0;
}

.about-mini-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
  line-height: 1.8;
}

.about-philosophy-panel {
  padding: 34px 28px;
  display: grid;
  gap: 16px;
  color: #fff;
}

.about-philosophy-panel p {
  color: rgba(255,255,255,0.78);
}

/* Footer */

.site-footer {
  margin-top: 30px;
  padding: 62px 0 28px;
  color: #ffffff;
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer__grid {
  display: grid;
  gap: 36px;
}

.site-footer__brand {
  color: #e8cfaa;
  font-family: 'Allura', cursive;
  font-size: clamp(2.5rem, 6vw, 3.2rem);
  line-height: 1;
}

.site-footer__text {
  margin-top: 18px;
  max-width: 560px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  font-size: 0.95rem;
}

.site-footer__label {
  color: #d9b77f;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  margin-bottom: 16px;
}

.footer-menu,
.footer-simple-list {
  display: grid;
  gap: 12px;
}

.footer-menu li a,
.footer-simple-list li {
  color: rgba(255,255,255,0.84);
  font-size: 0.94rem;
}

.site-footer__bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}

/* Responsive */

@media (min-width: 900px) {
  .desktop-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
  }

  .authority-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .authority-item + .authority-item {
    border-left: 1px solid rgba(160,123,73,0.18);
    padding-left: 18px;
  }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-item + .work-item {
    border-left: 1px solid rgba(255,255,255,0.10);
  }

  .contact-grid {
    grid-template-columns: 1fr 0.92fr;
  }

  .site-footer__grid {
    grid-template-columns: 1.15fr 0.9fr 0.85fr;
    align-items: start;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .about-hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .about-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }

  .about-sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
  }

  .about-two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 899px) {
  .site-header__inner {
    min-height: 78px;
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-card {
    order: -1;
  }

  .hero-portrait {
    max-height: 420px;
  }

  .section-space {
    padding: 58px 0;
  }
}