:root {
  --cream: #17181b;
  --cream-soft: #ece5d8;
  --panel: rgba(255, 255, 255, 0.055);
  --ink: #f2eee6;
  --ink-soft: #aea79b;
  --gold: #c6a86d;
  --gold-soft: rgba(198, 168, 109, 0.16);
  --espresso: #17110f;
  --espresso-soft: #241a16;
  --brown-glass: rgba(74, 48, 37, 0.2);
  --glass: rgba(255, 255, 255, 0.07);
  --glass-bright: rgba(255, 255, 255, 0.13);
  --silver: rgba(205, 210, 216, 0.12);
  --line: rgba(198, 168, 109, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--espresso);
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.075), transparent 30%),
    radial-gradient(circle at 84% 38%, rgba(198, 168, 109, 0.085), transparent 28%),
    linear-gradient(145deg, #2a211d 0%, #211815 38%, #171210 70%, #0f0d0c 100%);
  background-color: var(--espresso);
  background-size: 145% 145%, 165% 165%, 100% 100%;
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  animation: modern-sheen 20s ease-in-out infinite alternate;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.045) 38%, transparent 58%),
    linear-gradient(290deg, transparent 25%, rgba(198, 168, 109, 0.055) 52%, transparent 76%);
  background-size: 220% 220%, 190% 190%;
  content: "";
  pointer-events: none;
  animation: ambient-color-shift 14s ease-in-out infinite alternate;
}

@keyframes modern-sheen {
  from {
    background-position: 0% 25%, 100% 65%, center;
  }
  to {
    background-position: 100% 55%, 0% 35%, center;
  }
}

@keyframes ambient-color-shift {
  0% {
    background-position: 100% 0%, 0% 100%;
    opacity: 0.55;
  }
  55% {
    background-position: 45% 55%, 58% 42%;
    opacity: 0.9;
  }
  100% {
    background-position: 0% 100%, 100% 0%;
    opacity: 0.68;
  }
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

button {
  font: inherit;
}

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

::selection {
  background: rgba(198, 168, 109, 0.28);
}

.container {
  width: min(100% - 3rem, 80rem);
  margin-inline: auto;
}

.display {
  font-family: var(--display);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  line-height: 1.6;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding-block: 5rem;
}

.section:nth-of-type(4n + 2) {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.05), rgba(74, 48, 37, 0.08) 72%, transparent);
}

.section:nth-of-type(4n) {
  background: linear-gradient(250deg, rgba(198, 168, 109, 0.055), rgba(255, 255, 255, 0.025) 64%, transparent);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.overview-intro h2,
.material-intro h2 {
  margin: 0.7rem 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(74, 48, 37, 0.1));
  box-shadow: var(--shadow);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(198, 168, 109, 0.06),
    var(--shadow);
  backdrop-filter: blur(18px) saturate(118%);
  -webkit-backdrop-filter: blur(18px) saturate(118%);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  margin: 0;
  color: white;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  line-height: 1;
}

.brand-tagline {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.desktop-nav a {
  position: relative;
  padding-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: white;
}

.desktop-nav a.active::after {
  opacity: 1;
}

.nav-divider {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.12);
}

.desktop-nav .minor {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon::before {
  transform: translateY(-5px);
}

.menu-icon::after {
  transform: translateY(4px);
}

.menu-button.open .menu-icon {
  background: transparent;
}

.menu-button.open .menu-icon::before {
  transform: translateY(1px) rotate(45deg);
}

.menu-button.open .menu-icon::after {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  z-index: 30;
  top: calc(100% + 1rem);
  right: 0;
  left: 0;
  display: none;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(14, 15, 18, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero.hero-short {
  min-height: 82svh;
}

.hero-background,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img,
.hero-background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 14, 0.84) 0%, rgba(10, 11, 14, 0.58) 44%, rgba(10, 11, 14, 0.34) 100%),
    linear-gradient(180deg, rgba(10, 11, 14, 0.42) 0%, rgba(10, 11, 14, 0.12) 28%, rgba(10, 11, 14, 0.8) 100%);
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding-block: 2rem;
}

.hero-short .hero-inner {
  min-height: 82svh;
}

.hero-content {
  display: grid;
  flex: 1;
  align-items: end;
  gap: 3rem;
  padding-block: 4rem;
}

.home-hero .hero-content {
  grid-template-columns: minmax(0, 1fr) 18rem;
}

.hero-copy {
  max-width: 64rem;
}

.hero-copy h1 {
  max-width: 64rem;
  margin: 1.2rem 0;
  color: white;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.2vw, 6rem);
  font-weight: 400;
  line-height: 0.94;
}

.hero-copy p:not(.eyebrow):not(.image-credit) {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.image-credit {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: white;
  color: #15161a;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.slide-card {
  align-self: end;
  padding: 1.4rem;
  border-radius: 0.5rem;
}

.slide-card h2 {
  margin: 1rem 0 0;
  color: white;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.slide-card .slide-description {
  min-height: 6rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.75;
}

.slide-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slide-dot {
  width: 1rem;
  height: 0.35rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.slide-dot.active {
  width: 2.5rem;
  background: var(--gold);
}

.value-band {
  padding-block: 2.5rem;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.075), rgba(74, 48, 37, 0.13) 72%, rgba(198, 168, 109, 0.025));
}

.value-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 3rem;
}

.value-title {
  margin: 0.65rem 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-item {
  padding-left: 1rem;
  border-left: 1px solid var(--gold-soft);
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  line-height: 1.75;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.instrument-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.instrument-preview {
  overflow: hidden;
  border-radius: 0.45rem;
}

.instrument-preview-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #101114;
}

.instrument-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.instrument-preview:hover .instrument-preview-image img {
  transform: scale(1.035);
}

.instrument-preview-copy {
  padding: 1.25rem;
}

.instrument-preview h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
}

.instrument-preview p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.text-card {
  padding: 1.5rem;
  border-radius: 0.45rem;
}

.text-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 400;
}

.text-card p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.material-box {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(74, 48, 37, 0.1));
}

.material-box > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.services-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.09), transparent 43%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(23, 17, 15, 0.68));
  box-shadow: var(--shadow);
}

.service-tabs {
  display: grid;
  border-right: 1px solid var(--line);
}

.service-tab {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  text-align: left;
  cursor: pointer;
}

.service-tab:last-child {
  border-bottom: 0;
}

.service-tab span {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.service-tab:hover,
.service-tab.active {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.105), rgba(198, 168, 109, 0.11));
  color: var(--ink);
}

.service-panel {
  display: flex;
  min-height: 30rem;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4.5rem);
}

.service-panel h3 {
  margin: 1rem 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.service-text {
  max-width: 45rem;
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-detail {
  max-width: 42rem;
  margin: 1.25rem 0 2rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.mission-section {
  padding-top: 1rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.mission-card {
  min-height: 30rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 48%),
    linear-gradient(320deg, rgba(198, 168, 109, 0.065), rgba(74, 48, 37, 0.09));
}

.mission-card h2 {
  max-width: 45rem;
  margin: 1.25rem 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.mission-card p:not(.eyebrow) {
  max-width: 44rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

.vision-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.105), transparent 56%),
    linear-gradient(330deg, rgba(198, 168, 109, 0.055), #17110f);
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.experience-copy {
  color: var(--ink-soft);
  line-height: 1.8;
}

.institution-list {
  border-top: 1px solid var(--line);
}

.institution-list > div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
  border-bottom: 1px solid var(--line);
}

.institution-list span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.institution-list p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-card {
  min-height: 14rem;
  padding: 1.5rem;
  border-radius: 0.45rem;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-role {
  margin: 0;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 1.25rem 0 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.contact-phone {
  margin: 0.8rem 0 2rem;
  color: var(--ink-soft);
}

.contact-card > span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-hub {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  margin-top: 1.25rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 42%),
    linear-gradient(315deg, rgba(198, 168, 109, 0.065), #17110f);
}

.contact-hub h2 {
  margin: 1rem 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.contact-hub-copy > p:last-child {
  color: var(--ink-soft);
  line-height: 1.7;
}

.contact-hub-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-method {
  display: grid;
  gap: 0.4rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.035);
}

.contact-method:hover {
  border-color: var(--gold);
}

.contact-method span {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-method strong {
  overflow-wrap: anywhere;
  font-weight: 400;
}

.social-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-top: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 0.5rem;
}

.social-panel h2 {
  max-width: 42rem;
  margin: 0.8rem 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
}

.social-panel p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 168, 109, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.018)),
    rgba(23, 17, 15, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: translate 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  translate: 0 -3px;
  border-color: var(--gold);
  outline: none;
  background-color: rgba(198, 168, 109, 0.12);
  color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 30px rgba(7, 5, 4, 0.35);
}

.social-link-pending {
  border-style: dashed;
  color: rgba(242, 238, 230, 0.42);
  cursor: default;
}

.social-link-pending:hover {
  translate: none;
  border-color: rgba(198, 168, 109, 0.28);
  background-color: transparent;
  color: rgba(242, 238, 230, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.social-links-compact .social-link {
  width: 2.35rem;
  height: 2.35rem;
  font-size: 0.58rem;
}

.inquiry-section {
  scroll-margin-top: 1.5rem;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.inquiry-intro {
  position: sticky;
  top: 2rem;
}

.inquiry-intro h2 {
  margin: 1rem 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.inquiry-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
  line-height: 1.8;
}

.inquiry-notes {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.inquiry-notes p {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  margin: 0;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.5;
}

.inquiry-notes span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 0.5rem;
}

.form-field {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(242, 238, 230, 0.82);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.form-field label span,
.form-consent strong {
  color: var(--gold);
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid rgba(198, 168, 109, 0.22);
  border-radius: 0.35rem;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.form-field input,
.form-field select {
  padding: 0.85rem 1rem;
}

.form-field textarea {
  min-height: 10rem;
  padding: 1rem;
  resize: vertical;
}

.form-field select {
  color-scheme: dark;
}

.form-field select option {
  background: #211815;
  color: #f2eee6;
}

.form-field select option:checked {
  background: #c6a86d;
  color: #17110f;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(242, 238, 230, 0.38);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(198, 168, 109, 0.42);
  background: rgba(255, 255, 255, 0.065);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(198, 168, 109, 0.1);
}

.form-field [aria-invalid="true"] {
  border-color: #d28c7e;
  box-shadow: 0 0 0 3px rgba(210, 140, 126, 0.09);
}

.form-consent {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  align-items: start;
  gap: 0.75rem;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.6;
}

.form-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.15rem 0 0;
  accent-color: var(--gold);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.form-submit {
  flex: 0 0 auto;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.form-status[data-state="success"] {
  color: #d8c38f;
}

.form-status[data-state="error"] {
  color: #e1a89c;
}

.form-status a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.inquiry-form:hover {
  translate: none;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.journal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.035);
}

.journal-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.journal-card:hover .journal-image img {
  transform: scale(1.035);
}

.journal-body {
  padding: 1.4rem;
}

.journal-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.journal-meta time {
  color: var(--ink-soft);
}

.journal-body h3 {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.journal-body p {
  margin: 1rem 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 1rem;
}

.cta-section {
  padding: 1.5rem 0 5rem;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 2rem;
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.115), transparent 42%),
    linear-gradient(135deg, #2a211d 0%, #211815 50%, #12100f 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.cta-box h2 {
  margin: 1rem 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
}

.cta-box p:not(.eyebrow) {
  max-width: 44rem;
  margin: 0;
  color: rgba(234, 223, 207, 0.84);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.quick-links {
  padding-block: 2rem;
  border-block: 1px solid var(--line);
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.07), rgba(74, 48, 37, 0.1), rgba(198, 168, 109, 0.035));
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.quick-links a {
  padding-left: 1rem;
  border-left: 1px solid var(--gold-soft);
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  line-height: 1.7;
  text-transform: uppercase;
}

.overview-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 3rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.overview-card,
.material-note {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.overview-card h3,
.material-note h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.overview-card p,
.material-note p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}

.collection-list {
  display: grid;
  gap: 5rem;
}

.collection-piece {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3.5rem;
}

.collection-piece.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.collection-piece.reverse .piece-media {
  order: 2;
}

.piece-media {
  padding: 1rem;
  border-radius: 0.5rem;
}

.piece-media-inner {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #111216;
}

.piece-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.piece-copy h2 {
  margin: 1rem 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.piece-accent {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.piece-note {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.7;
}

.piece-detail {
  max-width: 38rem;
  margin: 1rem 0 1.5rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.material-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.105), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(74, 48, 37, 0.1));
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.filter-button {
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.article {
  max-width: 52rem;
  margin-inline: auto;
}

.article p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.9;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-top {
  padding-bottom: 1.5rem;
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.footer-brand .brand-name {
  color: var(--ink);
}

.footer-brand .brand-tagline {
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.footer-links.secondary a {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-secondary {
  display: grid;
  gap: 1.25rem;
}

.designer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.designer-credit img {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: #08090b;
  object-fit: contain;
}

.designer-credit strong {
  color: var(--gold);
  font-weight: 400;
}

.panel,
.instrument-preview,
.material-box,
.services-shell,
.mission-card,
.contact-card,
.contact-hub,
.contact-method,
.cta-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    translate 360ms cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 300ms ease,
    box-shadow 360ms ease,
    background-color 300ms ease;
}

.panel > *,
.instrument-preview > *,
.material-box > *,
.services-shell > *,
.mission-card > *,
.contact-card > *,
.contact-hub > *,
.contact-method > *,
.cta-box > * {
  position: relative;
  z-index: 1;
}

.panel::after,
.instrument-preview::after,
.material-box::after,
.services-shell::after,
.mission-card::after,
.contact-card::after,
.contact-hub::after,
.contact-method::after,
.cta-box::after {
  position: absolute;
  z-index: 2;
  top: -75%;
  left: -55%;
  width: 52%;
  height: 250%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.015) 25%,
    rgba(255, 255, 255, 0.16) 48%,
    rgba(198, 168, 109, 0.075) 58%,
    transparent 78%
  );
  content: "";
  opacity: 0.42;
  pointer-events: none;
  transform: rotate(12deg);
  animation: liquid-reflection 9s ease-in-out infinite;
}

.instrument-preview:nth-child(2n)::after,
.contact-card:nth-child(2n)::after {
  animation-delay: -3s;
}

.instrument-preview:nth-child(3n)::after,
.contact-card:nth-child(3n)::after {
  animation-delay: -6s;
}

.slide-card,
.contact-hub,
.mission-card,
.cta-box {
  will-change: border-color, box-shadow;
  animation: elevated-glass 7s ease-in-out infinite alternate;
}

.panel:hover,
.instrument-preview:hover,
.material-box:hover,
.services-shell:hover,
.mission-card:hover,
.contact-card:hover,
.contact-hub:hover,
.contact-method:hover,
.cta-box:hover {
  translate: 0 -6px;
  border-color: rgba(198, 168, 109, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(198, 168, 109, 0.09),
    0 30px 75px rgba(7, 5, 4, 0.42),
    0 0 35px rgba(198, 168, 109, 0.055);
}

.button:hover,
.quick-links a:hover {
  filter: brightness(1.08);
  text-shadow: 0 0 18px rgba(198, 168, 109, 0.2);
}

@keyframes liquid-reflection {
  0%,
  15% {
    left: -55%;
    opacity: 0;
  }
  32% {
    opacity: 0.42;
  }
  64% {
    opacity: 0.25;
  }
  82%,
  100% {
    left: 125%;
    opacity: 0;
  }
}

@keyframes elevated-glass {
  from {
    border-color: rgba(198, 168, 109, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 22px 60px rgba(7, 5, 4, 0.3);
  }
  to {
    border-color: rgba(198, 168, 109, 0.29);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 34px 90px rgba(7, 5, 4, 0.45),
      0 0 32px rgba(198, 168, 109, 0.045);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .home-hero .hero-content,
  .value-layout,
  .material-box,
  .cta-box,
  .overview-layout,
  .collection-piece,
  .collection-piece.reverse,
  .material-layout,
  .services-shell,
  .mission-grid,
  .experience-layout,
  .contact-hub {
    grid-template-columns: 1fr;
  }

  .social-panel {
    grid-template-columns: 1fr;
  }

  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-intro {
    position: static;
    max-width: 48rem;
  }

  .service-tabs {
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-tab {
    border-right: 1px solid var(--line);
  }

  .service-panel {
    min-height: 24rem;
  }

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

  .home-hero .hero-content {
    gap: 2rem;
  }

  .slide-card {
    width: min(100%, 28rem);
  }

  .collection-piece.reverse .piece-media {
    order: 0;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 2rem, 80rem);
  }

  .section {
    padding-block: 4rem;
  }

  .hero-inner {
    padding-block: 1.25rem;
  }

  .hero-content {
    padding-block: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    overflow-wrap: anywhere;
  }

  .button-row,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .value-grid,
  .card-grid,
  .instrument-preview-grid,
  .journal-grid,
  .overview-grid,
  .material-grid,
  .quick-links-grid,
  .contact-card-grid,
  .service-tabs {
    grid-template-columns: 1fr;
  }

  .service-tab {
    border-right: 0;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit {
    width: 100%;
  }

  .service-panel,
  .mission-card {
    min-height: auto;
  }

  .cta-box {
    padding: 2rem 1.25rem;
  }

  .footer-links {
    gap: 0.9rem 1.1rem;
  }

  .designer-credit {
    max-width: 100%;
    border-radius: 0.45rem;
    line-height: 1.5;
  }

  .hero-slide img {
    object-position: var(--mobile-position, center);
  }

  .hero-background > img {
    object-position: center;
  }
}

@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;
  }
}
