:root {
  --black: #070604;
  --black-soft: #11100d;
  --ink: #171411;
  --cream: #f4efe3;
  --paper: #fffaf0;
  --muted: #756c5f;
  --gold: #c99a45;
  --gold-light: #e8bf72;
  --line: rgba(201, 154, 69, 0.28);
  --line-dark: rgba(255, 255, 255, 0.14);
  --green: #334235;
  --ocean: #3c6470;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", "Segoe UI", Verdana, sans-serif;
}

body.theme-inner {
  background: var(--black);
  color: var(--paper);
}

a {
  color: inherit;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  width: min(var(--max), calc(100% - 48px));
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateX(-50%);
  color: var(--paper);
}

.site-header.is-solid {
  position: relative;
  left: auto;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  transform: none;
  border-bottom: 1px solid var(--line-dark);
}

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

.brand-seal {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: var(--gold-light);
  font-family: "Courier New", monospace;
  font-size: 28px;
  line-height: 1;
}

.brand-place {
  color: var(--gold-light);
  font-family: "Courier New", monospace;
  font-size: 11px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  background: rgba(7, 6, 4, 0.54);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 6, 4, 0.91) 0%, rgba(7, 6, 4, 0.68) 34%, rgba(7, 6, 4, 0.24) 72%),
    linear-gradient(180deg, rgba(7, 6, 4, 0.35) 0%, rgba(7, 6, 4, 0.04) 44%, rgba(7, 6, 4, 0.72) 100%),
    url("../img/superfly/beach-surfers.png");
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 54px;
  color: var(--paper);
}

.kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.request-hero h1,
.auth-panel h1,
.account-panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

.hero h1 {
  max-width: 790px;
  font-size: 78px;
}

em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-lede {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: 23px;
  line-height: 1.45;
}

.action-row,
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--black);
}

.button-outline {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(7, 6, 4, 0.35);
}

.button-outline-dark {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.trusted-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 58px;
  color: var(--gold-light);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 50px;
  height: 50px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
}

.avatar-stack img + img {
  margin-left: -12px;
}

.section {
  padding: 82px 0;
}

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

.section-dark {
  background: var(--black);
  color: var(--paper);
}

.section-grid,
.section-heading,
.service-tabs,
.center-heading,
.testimonial-shell,
.section-book,
.request-page,
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.center-heading h2,
.book-copy h2 {
  font-size: 48px;
}

.section-copy p,
.section-heading p,
.center-heading p,
.book-copy p,
.studio-copy p,
.request-hero p,
.aside-note p,
.auth-panel p,
.account-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-dark .section-heading p,
.section-dark .book-copy p,
.section-dark .process-list {
  color: rgba(255, 250, 240, 0.72);
}

.image-frame {
  margin: 0;
  border: 1px solid rgba(23, 20, 17, 0.16);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(201, 154, 69, 0.35);
}

.icon-row span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid rgba(201, 154, 69, 0.25);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.icon-row span:last-child {
  border-right: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
}

.tab-button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255, 250, 240, 0.74);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.is-active {
  background: var(--gold);
  color: var(--black);
}

.tab-panels {
  border: 1px solid var(--line-dark);
  border-top: 0;
  min-height: 540px;
}

.service-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  min-height: 540px;
}

.service-panel.is-active {
  display: grid;
}

.service-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-panel > div {
  display: grid;
  align-content: center;
  padding: 44px;
  border-left: 1px solid var(--line-dark);
}

.service-panel h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
}

.service-panel p {
  color: rgba(255, 250, 240, 0.72);
  line-height: 1.7;
}

.service-panel a {
  margin-top: 24px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-studio {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--paper);
}

.studio-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 6, 4, 0.82), rgba(7, 6, 4, 0.52) 46%, rgba(7, 6, 4, 0.1)),
    url("../img/superfly/studio-vinyl.png");
  background-position: center;
  background-size: cover;
}

.studio-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  max-width: 520px;
  justify-self: start;
}

.studio-copy h2 {
  font-size: 48px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 42px 0 0;
}

.stats div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.stats dt {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 36px;
}

.stats dd {
  margin: 6px 0 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.center-heading {
  max-width: 760px;
  text-align: center;
}

.testimonial-shell {
  display: block;
  margin-top: 44px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  min-height: 0;
  overflow-x: auto;
  padding: 0 0 20px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(201, 154, 69, 0.16);
}

.testimonial {
  display: grid;
  align-content: space-between;
  flex: 0 0 min(430px, calc(100vw - 72px));
  border: 1px solid rgba(201, 154, 69, 0.34);
  padding: 46px;
  background: rgba(255, 250, 240, 0.62);
  scroll-snap-align: start;
}

.testimonial blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.35;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.testimonial img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.testimonial span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.carousel-button {
  display: none;
}

.section-book {
  display: grid;
  width: min(1320px, calc(100% - 96px));
  grid-template-columns: minmax(300px, 0.55fr) minmax(560px, 1fr);
  gap: 72px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
  padding-left: 22px;
}

.booking-form {
  border: 1px solid var(--line-dark);
  padding: 30px;
  background: rgba(255, 250, 240, 0.03);
}

.section-light .booking-form,
.theme-inner .booking-form {
  border-color: rgba(201, 154, 69, 0.32);
  background: rgba(255, 250, 240, 0.06);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field span,
.checkline {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(201, 154, 69, 0.32);
  border-radius: 0;
  padding: 12px 13px;
  background: rgba(7, 6, 4, 0.34);
  color: var(--paper);
}

textarea {
  resize: vertical;
}

option {
  background: var(--black);
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--gold-light);
}

.checkline {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  line-height: 1.5;
}

.checkline input {
  width: 18px;
  min-height: 18px;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--gold-light);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 44px 0;
  background: var(--black);
  color: var(--gold-light);
}

.footer-brand {
  height: 72px;
  overflow: hidden;
}

.footer-brand img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center 52%;
  transform: translateY(-24px);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer a,
.site-footer p {
  margin: 0;
  color: rgba(232, 191, 114, 0.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.request-page,
.auth-page,
.account-page {
  padding: 56px 0 88px;
}

.request-hero {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 44px;
  background-image:
    linear-gradient(90deg, rgba(7, 6, 4, 0.88), rgba(7, 6, 4, 0.34)),
    url("../img/superfly/beach-surfers.png");
  background-size: cover;
  background-position: center;
}

.request-hero h1,
.auth-panel h1,
.account-panel h1 {
  max-width: 760px;
  color: var(--paper);
  font-size: 58px;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  margin-top: 34px;
}

.request-aside {
  display: grid;
  gap: 22px;
  align-content: start;
}

.request-aside img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.aside-note,
.auth-panel,
.account-panel,
.account-card {
  border: 1px solid var(--line-dark);
  padding: 28px;
  background: rgba(255, 250, 240, 0.04);
}

.auth-page,
.account-page {
  width: min(620px, calc(100% - 48px));
  margin: 0 auto;
}

.auth-panel,
.account-panel {
  margin-top: 34px;
}

.compact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.account-card {
  margin: 30px 0 20px;
}

.account-card h2 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.received-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 32px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    display: none;
    width: min(320px, 100%);
    padding: 20px;
    border: 1px solid var(--line-dark);
    background: rgba(7, 6, 4, 0.96);
  }

  .nav-links.is-open,
  .site-header.is-solid .nav-links {
    display: grid;
    gap: 18px;
  }

  .site-header.is-solid .nav-links {
    position: static;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero h1 {
    font-size: 56px;
  }

  .section-grid,
  .section-heading,
  .service-panel,
  .section-book,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .section-book {
    width: min(var(--max), calc(100% - 48px));
  }

  .service-panel > div {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .tab-panels,
  .service-panel {
    min-height: 0;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-header.is-solid,
  .hero-content,
  .section-grid,
  .section-heading,
  .service-tabs,
  .center-heading,
  .testimonial-shell,
  .section-book,
  .request-page,
  .site-footer,
  .studio-copy {
    width: calc(100% - 28px);
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 23px;
  }

  .brand-place {
    font-size: 9px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero h1,
  .request-hero h1,
  .auth-panel h1,
  .account-panel h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .trusted-row {
    grid-template-columns: 1fr;
  }

  .trusted-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 58px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .center-heading h2,
  .book-copy h2,
  .studio-copy h2 {
    font-size: 36px;
  }

  .tab-list,
  .field-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 28px;
  }

  .testimonial blockquote {
    font-size: 24px;
  }

  .booking-form,
  .request-hero,
  .auth-panel,
  .account-panel {
    padding: 22px;
  }
}
