:root {
  --ink: #173d3c;
  --paper: #f3f2ea;
  --white: #fff;
  --line: #ccd8d3;
  --muted: #70817d;
  --accent: #9c7c55;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection {
  color: var(--paper);
  background: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
}

button {
  color: inherit;
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  transition: opacity 0.8s ease, visibility 0.8s;
}

.loader span {
  font-size: 25px;
  letter-spacing: 0.4em;
  animation: breathe 1.2s ease-in-out infinite alternate;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes breathe {
  to { opacity: 0.35; }
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  color: white;
}

.victoria-inner-page .site-header {
  position: fixed;
  color: var(--ink);
  background: rgba(243, 242, 234, 0.97);
  box-shadow: 0 1px 0 rgba(23, 61, 60, 0.1);
  backdrop-filter: blur(12px);
}

.victoria-inner-page .topbar,
.victoria-inner-page .navbar {
  border-bottom-color: rgba(23, 61, 60, 0.12);
}

.victoria-inner-page .brand-lockup small {
  color: rgba(23, 61, 60, 0.68);
}

@media (min-width: 1051px) {
  .site-header.is-sticky {
    position: fixed;
    color: var(--ink);
    background: rgba(243, 242, 234, 0.96);
    box-shadow: 0 1px 0 rgba(23, 61, 60, 0.1);
    animation: header-in 0.35s ease both;
    backdrop-filter: blur(12px);
  }

  .site-header.is-sticky .topbar {
    display: none;
  }

  .site-header.is-sticky .navbar {
    border-bottom: 0;
  }

  .site-header.is-sticky .search-link .search-icon,
  .site-header.is-sticky .search-link i {
    display: none;
  }

  .site-header.is-sticky .search-link::after {
    content: "VICTORIA MARKL";
    font-family: var(--sans);
    font-size: 16px;
    font-style: normal;
    letter-spacing: 0.2em;
  }
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.topbar,
.navbar {
  display: grid;
  align-items: center;
  padding-inline: 6.25vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.topbar {
  grid-template-columns: 1fr auto 1fr;
  min-height: 84px;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.topbar > :last-child {
  justify-self: end;
}

.wordmark {
  font-family: var(--sans);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.brand-lockup {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  line-height: 1.1;
}

.brand-lockup small {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.navbar {
  grid-template-columns: 190px 1fr 100px;
  min-height: 80px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 5vw, 74px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-links a::before {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-links a:hover::before,
.nav-links a.active::before,
.nav-links .current-menu-item > a::before,
.nav-links .current_page_item > a::before {
  opacity: 1;
}

.nav-links li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-link,
.info-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
}

.search-icon {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(48deg);
}

.info-link {
  justify-self: end;
}

.info-link span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.info-link span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: #111;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide > img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transition: transform 7s ease-out;
}

.hero-slide.is-active > img {
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 51, 52, 0.7), rgba(9, 51, 52, 0.08) 72%),
    linear-gradient(0deg, rgba(9, 51, 52, 0.42), transparent 64%);
}

.hero-copy {
  position: absolute;
  top: 58%;
  left: 7.5vw;
  width: min(740px, 72vw);
  text-align: left;
  transform: translateY(-50%);
}

.hero-copy h1 {
  margin: 12px 0 20px;
  font-family: var(--serif);
  font-size: clamp(54px, 6.4vw, 96px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.hero-text {
  margin: 0 0 34px;
  max-width: 570px;
  font-size: 16px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  line-height: 1.2;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

.outline-button {
  display: inline-flex;
  min-width: 190px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px dashed currentColor;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.31em;
  text-transform: uppercase;
  transition: color 0.35s, background 0.35s;
}

.light-button:hover {
  color: var(--ink);
  background: white;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 54%;
  width: 42px;
  height: 42px;
  border: 0;
  border-top: 1px solid white;
  border-left: 1px solid white;
  background: transparent;
  cursor: pointer;
}

.hero-arrow.prev {
  left: 6.5vw;
  transform: rotate(-45deg);
}

.hero-arrow.next {
  right: 6.5vw;
  transform: rotate(135deg);
}

.hero-dots {
  position: absolute;
  z-index: 5;
  bottom: 48px;
  left: 50%;
  display: flex;
  gap: 28px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.hero-dots button.is-active {
  outline: 1px solid white;
  outline-offset: 7px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 5vw;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 42px;
  height: 1px;
  background: white;
}

.section-pad {
  padding: 130px 6.5vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 10vw;
  margin: 0 auto 90px;
  max-width: 1400px;
}

.section-heading.compact {
  margin-bottom: 75px;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.lead-copy {
  margin: 0 0 6px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
}

.needle-rule {
  position: relative;
  height: 34px;
  margin: -34px auto 55px;
  max-width: 1400px;
  border-bottom: 1px dashed var(--line);
}

.needle-rule .scissors {
  position: absolute;
  bottom: -1px;
  left: -10px;
  width: 75px;
  height: 30px;
  color: var(--ink);
  transform: translateX(0);
}

.scissors-highlight {
  fill: var(--paper);
}

.intro.is-visible .needle-rule .scissors {
  transform: translateX(200px);
  transition: transform 1.5s linear 0.25s;
}

.intro.is-visible .scissors-blade--right {
  animation: scissors-right 0.4s ease-in-out 0.25s 3.75;
  transform-origin: 20% 77.5%;
}

.intro.is-visible .scissors-blade--left {
  animation: scissors-left 0.4s ease-in-out 0.25s 3.75;
  transform-origin: 68% 81%;
}

@keyframes scissors-right {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(30deg); }
}

@keyframes scissors-left {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-15deg); }
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 4vw, 62px);
  margin: auto;
  max-width: 1400px;
}

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

.craft-image {
  height: 440px;
  margin-bottom: 22px;
  overflow: hidden;
}

.craft-image.arch-bottom {
  border-radius: 0 0 50% 50%;
}

.craft-image.arch-top {
  border-radius: 50% 50% 0 0;
}

.craft-image img,
.team-image img,
.journal-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.craft-card:hover img,
.team-grid article:hover img,
.journal-image:hover img {
  transform: scale(1.045);
}

.craft-card h3,
.team-grid h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}

.craft-card p,
.team-grid p {
  margin: 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.split-feature,
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
}

.dark-panel {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 9vw;
  color: white;
  background: var(--ink);
}

.dark-panel h2 {
  margin-top: 20px;
}

.dark-panel > p:not(.eyebrow) {
  margin: 5px 0 35px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.split-image,
.editorial-image {
  min-height: 650px;
  overflow: hidden;
}

.split-image img,
.editorial-image img {
  height: 100%;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
  margin: auto;
  max-width: 1400px;
}

.team-image {
  height: 540px;
  margin-bottom: 22px;
  overflow: hidden;
}

.team-image.circle {
  border-radius: 50% 50% 0 0;
}

.marquee {
  overflow: hidden;
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.55);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  white-space: nowrap;
}

.marquee div {
  display: inline-flex;
  gap: 48px;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.marquee i {
  color: rgba(255, 255, 255, 0.28);
}

@keyframes ticker {
  to { transform: translateX(-33.333%); }
}

.numbers {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12vw;
  align-items: center;
}

.stats {
  display: grid;
  gap: 42px;
}

.stat > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.stat i {
  position: relative;
  display: block;
  height: 1px;
  background: var(--line);
}

.stat i::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: width 1.4s ease;
}

.stat i::after {
  position: absolute;
  top: -10px;
  left: 0;
  content: "✂";
  font-size: 17px;
  transition: left 1.4s ease;
  transform: translateX(-50%);
}

.numbers.is-visible .stat i::before {
  width: var(--value);
}

.numbers.is-visible .stat i::after {
  left: var(--value);
}

.stat b {
  font-size: 13px;
  font-weight: 400;
}

.parallax-banner {
  display: grid;
  min-height: 620px;
  place-items: center;
  color: white;
  background:
    linear-gradient(rgba(15, 61, 61, 0.4), rgba(15, 61, 61, 0.4)),
    url("https://mohair.qodeinteractive.com/wp-content/uploads/2023/05/img-vector-1.jpg") center/cover fixed;
  text-align: center;
}

.parallax-banner span,
.parallax-banner strong {
  display: block;
}

.parallax-banner span {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.parallax-banner strong {
  font-size: clamp(48px, 6.2vw, 90px);
  font-weight: 300;
  letter-spacing: -0.045em;
}

.center-heading {
  margin-bottom: 70px;
  text-align: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: auto;
  max-width: 1400px;
}

blockquote {
  margin: 0;
  padding: 42px 42px 50px;
  border: 1px solid var(--line);
  font-size: 21px;
  line-height: 1.55;
}

blockquote footer {
  margin-top: 24px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.editorial-split {
  grid-template-columns: 1.15fr 0.85fr;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: auto;
  max-width: 1400px;
}

.journal-image {
  position: relative;
  display: block;
  height: 480px;
  overflow: hidden;
}

.journal-image span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: rgba(23, 61, 60, 0.86);
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0;
  text-transform: uppercase;
  transform: translate(-50%, -40%);
  transition: opacity 0.35s, transform 0.35s;
}

.journal-image:hover span {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.meta {
  margin: 22px 0 6px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.journal-grid h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.35;
}

.site-footer {
  padding: 110px 6.5vw 24px;
  color: white;
  background: var(--ink);
}

.footer-lead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.footer-lead h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.footer-lead > a {
  padding-bottom: 5px;
  border-bottom: 1px solid white;
}

.footer-lead > a span {
  margin-left: 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 70px 0;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-mark {
  font-size: 27px;
  line-height: 1.45;
}

.socials {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  z-index: 10;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px dashed currentColor;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(243, 242, 234, 0.86);
  font-family: var(--serif);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.admin-bar .site-header {
  top: 32px;
}

.wp-content {
  min-height: 72vh;
  padding-top: 220px;
  color: var(--ink);
  background: var(--paper);
}

.content-wrap,
.entry-wrap {
  margin-inline: auto;
  max-width: 980px;
}

.content-header {
  margin-bottom: 58px;
}

.wp-content h1 {
  margin: 12px 0 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.wp-content h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 54px);
}

.entry-content,
.entry-summary {
  font-size: 17px;
  line-height: 1.85;
}

.entry-content a,
.entry-summary a {
  border-bottom: 1px solid currentColor;
}

.post-list {
  display: grid;
  gap: 48px;
}

.post-card {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.post-card h2 a {
  border: 0;
}

.wp-content .outline-button {
  margin-top: 18px;
}

@media (max-width: 1050px) {
  .topbar {
    min-height: 70px;
  }

  .topbar > a:not(.wordmark) {
    display: none;
  }

  .topbar > span {
    display: none;
  }

  .topbar {
    display: flex;
    justify-content: center;
  }

  .brand-lockup {
    gap: 5px;
  }

  .brand-lockup small {
    font-size: 11px;
  }

  .navbar {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .search-link,
  .info-link {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 32;
    display: grid;
    width: 38px;
    height: 38px;
    place-content: center;
    gap: 7px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    color: white;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }

  .menu-open .site-header {
    color: white;
  }

  .nav-links a {
    font-size: 21px;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }

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

  .numbers {
    gap: 6vw;
  }
}

@media (max-width: 760px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .section-pad {
    padding: 90px 24px;
  }

  .topbar,
  .navbar {
    padding-inline: 24px;
  }

  .hero-copy {
    top: 56%;
    left: 24px;
    width: calc(100% - 48px);
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-arrow {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .numbers {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 60px;
  }

  h2 {
    font-size: 42px;
  }

  .needle-rule {
    margin-top: -10px;
  }

  .craft-grid {
    grid-template-columns: 1fr;
  }

  .craft-image {
    height: 520px;
  }

  .split-feature,
  .editorial-split {
    grid-template-columns: 1fr;
  }

  .dark-panel {
    min-height: 560px;
    padding: 80px 24px;
  }

  .split-image,
  .editorial-image {
    min-height: 520px;
  }

  .editorial-image {
    order: 2;
  }

  .team-grid,
  .quote-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    gap: 58px;
  }

  .team-image,
  .journal-image {
    height: 520px;
  }

  .numbers {
    padding-block: 100px;
  }

  .wp-content {
    padding-top: 165px;
  }

  .parallax-banner {
    min-height: 520px;
    background-attachment: scroll;
  }

  .parallax-banner strong {
    font-size: 50px;
  }

  .footer-lead {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .wordmark {
    font-size: 17px;
  }

  .craft-image,
  .team-image,
  .journal-image {
    height: 430px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
