:root {
  color-scheme: light;
  --ink: #123034;
  --muted: #5f7478;
  --paper: #f6f4ee;
  --white: #ffffff;
  --teal: #0f4c5c;
  --teal-dark: #0a3039;
  --coral: #d96645;
  --gold: #c59643;
  --line: rgba(18, 48, 52, 0.14);
  --shadow: 0 24px 70px rgba(6, 34, 42, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 128px;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  min-height: 118px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(90deg, rgba(5, 25, 30, 0.94), rgba(10, 48, 57, 0.78));
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 29, 35, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: center;
  width: 132px;
  height: 86px;
  flex: 0 0 132px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.18) 22%, transparent 42%),
    linear-gradient(145deg, #0f4c5c 0%, #07313b 48%, #c59643 100%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transform-origin: center;
  animation: logoDance 5.5s ease-in-out infinite;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -30% -70%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.5) 42%, transparent 58%);
  transform: translateX(-42%) rotate(8deg);
  animation: logoShine 4.8s ease-in-out infinite;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(241, 210, 149, 0.78), rgba(255, 255, 255, 0.18));
  opacity: 0.78;
}

.mark-text,
.mark-wave {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.36);
}

.mark-top,
.mark-bottom {
  font-size: 0.7rem;
  font-weight: 900;
}

.mark-main {
  margin-top: 2px;
  color: #f1d295;
  font-size: 1.34rem;
  font-weight: 1000;
}

.mark-wave {
  width: 76px;
  height: 7px;
  margin: 4px auto 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 15% 80%, transparent 0 5px, #ffffff 5.4px 6.8px, transparent 7.2px),
    radial-gradient(circle at 45% 20%, transparent 0 5px, #ffffff 5.4px 6.8px, transparent 7.2px),
    radial-gradient(circle at 75% 80%, transparent 0 5px, #ffffff 5.4px 6.8px, transparent 7.2px);
  opacity: 0.92;
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-name,
.brand-subtitle {
  display: block;
  line-height: 1;
}

.brand-name {
  color: var(--white);
  background: linear-gradient(90deg, #ffffff 0%, #f1d295 46%, #ffffff 92%);
  background-size: 220% auto;
  background-clip: text;
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.34);
  animation: brandShimmer 5.8s linear infinite;
}

.brand-line {
  width: min(390px, 100%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f1d295 0%, #ffffff 42%, rgba(241, 210, 149, 0) 100%);
  box-shadow: 0 0 18px rgba(241, 210, 149, 0.4);
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.15rem, 1.85vw, 2rem);
  font-weight: 850;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-call-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.header-call-number {
  color: var(--white);
}

@keyframes logoDance {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  28% {
    transform: translateY(-3px) rotate(-1.4deg);
  }

  58% {
    transform: translateY(2px) rotate(1.2deg);
  }
}

@keyframes logoShine {
  0%,
  38% {
    transform: translateX(-48%) rotate(8deg);
  }

  72%,
  100% {
    transform: translateX(52%) rotate(8deg);
  }
}

@keyframes brandShimmer {
  to {
    background-position: 220% center;
  }
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  padding: 152px clamp(18px, 5vw, 72px) 40px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 29, 34, 0.92) 0%, rgba(6, 29, 34, 0.72) 38%, rgba(6, 29, 34, 0.24) 78%),
    linear-gradient(180deg, rgba(6, 29, 34, 0.2) 0%, rgba(6, 29, 34, 0.12) 62%, rgba(246, 244, 238, 1) 100%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  align-self: end;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: #f1d295;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--coral);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5.1vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 625px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.55;
}

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

.contact-social {
  margin-top: 18px;
}

.contact-social a {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--teal-dark);
  background: var(--white);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.primary.light {
  color: var(--teal-dark);
  background: var(--paper);
}

.button.secondary.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.listing-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 790px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.listing-facts div {
  padding: 14px 16px;
  background: rgba(6, 29, 34, 0.42);
}

.listing-facts dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.listing-facts dd {
  margin: 0;
  font-weight: 700;
}

.section,
.band,
.work-band,
.split-band,
.contact-band {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro.band {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.owner-intro {
  align-items: center;
}

.intro-grid p:last-child,
.process-copy p,
.area-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.owner-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(31, 69, 71, 0.08);
}

.owner-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.owner-label {
  margin: 0 0 6px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.owner-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.owner-card p:not(.owner-label) {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.social-links,
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a,
.contact-social a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.social-links a {
  color: var(--teal-dark);
  background: #e6eee9;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(31, 69, 71, 0.08);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  line-height: 1.62;
}

.work-band {
  background: #fffaf1;
}

.work-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.work-card,
.video-card {
  overflow: hidden;
  border: 1px solid rgba(197, 150, 67, 0.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(61, 68, 49, 0.08);
}

.work-card img,
.video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.video-card img {
  background: #0c252b;
  object-fit: cover;
}

.video-card.has-hosted-video {
  width: min(100%, 520px);
  justify-self: center;
}

.video-player {
  display: block;
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  height: auto;
  margin: 0 auto;
  background: #0c252b;
  object-fit: contain;
}

.work-card img {
  background: #0c252b;
  object-fit: contain;
  object-position: center;
}

.work-card div,
.video-card div {
  padding: 20px;
}

.work-card span,
.video-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card p,
.video-card p {
  color: var(--muted);
  line-height: 1.58;
}

.card-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 6px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #e6eee9;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible {
  background: #d9e6df;
  outline: none;
}

.video-section {
  background: var(--paper);
}

.video-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.split-band {
  background: #e6eee9;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 100px;
  padding: 22px 22px 22px 74px;
  border: 1px solid rgba(15, 76, 92, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 24px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.steps span {
  color: var(--muted);
  line-height: 1.5;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.area-list span {
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 42px rgba(31, 69, 71, 0.07);
}

.contact-band {
  color: var(--white);
  background: var(--teal-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(4, 18, 22, 0.42);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(241, 210, 149, 0.84);
}

.form-submit {
  width: 100%;
  color: var(--teal-dark);
  background: #f1d295;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer {
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #071f25;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer p {
  margin: 0;
  line-height: 1.55;
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .brand-mark,
  .brand-mark::before,
  .brand-name {
    animation: none;
  }
}

@media (max-width: 1140px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .intro-grid,
  .service-grid,
  .work-grid,
  .video-grid,
  .split-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 29, 34, 0.92) 0%, rgba(6, 29, 34, 0.68) 58%, rgba(246, 244, 238, 1) 100%);
  }

  .listing-facts {
    grid-template-columns: 1fr;
  }

  .owner-card {
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  section[id] {
    scroll-margin-top: 90px;
  }

  .site-header {
    min-height: 86px;
    gap: 10px;
    padding: 11px 12px;
  }

  .brand {
    gap: 10px;
    max-width: 100%;
  }

  .brand-mark {
    width: 60px;
    height: 52px;
    flex-basis: 60px;
    border-radius: 12px;
  }

  .brand-copy {
    overflow: hidden;
  }

  .brand-name,
  .brand-subtitle {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark::after {
    right: 8px;
    bottom: 6px;
    left: 8px;
    height: 5px;
  }

  .mark-top,
  .mark-bottom {
    font-size: 0.42rem;
  }

  .mark-main {
    margin-top: 1px;
    font-size: 0.78rem;
  }

  .mark-wave {
    width: 42px;
    height: 4px;
    margin-top: 3px;
  }

  .brand-name {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .brand-line {
    width: 150px;
    height: 2px;
  }

  .brand-subtitle {
    font-size: 0.78rem;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 690px;
    padding-top: 116px;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.4vw, 2.7rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .button,
  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .owner-card {
    grid-template-columns: 1fr;
  }

  .owner-card img {
    max-width: 260px;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 1.2rem;
  }

  .brand-line {
    width: 128px;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  .header-call {
    padding: 8px 10px;
    font-size: 0.76rem;
  }

  .header-call-label {
    display: inline;
  }

  .header-call-number {
    display: none;
  }
}

@media (max-width: 380px) {
  .site-header {
    min-height: 74px;
    padding: 9px 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 54px;
    height: 44px;
    flex-basis: 54px;
    border-radius: 10px;
  }

  .mark-top,
  .mark-bottom {
    font-size: 0.34rem;
  }

  .mark-main {
    font-size: 0.62rem;
  }

  .mark-wave {
    width: 34px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-line,
  .brand-subtitle {
    display: none;
  }

  .header-call {
    padding: 8px 9px;
    font-size: 0.74rem;
  }

  .header-call-label {
    display: inline;
  }

  .header-call-number {
    display: none;
  }

  .hero {
    min-height: 650px;
    padding-top: 88px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section,
  .band,
  .work-band,
  .split-band,
  .contact-band {
    padding-right: 14px;
    padding-left: 14px;
  }
}
