@charset "UTF-8";
:root {
  --umber:#622D18;
  --umber-deep:#4A2010;
  --green:#2E6B4A;
  --green-deep:#234F37;
  --amber:#F59E0B;
  --paper:#F8F3EA;
  --paper-2:#F1E8D8;
  --ink:#2A201A;
  --ink-soft:#6E6053;
  --white:#FFFFFF;
  --line:rgba(98,45,24,.14);
  --line-strong:rgba(98,45,24,.28);
  --font-display:"Shippori Mincho B1",serif;
  --font-body:"Zen Kaku Gothic New",sans-serif;
  --font-label:"Space Grotesk","Zen Kaku Gothic New",sans-serif;
  --maxw:var(--container_size,1120px);
  --gutter:clamp(20px,5vw,64px);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green);
}

main#top {
  overflow-x: clip;
  margin-top: -4em;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: rgba(248, 243, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-nav__inner {
  min-height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.site-nav__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.site-nav__brand img {
  display: block;
  width: auto;
  height: 42px;
}

.site-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav__list::-webkit-scrollbar {
  display: none;
}

.site-nav__list a {
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.site-nav__list a:hover {
  color: var(--umber);
}

@media (max-width: 720px) {
  .site-nav__inner {
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .site-nav__list {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 2px;
  }
  .site-nav__brand img {
    height: 36px;
  }
}
#body_wrap.home #content.l-container,
#body_wrap.front-page #content.l-container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

main#top > section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

main#top .wrap,
.works-archive .wrap,
.l-single-work .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--swl-pad_container, var(--gutter));
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* battlement accent */
.crenel {
  width: 46px;
  height: 12px;
  background: repeating-linear-gradient(to right, var(--umber) 0 7px, transparent 7px 14px) top/auto 5px repeat-x;
  border-bottom: 1.5px solid var(--umber);
  opacity: 0.85;
}

.btn {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 5rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s ease;
  transition: background 0.2s, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background 0.2s;
  transition: transform 0.2s ease, background 0.2s, -webkit-transform 0.2s ease;
}

.btn-primary {
  background: var(--umber);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--umber-deep);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--umber);
  border: 1.5px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--umber);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-amber {
  background: var(--amber);
  color: var(--umber-deep);
}

.btn-amber:hover {
  background: #e08e08;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(44px, 7vw, 88px) 0 clamp(36px, 5vw, 64px);
  overflow: hidden;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.hero .eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.hero .eyebrow .de {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  line-height: 1.34;
  letter-spacing: 0.01em;
  color: var(--umber);
  margin: 14px 0 6px;
}

.hero h1 .accent {
  position: relative;
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 0.06em;
  height: 0.36em;
  background: var(--amber);
  opacity: 0.32;
  z-index: -1;
  border-radius: 2px;
}

.hero .lead {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  color: var(--ink);
  max-width: 30em;
  margin-top: 22px;
}

.hero .lead b {
  color: var(--green-deep);
  font-weight: 700;
}

.hero .sub {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 30em;
  margin-top: 0.75rem;
}

.hero-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* castle signature */
.keep {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  min-height: 260px;
}

@media (max-width: 880px) {
  .keep {
    margin: 10px auto 0;
    max-width: 380px;
  }
}
.castle {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.castle .s {
  fill: none;
  stroke: var(--umber);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  -webkit-animation: build 1s ease forwards;
          animation: build 1s ease forwards;
}

.castle .hill {
  stroke: var(--green);
  stroke-width: 1.6;
  opacity: 0.5;
}

.castle .ground {
  stroke: var(--green-deep);
  stroke-width: 1.6;
  opacity: 0.6;
}

.castle .amber {
  fill: var(--amber);
  stroke: none;
  opacity: 0;
  -webkit-animation: litfade 0.7s ease forwards;
          animation: litfade 0.7s ease forwards;
}

@-webkit-keyframes build {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes build {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes litfade {
  to {
    opacity: 1;
  }
}
@keyframes litfade {
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .castle .s {
    -webkit-animation: none;
            animation: none;
    stroke-dashoffset: 0;
  }
  .castle .amber {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
  }
}
.foundation {
  position: relative;
  margin-top: clamp(30px, 4vw, 48px);
  height: 1px;
  background: var(--line);
}

/* ---------- SECTION SHELL ---------- */
main#top > section {
  padding: clamp(3rem, 2.273rem + 3.64vw, 5rem) 0;
}

.sec-head {
  margin-bottom: clamp(34px, 5vw, 52px);
}

.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  color: var(--umber);
  line-height: 1.42;
  margin-top: 12px;
  letter-spacing: 0.01em;
}

.sec-head p {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 1rem;
}

/* ---------- CONCEPT ---------- */
.concept .topline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 14px;
}

.verbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}

@media (max-width: 820px) {
  .verbs {
    grid-template-columns: 1fr;
  }
}
.verb {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}

.verb .jp {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--umber);
  letter-spacing: 0.06em;
}

.verb .de {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-left: 8px;
}

.verb p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-top: 0.875rem;
}

.verb p b {
  color: var(--green-deep);
  font-weight: 700;
}

.verb .tip {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  border-bottom-left-radius: 14px;
  background: var(--green);
  opacity: 0.1;
}

.edge-note {
  margin-top: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 158, 11, 0.07)), to(rgba(245, 158, 11, 0.02)));
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.07), rgba(245, 158, 11, 0.02));
  padding: 26px clamp(22px, 3vw, 34px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.edge-note .h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--umber);
  line-height: 1.5;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.edge-note .b {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.85;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 240px;
}

.edge-note .b b {
  color: var(--green-deep);
  font-weight: 700;
}

/* ---------- MEDIA CARDS ---------- */
.media-intro {
  color: var(--ink-soft);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

@media (max-width: 820px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}
.media-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.media-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 18px 40px -24px rgba(98, 45, 24, 0.45);
          box-shadow: 0 18px 40px -24px rgba(98, 45, 24, 0.45);
}

.media-card .kind {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
}

.media-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--umber);
  line-height: 1.5;
  margin: 10px 0 8px;
}

.media-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.8;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.media-card .mtags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 16px;
}

.media-card .mtags span {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(98, 45, 24, 0.06);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.media-link {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--umber);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.media-link:hover {
  color: var(--amber);
}

.media-link .arw {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.media-link:hover .arw {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.media-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: auto;
  padding-top: 4px;
}

/* ---------- MID CTA ---------- */
.mid-cta {
  background: var(--paper-2);
}

.mid-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 4vw, 42px) 0;
}

.mid-cta__text {
  max-width: 620px;
}

.mid-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  line-height: 1.5;
  color: var(--umber);
  margin-top: 8px;
}

.mid-cta p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-top: 8px;
}

.mid-cta .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 760px) {
  .mid-cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .mid-cta .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
/* ---------- SERVICES ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 760px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-transition: border-color 0.25s, -webkit-transform 0.25s;
  transition: border-color 0.25s, -webkit-transform 0.25s;
  transition: border-color 0.25s, transform 0.25s;
  transition: border-color 0.25s, transform 0.25s, -webkit-transform 0.25s;
}

.svc:hover {
  border-color: var(--green);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.svc .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 14px;
}

.svc h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--umber);
  line-height: 1.5;
}

.svc .price {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-deep);
  white-space: nowrap;
}

.svc p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ---------- PROCESS ---------- */
.process {
  background: var(--paper-2);
}

.process-flow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.process-step:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -23px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
}

.process-step__num {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--amber);
  padding-top: 0.28em;
}

.process-step__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--umber);
}

.process-step__body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-top: 6px;
}

@media (max-width: 560px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }
  .process-step__num {
    padding-top: 0;
  }
}
/* ---------- ABOUT ---------- */
.about {
  background: var(--umber);
  color: var(--paper);
}

.about .sec-head h2 {
  color: var(--paper);
}

.about .sec-head .label {
  color: var(--amber);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  line-height: 1.7;
  color: var(--paper);
}

.about-lead .hl {
  color: var(--amber);
}

.about-body {
  color: rgba(248, 243, 234, 0.8);
  font-size: 0.96rem;
  margin-top: 18px;
  line-height: 1.95;
}

.facts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.fact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(248, 243, 234, 0.16);
}

.fact:first-child {
  border-top: 1px solid rgba(248, 243, 234, 0.16);
}

.fact .k {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--amber);
  text-transform: uppercase;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fact .v {
  font-size: 0.92rem;
  color: var(--paper);
  text-align: right;
}

.about-media {
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: clamp(34px, 5vw, 52px);
  border-top: 1px solid rgba(248, 243, 234, 0.16);
}

.about-media-simple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.about-media-simple h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  line-height: 1.55;
  color: var(--paper);
  margin-top: 8px;
}

.about-media-simple p {
  color: rgba(248, 243, 234, 0.78);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-top: 8px;
}

.about-media .about-media-simple .media-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--amber);
}

.about-media .about-media-simple .media-link:hover {
  color: var(--paper);
}

.about-media .sec-head {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.about-media .sec-head p {
  color: rgba(248, 243, 234, 0.78);
}

.about-media .media-grid {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.about-media .media-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(248, 243, 234, 0.2);
}

.about-media .media-card:hover {
  -webkit-box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.5);
          box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.5);
}

.about-media .media-link {
  color: var(--green-deep);
}

.about-media .media-link:hover {
  color: var(--amber);
}

.about-media-case {
  margin-bottom: 0;
}

.profile-extra {
  margin-top: clamp(44px, 6vw, 72px);
}

.profile-extra .sec-head {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.profile-extra h2,
.profile-extra h3 {
  background: none;
  border: 0;
  padding: 0;
}

.profile-extra h2::before,
.profile-extra h2::after,
.profile-extra h3::before,
.profile-extra h3::after {
  content: none;
  display: none;
}

.profile-extra .sec-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  color: var(--umber);
  line-height: 1.42;
  margin-top: 12px;
  letter-spacing: 0.01em;
}

.profile-extra .sec-head p {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 1rem;
}

.profile-extra .media-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--umber);
  line-height: 1.5;
  margin: 10px 0 8px;
}

.profile-media .media-grid {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.profile-media-case {
  margin-bottom: clamp(30px, 4vw, 44px);
}

.profile-media-case h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--umber);
  line-height: 1.5;
  margin-top: 8px;
}

@media (max-width: 560px) {
  .fact {
    display: block;
  }
  .fact .v {
    display: block;
    margin-top: 6px;
    text-align: left;
  }
}
@media (max-width: 820px) {
  .about-media-simple {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
/* ---------- CONTACT ---------- */
.contact {
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact .label {
  color: #ffe7b8;
}

.contact .crenel {
  margin: 0 auto 18px;
  border-color: #fff;
  opacity: 0.9;
  background: repeating-linear-gradient(to right, #fff 0 7px, transparent 7px 14px) top/auto 5px repeat-x;
}

.contact h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  line-height: 1.4;
  margin: 6px 0 18px;
  color: var(--white);
}

.contact p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  max-width: 34em;
  margin: 0 auto 30px;
}

.contact-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* reveal */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}